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

A365034
E.g.f. satisfies A(x) = exp(x * A(x)^2 * (1 + x * A(x))^3).
1
1, 1, 11, 175, 4317, 142561, 5929513, 297901899, 17557448681, 1188110627137, 90804918357261, 7737033497254579, 727253150819898541, 74760871323339663489, 8344094871249960257009, 1004872166403751985971291, 129883465213311163328142417
OFFSET
0,3
FORMULA
a(n) = n! * Sum_{k=0..n} (n+k+1)^(k-1) * binomial(3*k,n-k)/k!.
PROG
(PARI) a(n) = n!*sum(k=0, n, (n+k+1)^(k-1)*binomial(3*k, n-k)/k!);
CROSSREFS
Cf. A364942.
Sequence in context: A223067 A280442 A218330 * A196664 A003729 A230388
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Aug 17 2023
STATUS
approved