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

A371143
E.g.f. satisfies A(x) = 1 + x*A(x)^3 * (exp(x) - 1).
2
1, 0, 2, 3, 76, 365, 9906, 94507, 2832824, 43209945, 1438766830, 30971280791, 1146868043124, 32166137748901, 1322928667341386, 45791799761422275, 2085517396191903856, 85748423669245738673, 4306944218393176448742, 204597526239295278145327
OFFSET
0,3
FORMULA
a(n) = n! * Sum_{k=0..floor(n/2)} (3*k)!/(2*k+1)! * Stirling2(n-k,k)/(n-k)!.
PROG
(PARI) a(n) = n!*sum(k=0, n\2, (3*k)!/(2*k+1)!*stirling(n-k, k, 2)/(n-k)!);
CROSSREFS
Cf. A371141.
Sequence in context: A276197 A042233 A176290 * A370988 A371269 A377690
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Mar 12 2024
STATUS
approved