A355337 Expansion of e.g.f.: exp(exp(x) + x^2 - 1).
1, 1, 4, 11, 51, 212, 1133, 6001, 36508, 228435, 1559575, 11079180, 83753497, 659858617, 5459331036, 46980355355, 421272977267, 3917446787884, 37766791690501, 376447420971545, 3875957531387172, 41149332371734371, 449984429580538407, 5061923434006018612, 58517321729774406129
Offset: 0
Keywords
Links
- Vaclav Kotesovec, Table of n, a(n) for n = 0..568
- Thomas Scheuerle, An example for a(4) = 51 which explains the relation to polynomial roots.
Programs
-
Mathematica
nmax = 25; CoefficientList[Series[Exp[Exp[x] + x^2 - 1], {x, 0, nmax}], x] * Range[0, nmax]!
-
PARI
my(x='x+O('x^30)); Vec(serlaplace(exp(exp(x) + x^2 - 1))) \\ Michel Marcus, Jun 29 2022
-
PARI
a(n) = sum(k=0, floor(n/2), sum(m=0, n-(k*2), stirling(n-(k*2), m, 2))*(2*k)!/k!*binomial(n, n-(k*2))) \\ Thomas Scheuerle, Jun 01 2024
Formula
a(n) ~ n^n * exp(n/LambertW(n) + LambertW(n)^2 - n - 1) / (sqrt(1 + LambertW(n)) * LambertW(n)^n).
a(n) ~ Bell(n) * exp(LambertW(n)^2).
a(0) = a(1) = 1; a(n) = 2 * (n-1) * a(n-2) + Sum_{k=1..n} binomial(n-1,k-1) * a(n-k). - Seiichi Manyama, Jun 29 2022
a(n) = Sum_{k=0..floor(n/2)} A000110(n - k*2)*(2*k)!/k!*binomial(n, n - (k*2)). - Thomas Scheuerle, Jun 01 2024
Comments