Advertisement
MatsGranvik

Square wave divergent sum with Riemann Siegel Zeta

Nov 7th, 2018
232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. (*Mathematica start*)
  2. nn = 200;
  3. f[t_] = D[RiemannSiegelTheta[t], t];
  4. g2 = Plot[
  5. Sign[RiemannSiegelZ[t]]*
  6. Abs[Zeta[1/2 + I*t]*
  7. Total[Table[
  8. Total[MoebiusMu[Divisors[n]]/Divisors[n]^(1/2 + I*t - 1)]/
  9. n, {n, 1, nn}]]]/(f[t] + HarmonicNumber[nn]), {t, 0, 60},
  10. PlotStyle -> Thickness[0.004], ImageSize -> Large,
  11. PlotRange -> {-4, 4}]
  12. (*end*)
  13.  
  14. (*Mathematica analytic continuation start*)
  15. f[t_] = D[RiemannSiegelTheta[t], t];
  16. epsilon = 1/40;
  17. Monitor[Plot[
  18. Sign[RiemannSiegelZ[t]]*
  19. Abs[Zeta[1/2 + I*t]/Zeta[1/2 + I*t + (1 + epsilon) - 1]*
  20. Zeta[(1 + epsilon)]]/(f[t] + 1/epsilon + EulerGamma), {t, 0,
  21. 60}, PlotStyle -> Thickness[0.004], ImageSize -> Large,
  22. PlotRange -> {-4, 4}], n]
  23. (*end*)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement