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

A321974
Expansion of e.g.f. exp(exp(x)/(1 - x) - 1).
3
1, 2, 9, 54, 404, 3598, 37003, 430300, 5571147, 79358032, 1231990840, 20684884234, 373208232229, 7197079035318, 147658793214733, 3210107125516682, 73690798853163884, 1780718798351625094, 45171972342078432287, 1199948465249850848608, 33305064129201851432591, 963911863209583899492324
OFFSET
0,2
FORMULA
a(0) = 1; a(n) = Sum_{k=1..n} A000522(k)*binomial(n-1,k-1)*a(n-k).
a(n) ~ exp(-exp(1)/2 - 3/4 + 2*exp(1/2)*sqrt(n) - n) * n^(n - 1/4) / sqrt(2). - Vaclav Kotesovec, Dec 19 2018
MAPLE
seq(n!*coeff(series(exp(exp(x)/(1 - x) - 1), x=0, 22), x, n), n=0..21); # Paolo P. Lava, Jan 09 2019
MATHEMATICA
nmax = 21; CoefficientList[Series[Exp[Exp[x]/(1 - x) - 1], {x, 0, nmax}], x] Range[0, nmax]!
a[n_] := a[n] = Sum[Floor[Exp[1] k!] Binomial[n - 1, k - 1] a[n - k], {k, n}]; a[0] = 1; Table[a[n], {n, 0, 21}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Dec 19 2018
STATUS
approved