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

A355181
Expansion of e.g.f. -LambertW(x^2/2 * (1 - exp(x))).
1
0, 0, 0, 3, 6, 10, 195, 1281, 5908, 90756, 1098765, 9605035, 147947646, 2496239538, 33836915203, 588360763095, 12104789358600, 223722576473896, 4578806487368313, 108875473376842467, 2519418390663035170, 60831875074927797750, 1640260621340460494991
OFFSET
0,4
LINKS
Eric Weisstein's World of Mathematics, Lambert W-Function.
FORMULA
a(n) = n! * Sum_{k=1..floor(n/3)} k^(k-1) * Stirling2(n-2*k,k)/(2^k * (n-2*k)!).
PROG
(PARI) my(N=30, x='x+O('x^N)); concat([0, 0, 0], Vec(serlaplace(-lambertw(x^2/2*(1-exp(x))))))
(PARI) a(n) = n!*sum(k=1, n\3, k^(k-1)*stirling(n-2*k, k, 2)/(2^k*(n-2*k)!));
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Sep 24 2022
STATUS
approved