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

A365030
E.g.f. satisfies A(x) = exp(x * (1 + x * A(x))^3).
3
1, 1, 7, 55, 709, 11761, 243181, 6054763, 175803097, 5847578785, 219175994521, 9144024668131, 420340277237365, 21111584238219697, 1150333949592549541, 67589878866533749531, 4260172601206280708401, 286737199114729515029569
OFFSET
0,3
LINKS
FORMULA
a(n) = n! * Sum_{k=0..n} (n-k+1)^(k-1) * binomial(3*k,n-k)/k!.
MATHEMATICA
Array[#!*Sum[ (# - k + 1)^(k - 1)*Binomial[3 k, # - k]/k!, {k, 0, #}] &, 18, 0] (* Michael De Vlieger, Aug 18 2023 *)
PROG
(PARI) a(n) = n!*sum(k=0, n, (n-k+1)^(k-1)*binomial(3*k, n-k)/k!);
CROSSREFS
Cf. A364938.
Sequence in context: A028562 A209668 A340028 * A180829 A227544 A094656
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Aug 17 2023
STATUS
approved