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”).

A336227
a(0) = 1; a(n) = n * Sum_{k=0..n-1} binomial(n-1,k)^2 * a(k).
5
1, 1, 4, 27, 292, 4425, 89106, 2280901, 71928872, 2728450017, 122145511510, 6354868381521, 379376236939404, 25710543779239501, 1960001963705060926, 166753195643254805565, 15724259680648667902096, 1633462474351643785483457, 185931510605274506452763166
OFFSET
0,3
FORMULA
a(n) = (n!)^2 * [x^n] exp(sqrt(x) * BesselI(1,2*sqrt(x))).
MATHEMATICA
a[0] = 1; a[n_] := a[n] = n Sum[Binomial[n - 1, k]^2 a[k], {k, 0, n - 1}]; Table[a[n], {n, 0, 18}]
nmax = 18; CoefficientList[Series[Exp[Sqrt[x] BesselI[1, 2 Sqrt[x]]], {x, 0, nmax}], x] Range[0, nmax]!^2
CROSSREFS
Sequence in context: A295255 A203157 A304340 * A119820 A159599 A221411
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Jul 12 2020
STATUS
approved