Section 25.8 Epilogue
The Riemann zeta function and counting primes is truly only the beginning of research in modern number theory. Let's see just a little more of its future. For instance, research in finding and counting points on curves (as in Chapter 15) leads to more complicated series likeTheorem 25.8.1.
As we let
is precisely as this circular function in the long run:
Proof.
Needless to say, this result is far beyond the level of this text β but maybe you will make the next contribution? Initially this result is a corollary of the proof of the Sato-Tate conjecture by Barnet-Lamb, Geraghty, Harris, and Taylor; that proof crucially used the so-called βFundamental Lemmaβ of GΓ©rard Laumon and NgΓ΄ BαΊ£o ChΓ’u, the latter of whom won the Fields Medal based on proving it in very full generality.
Sage note 25.8.2. Into the future.
The following graphic is based on one due to William Stein, the original founder and developer of Sage, in personal communication.

Try it interactively below. The higher the number, the closer the values should group to the distribution; change the number of bins in the histogram to see it more clearly.
xxxxxxxxxx
def sqrt2():
PI = float(pi)
return plot(lambda x: (2/PI)*math.sqrt(1-x^2), -1,1, plot_points=200,
rgbcolor=(0.3,0.1,0.1), thickness=2)
β
delta = delta_qexp(10^5)
β
def delta_dist(bins=(20,[10..150]), number = [500,1000,..,delta.prec()]):
D = delta[:number]
w = [float(D[p])/(2*float(p)^(5.5)) for p in prime_range(number + 1)]
show(histogram(w, bins=bins, density=True) + sqrt2(), frame=True, gridlines=True)