OFFSET
2,2
COMMENTS
Tricomi proved that the first zero of j_nu occurs at nu + a*nu^(1/3) + b*nu^(-1/3) + O(1/nu). The PARI program below uses an estimate with a = 1.85575708087 and b = 1.
REFERENCES
Francesco Tricomi, Sulle funzioni di Bellel di ordine e argomento pressochè uguali, Atti Accad. Sci. Torino Cl. Sci. Fis. Mat. Natur., 83:3-20 (1949).
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 2..100
Árpád Elbert and Andrea Laforgia, An asymptotic relation for the zeros of Bessel functions, Journal of Mathematical Analysis and Applications, Volume 98, Issue 2 (February 1984), pp. 502-511.
Roger C. McCann, Lower bounds for the zeros of Bessel functions, Proc. Amer. Math. Soc. 64 (1977), pp. 101-103.
FORMULA
Tricomi (cited in Elbert & Laforgia and McCann) proved that a(n) ~ kn^3. It seems that k is approximately 0.15647199543.
PROG
(PARI) esta(n)=my(a=1.85575708087); ((n+sqrt(n^2-4*a))/2/a)^3
a(n)=if(n==2, return(0)); my(k=esta(n)\1, t=besseljzero(k)-k); if(t<n, while(besseljzero(k++)-k<n, ); k, while(besseljzero(k--)-k>=n, ); k+1)
CROSSREFS
KEYWORD
nonn
AUTHOR
Charles R Greathouse IV, Feb 01 2023
STATUS
approved