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

A379995
Expansion of e.g.f. exp(-2*x)/(exp(-x) - x)^4.
0
1, 6, 48, 476, 5608, 76372, 1179016, 20332580, 387225120, 8068825988, 182564048824, 4456476380644, 116724944900272, 3264981100202564, 97130013288324552, 3062011655207131748, 101963095705628194624, 3576126056313566090500, 131762871920106615643480
OFFSET
0,2
FORMULA
a(n) = n! * Sum_{k=0..n} (k+2)^(n-k) * binomial(k+3,3)/(n-k)!.
a(n) ~ n! * n^3 / (6 * (LambertW(1) + 1)^4 * LambertW(1)^(n+2)). - Vaclav Kotesovec, Jan 08 2025
PROG
(PARI) a(n) = n!*sum(k=0, n, (k+2)^(n-k)*binomial(k+3, 3)/(n-k)!);
CROSSREFS
KEYWORD
nonn,easy,new
AUTHOR
Seiichi Manyama, Jan 07 2025
STATUS
approved