login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A323664 Expansion of e.g.f. exp(exp(x)*BesselI(0,2*x) - 1). 0
1, 1, 4, 17, 93, 592, 4333, 35513, 321422, 3175143, 33932527, 389459534, 4771856455, 62099773309, 854664145650, 12393250075843, 188732680806329, 3009802364637792, 50136592926632925, 870386602634809233, 15715357418255989580, 294571161201947141223, 5722457506215132179933 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(0) = 1; a(n) = Sum_{k=1..n} A002426(k)*binomial(n-1,k-1)*a(n-k).
MAPLE
seq(n!*coeff(series(exp(exp(x)*BesselI(0, 2*x)-1), x=0, 23), x, n), n=0..22); # Paolo P. Lava, Jan 28 2019
MATHEMATICA
nmax = 22; CoefficientList[Series[Exp[Exp[x] BesselI[0, 2 x] - 1], {x, 0, nmax}], x] Range[0, nmax]!
a[n_] := a[n] = Sum[3^k Hypergeometric2F1[1/2, -k, 1, 4/3] Binomial[n - 1, k - 1] a[n - k], {k, 1, n}]; a[0] = 1; Table[a[n], {n, 0, 22}]
PROG
(PARI) my(x='x + O('x^25)); Vec(serlaplace(exp(exp(x)*besseli(0, 2*x) - 1))) \\ Michel Marcus, Jan 24 2019
CROSSREFS
Sequence in context: A112354 A020011 A239914 * A067084 A123750 A278644
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Jan 23 2019
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 06:45 EDT 2024. Contains 371906 sequences. (Running on oeis4.)