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

A378019
E.g.f. satisfies A(x) = (1+x) * exp( x * (1+x) * A(x) ).
2
1, 2, 9, 79, 957, 15441, 309943, 7468301, 210221385, 6774449185, 246049105131, 9947338595085, 443121311695021, 21568178966624993, 1138938283455953919, 64856665518838006861, 3961941908569940501649, 258453847468153873181889, 17932482767578645884498643
OFFSET
0,2
LINKS
Eric Weisstein's World of Mathematics, Lambert W-Function.
FORMULA
E.g.f.: (1+x) * exp( -LambertW(-x * (1+x)^2) ).
a(n) = n! * Sum_{k=0..n} (k+1)^(k-1) * binomial(2*k+1,n-k)/k!.
PROG
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace((1+x)*exp(-lambertw(-x*(1+x)^2))))
(PARI) a(n) = n!*sum(k=0, n, (k+1)^(k-1)*binomial(2*k+1, n-k)/k!);
CROSSREFS
Cf. A377963.
Sequence in context: A229211 A056918 A346671 * A194471 A369712 A215629
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Nov 14 2024
STATUS
approved