A234800 First occurrence of n in A234323: Number of nontrivial zeros of the Riemann zeta function in the interval 1/2 + i[n,n+1).
1, 14, 111, 5826, 85865, 4580009, 290820868
Offset: 0
Links
- Simon Plouffe, Table for A234323(n) for n = 1..1000000
- LMFDB David Platt's Table for A234323(n) of the first 103 billion zeros.
- Simon Plouffe, Table for A234323(n) up to 2 billion - note the file is 25 gigabytes uncompressed
- Wikipedia, Riemann zeta function zeros
Programs
-
Mathematica
t = Table[0, {100}]; k = 1; cnt = 1; a = 0; t[[1]] = 14; While[k < 1000001, b = Floor[ Im[ N[ ZetaZero[ k]] ]]; If[b == a, cnt++; If[t[[cnt]] == 0, t[[cnt]] = b; Print[{cnt, b}]], cnt = 1]; a = b; k++]
Comments