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

A360481
E.g.f. satisfies A(x) = x * exp(x + 2 * A(x)).
4
0, 1, 6, 63, 1044, 23805, 692118, 24482115, 1020584232, 49000005945, 2662853279850, 161586078510879, 10830019921469532, 794577001293803637, 63339899145968483262, 5451312770064188283195, 503784284643602483767632, 49757423537114340032969073
OFFSET
0,3
LINKS
Eric Weisstein's World of Mathematics, Lambert W-Function.
FORMULA
E.g.f.: A(x) = -LambertW(-2*x * exp(x))/2.
a(n) = Sum_{k=1..n} 2^(k-1) * k^(n-1) * binomial(n,k).
a(n) ~ sqrt(1 + LambertW(exp(-1)/2)) * n^(n-1) / (2 * LambertW(exp(-1)/2)^n * exp(n)). - Vaclav Kotesovec, Feb 17 2023
PROG
(PARI) my(N=20, x='x+O('x^N)); concat(0, Vec(serlaplace(-lambertw(-2*x*exp(x))/2)))
(PARI) a(n) = sum(k=1, n, 2^(k-1)*k^(n-1)*binomial(n, k));
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Feb 09 2023
STATUS
approved