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

A337057
a(n) = exp(-n) * Sum_{k>=0} (k - n)^n * n^k / k!.
0
1, 0, 2, 3, 52, 255, 4146, 38766, 688584, 9685017, 195875110, 3655101703, 84872077500, 1955205893680, 51896551499898, 1412668946049315, 42475968202854160, 1328074354724554471, 44778480417250291566, 1577210136570598631318
OFFSET
0,3
FORMULA
a(n) = n! * [x^n] exp(n*(exp(x) - 1 - x)).
a(n) = Sum_{k=0..n} binomial(n,k) * (-n)^(n-k) * BellPolynomial_k(n).
MATHEMATICA
Table[n! SeriesCoefficient[Exp[n (Exp[x] - 1 - x)], {x, 0, n}], {n, 0, 19}]
Unprotect[Power]; 0^0 = 1; Table[Sum[Binomial[n, k] (-n)^(n - k) BellB[k, n], {k, 0, n}], {n, 0, 19}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Aug 13 2020
STATUS
approved