login

Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.

A377826
E.g.f. satisfies A(x) = (1 + x) * exp(x * A(x)).
9
1, 2, 7, 49, 489, 6521, 108643, 2178107, 51084337, 1373054833, 41624314371, 1405311853595, 52299954524953, 2127347522554073, 93902399411048803, 4470613587492385051, 228362858274694209249, 12458393118650371672673, 722983769486947261178371
OFFSET
0,2
LINKS
Eric Weisstein's World of Mathematics, Lambert W-Function.
FORMULA
E.g.f.: (1+x) * exp( -LambertW(-x*(1+x)) ).
E.g.f.: -LambertW(-x*(1+x))/x.
a(n) = n! * Sum_{k=0..n} (k+1)^(k-1) * binomial(k+1,n-k)/k!.
a(n) ~ sqrt(-2*sqrt(1 + 4*exp(-1)) + 2 + 8*exp(-1)) * 2^n * n^(n-1) / ((-1 + sqrt(1 + 4*exp(-1)))^(n+1) * exp(n - 1/2)). - Vaclav Kotesovec, Nov 09 2024
PROG
(PARI) a(n) = n!*sum(k=0, n, (k+1)^(k-1)*binomial(k+1, n-k)/k!);
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Nov 09 2024
STATUS
approved