OFFSET
1,2
COMMENTS
Since all zeros are assumed to be on the critical line, the gap, or first difference, between two consecutive zeros is measured as the difference between the two imaginary parts.
Inspired by A002410.
No other terms < 10000000. The minimum gap so far is 0.002323...
LINKS
FORMULA
a(n) = A326502(n) + 1. - Artur Jasinski, Oct 24 2019
EXAMPLE
a(1)=1 since the first Riemann zeta zero, 1/2 + i*14.13472514... (A058303) has no previous zero, so its gap is measured from 0.
a(2)=2 since the second Riemann zeta zero, 1/2 + i*21.02203964... (A065434) has a gap of 6.887314497... which is less than the previous gap of ~14.13472514.
a(3)=3 since the third Riemann zeta zero, 1/2 + i*25.01085758... (A065452) has a gap of 3.988817941... which is less than ~6.887314497.
The fourth Riemann Zeta zero, 1/2 + i*30.42487613... (A065453) has a gap of 5.414018546... which is not less than ~6.887314497 and therefore is not in the sequence.
a(4)=5 since the fifth Riemann zeta zero, 1/2 + i*32.93506159... (A192492) has a gap of 2.510185462... which is less than ~3.988817941.
a(5)=8 since the eighth Riemann zeta zero, 1/2 + i*43.32707328... has a gap of 2.408354269... which is less than ~2.510185462.
MATHEMATICA
k = 1; mn = Infinity; y = 0; lst = {}; While[k < 10001, z = N[ Im@ ZetaZero@ k, 64]; If[z - y < mn, mn = z - y; AppendTo[lst, k]]; y = z; k++]; lst
CROSSREFS
KEYWORD
nonn
AUTHOR
Robert G. Wilson v, Jan 27 2015
EXTENSIONS
a(38) from Arkadiusz Wesolowski, Nov 08 2015
a(39) from Artur Jasinski, Oct 24 2019
STATUS
approved