[go: up one dir, main page]

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

A365032
E.g.f. satisfies A(x) = exp(x * A(x) * (1 + x * A(x))^3).
2
1, 1, 9, 106, 1949, 47376, 1443757, 53003392, 2278044729, 112267072000, 6242682602321, 386708915902464, 26411820455554261, 1971959747016534016, 159794005364013403125, 13967707431203856449536, 1310083060716906045342833, 131245686122586065682628608
OFFSET
0,3
FORMULA
a(n) = n! * Sum_{k=0..n} (n+1)^(k-1) * binomial(3*k,n-k)/k!.
E.g.f.: (1/x) * Series_Reversion( x*exp(-x*(1 + x)^3) ). - Seiichi Manyama, Sep 23 2024
PROG
(PARI) a(n) = n!*sum(k=0, n, (n+1)^(k-1)*binomial(3*k, n-k)/k!);
CROSSREFS
Cf. A364940.
Sequence in context: A357295 A367789 A316145 * A039619 A374071 A249048
KEYWORD
nonn,changed
AUTHOR
Seiichi Manyama, Aug 17 2023
STATUS
approved