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

A379870
E.g.f. A(x) satisfies A(x) = 1/(exp(-x*A(x)^3) - x*A(x)^3).
3
1, 2, 31, 991, 48873, 3276921, 278486359, 28694553119, 3476833863281, 484490228040865, 76339085661865791, 13421203354104200271, 2604724304171427849145, 553128917492225243766065, 127578750880241791377948359, 31761039697155404251033218751, 8488557258448512769356828810849
OFFSET
0,2
FORMULA
E.g.f.: ( (1/x) * Series_Reversion( x * (exp(-x) - x)^3 ) )^(1/3).
a(n) = n! * Sum_{k=0..n} (4*n-k+1)^(k-1) * binomial(4*n-k+1,n-k)/k!.
PROG
(PARI) a(n) = n!*sum(k=0, n, (4*n-k+1)^(k-1)*binomial(4*n-k+1, n-k)/k!);
CROSSREFS
Sequence in context: A333349 A349071 A224863 * A263075 A217766 A246970
KEYWORD
nonn,new
AUTHOR
Seiichi Manyama, Jan 05 2025
STATUS
approved