MatsGranvik

Fourier series like graph

Apr 4th, 2020
238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. (*Edit 9.11.2018:*)
  2.  
  3. (*Mathematica divergent sum start*)
  4. nn = 500;
  5. f[t_] = D[RiemannSiegelTheta[t], t];
  6. g2 = Plot[
  7. Sign[RiemannSiegelZ[t]]*
  8. Abs[Zeta[1/2 + I*t]*
  9. Total[Table[
  10. Total[MoebiusMu[Divisors[n]]/Divisors[n]^(1/2 + I*t - 1)]/
  11. n, {n, 1, nn}]]]/(f[t] + HarmonicNumber[nn]), {t, 0, 60},
  12. PlotStyle -> Thickness[0.004], ImageSize -> Large,
  13. PlotRange -> {-4, 4}]
  14. (*end*)
  15.  
  16. (*Mathematica analytic continuation start*)
  17. f[t_] = D[RiemannSiegelTheta[t], t];
  18. epsilon = 1/40;
  19. g3 = Monitor[
  20. Plot[Sign[RiemannSiegelZ[t]]*
  21. Abs[Zeta[1/2 + I*t]/Zeta[1/2 + I*t + (1 + epsilon) - 1]*
  22. Zeta[(1 + epsilon)]]/(f[t] + 1/epsilon + EulerGamma), {t, 0,
  23. 60}, PlotStyle -> {Red, Thickness[0.004]}, ImageSize -> Large,
  24. PlotRange -> {-4, 4}], n]
  25.  
  26. Show[{g2, g3}, ImageSize -> 1000]
  27. (*code line: "Show[{g2, g3}, ImageSize -> 1000]" added by Roger L. Bagula*)
  28. (*end*)
Advertisement
Add Comment
Please, Sign In to add comment