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

A355180
Expansion of e.g.f. -LambertW(x^3 * (1 - exp(x)))/6.
2
0, 0, 0, 0, 4, 10, 20, 35, 6776, 60564, 352920, 1663365, 126625180, 2361079006, 27334747804, 245495250455, 11174333090480, 328952158255400, 6245314009946736, 90576650639967369, 3209305759254634740, 122557203047084965810, 3365068665450300234580
OFFSET
0,5
LINKS
Eric Weisstein's World of Mathematics, Lambert W-Function.
FORMULA
a(n) = (n!/6) * Sum_{k=1..floor(n/4)} k^(k-1) * Stirling2(n-3*k,k)/(n-3*k)!.
PROG
(PARI) my(N=20, x='x+O('x^N)); concat([0, 0, 0, 0], Vec(serlaplace(-lambertw(x^3*(1-exp(x)))/6)))
(PARI) a(n) = n!*sum(k=1, n\4, k^(k-1)*stirling(n-3*k, k, 2)/(n-3*k)!)/6;
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Sep 24 2022
STATUS
approved