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

A377529
Expansion of e.g.f. 1/(1 - x * exp(x))^2.
2
1, 2, 10, 66, 560, 5770, 69852, 970886, 15228880, 266006610, 5119447700, 107617719022, 2453167135608, 60268223308826, 1587381621990556, 44619277892537910, 1333135910963656352, 42189279001183102882, 1409741875877923927332, 49597905017847180008126
OFFSET
0,2
FORMULA
a(n) = n! * Sum_{k=0..n} (k+1) * k^(n-k)/(n-k)!.
a(n) ~ n! * n/((1 + LambertW(1))^2 * LambertW(1)^n). - Vaclav Kotesovec, Oct 31 2024
PROG
(PARI) a(n) = n!*sum(k=0, n, (k+1)*k^(n-k)/(n-k)!);
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Seiichi Manyama, Oct 30 2024
STATUS
approved