login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A335946
a(n) = 1 + Sum_{k=0..n-1} binomial(n,k)^2 * a(k).
1
1, 2, 10, 110, 2154, 65902, 2903446, 174109546, 13636888810, 1351801926542, 165434393561910, 24497621303302666, 4317170011370444982, 892891315599103615082, 214174328063904077240962, 58974283594413521123672110, 18476316023495768160707616490
OFFSET
0,2
LINKS
FORMULA
Sum_{n>=0} a(n) * x^n / (n!)^2 = BesselI(0,2*sqrt(x)) / (2 - BesselI(0,2*sqrt(x))).
a(n) = 2 * A102221(n) for n > 0.
MATHEMATICA
a[n_] := a[n] = 1 + Sum[Binomial[n, k]^2 a[k], {k, 0, n - 1}]; Table[a[n], {n, 0, 16}]
nmax = 16; CoefficientList[Series[BesselI[0, 2 Sqrt[x]]/(2 - BesselI[0, 2 Sqrt[x]]), {x, 0, nmax}], x] Range[0, nmax]!^2
CROSSREFS
Row sums of A102220.
Sequence in context: A006608 A066205 A113147 * A206154 A181445 A231969
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Jul 01 2020
STATUS
approved