OFFSET
1,1
COMMENTS
We consider here the imaginary part of 1/2 + iy = z, for which Zeta(z) is a zero.
Note that these are not the first differences of A002410 because rounding is done here AFTER computing the differences. - R. J. Mathar, Jul 04 2009
What is the largest n such that a(n) > 0? - Charles R Greathouse IV, Jan 08 2012
This doesn't seem feasible to compute, probably more than 10^200. - Charles R Greathouse IV, Jan 29 2013
LINKS
T. D. Noe, Table of n, a(n) for n = 1..1000
A. M. Odlyzko, Tables of zeros of the Riemann zeta function
EXAMPLE
The absolute difference between the first nontrivial zero (14.134725...) and the second nontrivial zero (21.022039...) is equal to 6.887314... which rounded to nearest integer is equal to 7, then a(2) = 7.
MATHEMATICA
Join[{14}, Table[Round[Im[ZetaZero[n] - ZetaZero[n - 1]]], {n, 2, 100}]] (* Alonso del Arte, Jan 29 2013 *)
PROG
(PARI) diff(v)=vector(#v-1, i, v[i+1]-v[i])
concat(14, round(diff(lfunzeros(lzeta, 100)))) \\ Charles R Greathouse IV, Jul 26 2021
CROSSREFS
KEYWORD
nonn
AUTHOR
Omar E. Pol, Jun 26 2009
EXTENSIONS
Extended by R. J. Mathar, Jul 04 2009
STATUS
approved