Guest User

Untitled

a guest
May 20th, 2018
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. (*start*)
  2. nn = 50;
  3. g1 = Plot[
  4. Re[Sum[Zeta[1/2 + I*t]*
  5. Total[MoebiusMu[Divisors[n]]/Divisors[n]^(1/2 + I*t - 1)]/n/
  6. t, {n, 1, nn}]], {t, 0, 60}, PlotStyle -> Thickness[0.005]];
  7. f[t_] = D[RiemannSiegelTheta[t], t];
  8. g2 = Plot[(f[t] + HarmonicNumber[nn])/t, {t, 0, 60},
  9. PlotRange -> {0, 1}, PlotStyle -> {Thickness[0.004], Red}];
  10. Show[g1, g2, ImageSize -> Large]
  11. (*end*)
  12.  
  13. (*start*)
  14. f[t_] = D[RiemannSiegelTheta[t], t];
  15. nnn = 60
  16. cc = 10;
  17. g1 = Plot[(f[t] + cc + EulerGamma), {t, 0, nnn},
  18. PlotStyle -> {Thickness[0.004], Red}, PlotRange -> {-2, cc + 5}];
  19. c = 1 + 1/cc;
  20. g2 = Plot[
  21. Re[Zeta[1/2 + I*t]*Zeta[c]/Zeta[1/2 + I*t + c - 1]], {t, 0, nnn},
  22. PlotRange -> {-2, cc + 5}, PlotStyle -> Thickness[0.02]];
  23. Show[g2, g1, ImageSize -> Large]
  24. (*end*)
Add Comment
Please, Sign In to add comment