OFFSET
0,2
LINKS
Seiichi Manyama, Table of n, a(n) for n = 0..252
E. W. Weisstein, Modified Bessel Function of the First Kind
FORMULA
a(n) = n!*(n + 1)!*sum {k = 0..n} 1/(k!*(k + 1)!).
Generating function: 1/(1 - x)*1/sqrt(x)*BesselI(1, 2*sqrt(x)) = sum {n >= 0} a(n)*x^n/(n!*(n + 1)!).
Defining recurrence equation: a(n) = n*(n + 1)*a(n-1) + 1 with a(0) = 1.
Alternative recurrence equation: a(0) = 1, a(1) = 3, and for n >= 2, a(n) = (n*(n + 1) + 1)*a(n-1) - n*(n - 1)*a(n-2).
The sequence b(n) := n!*(n + 1)! satisfies the same recurrence with the initial conditions b(0) = 1, b(1) = 2. It follows that we have the finite continued fraction expansion a(n) = n!*(n + 1)!*(1/(1 - 1/(3 - 2/(7 - 6/(13 - … - n*(n - 1)/(n^2 + n + 1)))))). Taking the limit yields the continued fraction expansion for the modified Bessel function value BesselI(1,2) = sum {k = 0..inf} 1/(k!*(k + 1)!) = 1/(1 - 1/(3 - 2/(7 - 6/(13 - ...- n*(n - 1)/(n^2 + n + 1 - ...))))) = 1.590636... (see A096789).
a(n) ~ BesselI(1,2) * n!*(n+1)!. - Vaclav Kotesovec, May 06 2015
MAPLE
MATHEMATICA
RecurrenceTable[{a[n] == n*(n + 1)*a[n-1] + 1, a[0] == 1}, a, {n, 0, 20}] (* Vaclav Kotesovec, May 06 2015 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Peter Bala, Aug 19 2013
STATUS
approved