A172259 Let CK(m) denote the complete elliptic integral of the first kind. a(n) is the n-th smallest integer k such that floor(CK(1/k)) = floor(CK(1/(k-1))) + 1.
1, 2, 5, 14, 38, 101, 275, 746, 2026, 5507, 14969, 40689, 110604, 300652, 817255, 2221528, 6038739, 16414993, 44620576, 121291299, 329703934, 896228212, 2436200862, 6622280533, 18001224835, 48932402358, 133012060152, 361564266077, 982833574297, 2671618645410
Offset: 1
Keywords
Examples
a(3) = 38 because floor(CK(1/37)) = 4 and floor(CK(1/38)) = 5.
References
- M. Abramowitz and I. A. Stegun, eds., Handbook of Mathematical Functions, National Bureau of Standards Applied Math. Series 55, Tenth Printing, 1972, p. 575, Eq. 16.22.1 and 16.22.2.
- M. Abramowitz and I. Stegun, "Elliptic Integrals", Chapter 17 of Handbook of Mathematical Functions. Dover Publications Inc., New York, 1046 p., (1965).
- A. Cayley, A memoir on the transformation of elliptic functions, Collected Mathematical Papers. Vols. 1-13, Cambridge Univ. Press, London, 1889-1897, Vol. 9, p. 128.
Links
- A. Cayley, An Elementary Treatise on Elliptic Functions, G. Bell and Sons, London, 1895, p. 56.
- F. Clarke, The Taylor Series Coefficients of the Jacobi Elliptic Functions, slides. [broken link]
Crossrefs
Programs
-
Maple
a0:=1:for p from 1 to 1000 do:a:= evalf(EllipticCK(1/p)):if floor(a)=a0+1 then print(p):a0:=floor(a):else fi:od:
Formula
F(z,k) = Integral_{t=0..z} 1/(sqrt(1-t^2)*sqrt(1-k^2*t^2)) dt. CK is defined by CK(k) = F(1,sqrt(1-k^2)). a(n) is the n-th integer k such that floor(CK(1/k)) = floor(CK(1/(k-1))) + 1.
Comments