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

A305276
Expansion of e.g.f. 1/(1 + LambertW(-x/(1 - x))).
3
1, 1, 6, 57, 748, 12565, 257526, 6232765, 173980920, 5502613833, 194477548330, 7596028355641, 324920533473108, 15106155118606045, 758463525318426942, 40901033617318501845, 2357682497456804486896, 144670077586483815863569, 9414952083720893890165842, 647715776085173413399687633
OFFSET
0,3
COMMENTS
Lah transform of A000312.
LINKS
N. J. A. Sloane, Transforms
FORMULA
a(n) = Sum_{k=0..n} binomial(n-1,k-1)*k^k*n!/k!.
a(n) ~ n^n * (1 + exp(1))^(n - 1/2) / exp(n - 1/2). - Vaclav Kotesovec, Aug 18 2018
MAPLE
S:= series(1/(1+LambertW(-x/(1-x))), x, 51):
seq(coeff(S, x, j)*j!, j=0..50); # Robert Israel, Aug 19 2018
MATHEMATICA
nmax = 19; CoefficientList[Series[1/(1 + LambertW[-x/(1 - x)]), {x, 0, nmax}], x] Range[0, nmax]!
Join[{1}, Table[Sum[Binomial[n - 1, k - 1] k^k n!/k!, {k, n}], {n, 19}]]
CROSSREFS
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Aug 18 2018
STATUS
approved