Advertisement
MatsGranvik

Sum[(-1)^(k + 1)*x^(Log[k]*h), {k, 1, Infinity}]

Apr 28th, 2022
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. Clear[k, x, k];
  2. h = 10^100;
  3. Sum[(-1)^(k + 1)*x^(Round[Log[k]*h]), {k, 1, 10}]
  4. x = N[Exp[-(ZetaZero[1])/h], 300]
  5. (*ListLinePlot[Table[Re[(-1)^k*x^(Log[k]*h)],{k,1,1000}],PlotStyle->\
  6. Pink]*)
  7. (*ListLinePlot[Table[Re[(-1)^k*x^(Round[Log[k]*h])],{k,1,1000}]]*)
  8. Sum[(-1)^(k + 1)*x^(Log[k]*h), {k, 1, Infinity}]
  9. Sum[(-1)^(k + 1)*x^(Log[k]*h), {k, 1, 10000}]
  10. Sum[(-1)^(k + 1)*x^(Round[Log[k]*h]), {k, 1, 10000}]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement