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

A377861
Expansion of e.g.f. (1/x) * Series_Reversion( x * (1 - x)^3 * exp(x) ).
2
1, 2, 15, 206, 4193, 113904, 3882511, 159475280, 7672503681, 423360926720, 26362968645071, 1829066086810368, 139929538526047585, 11703312997355442176, 1062423600515479191375, 104042389901715413633024, 10933256593926589800851969, 1227201235266954603172331520
OFFSET
0,2
FORMULA
E.g.f. A(x) satisfies A(x) = exp(-x * A(x))/(1 - x*A(x))^3.
a(n) = n! * Sum_{k=0..n} (-1)^k * (n+1)^(k-1) * binomial(4*n-k+2,n-k)/k!.
PROG
(PARI) a(n) = n!*sum(k=0, n, (-1)^k*(n+1)^(k-1)*binomial(4*n-k+2, n-k)/k!);
CROSSREFS
Cf. A377833.
Sequence in context: A351501 A124558 A020565 * A282521 A099718 A143881
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Nov 09 2024
STATUS
approved