OFFSET
0,1
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..5000
F. Amoretti, Sur la fraction continue [0,1,2,3,4,...], Nouvelles annales de mathématiques, 1ère série, tome 14 (1855), pp. 40-44.
Simon Plouffe, 10000 digits.
Simon Plouffe, Bessell(1,2)/Bessell(0,2).
Eric Weisstein's World of Mathematics, Continued Fraction Constants.
Eric Weisstein's World of Mathematics, Generalized Continued Fraction.
FORMULA
Equivalently, the value of this continued fraction is the ratio of the sums: sum_{n=0..inf} n/(n!n!) and sum_{n=0..inf} 1/(n!n!). - Robert G. Wilson v, Jul 09 2004
EXAMPLE
0.697774657964007982006790592551752599486658...
MAPLE
evalf(BesselI(1, 2)/BesselI(0, 2), 120); # Alois P. Heinz, Jan 25 2022
MATHEMATICA
RealDigits[ FromContinuedFraction[ Range[0, 44]], 10, 110][[1]]
(* Or *) RealDigits[ BesselI[1, 2] / BesselI[0, 2], 10, 110] [[1]]
(* Or *) RealDigits[ Sum[n/(n!n!), {n, 0, Infinity}] / Sum[1/(n!n!), {n, 0, Infinity}], 10, 110] [[1]] (* Robert G. Wilson v, Jul 09 2004 *)
PROG
(PARI) besseli(1, 2)/besseli(0, 2) \\ Charles R Greathouse IV, Feb 19 2014
CROSSREFS
KEYWORD
AUTHOR
Robert Lozyniak (11(AT)onna.com), Jan 21 2000
EXTENSIONS
More terms from Vladeta Jovovic, Mar 30 2000
Entry revised by N. J. A. Sloane, Aug 13 2006
STATUS
approved