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

A371272
E.g.f. satisfies A(x) = 1 + x*A(x)^3 * (exp(x*A(x)^3) - 1).
1
1, 0, 2, 3, 148, 905, 40506, 542437, 25080392, 562677201, 28058678110, 908452740701, 49777760550684, 2120072013408505, 128583516119137730, 6778703037793746165, 455574282215526201616, 28520235381763443992993, 2118889776612629769160518
OFFSET
0,3
FORMULA
a(n) = n! * (3*n)! * Sum_{k=0..floor(n/2)} Stirling2(n-k,k)/( (n-k)! * (3*n-k+1)! ).
PROG
(PARI) a(n) = n!*(3*n)!*sum(k=0, n\2, stirling(n-k, k, 2)/((n-k)!*(3*n-k+1)!));
CROSSREFS
Cf. A371231.
Sequence in context: A254787 A042073 A124236 * A115231 A378839 A371231
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Mar 16 2024
STATUS
approved