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

A371330
E.g.f. satisfies A(x) = (exp(x/(1 - A(x))) - 1)/(1 - A(x))^2.
1
0, 1, 7, 112, 2901, 104176, 4788191, 268323756, 17744075761, 1352623086136, 116780496526515, 11263219375425172, 1200239384528276285, 140044340185131990336, 17757626485468691645479, 2431398542489983741458940, 357522675169127219183137737
OFFSET
0,3
FORMULA
a(n) = Sum_{k=1..n} (n+3*k-2)!/(n+2*k-1)! * Stirling2(n,k).
E.g.f.: Series_Reversion( (1 - x) * log(1 + x * (1 - x)^2) ). - Seiichi Manyama, Sep 08 2024
PROG
(PARI) a(n) = sum(k=1, n, (n+3*k-2)!/(n+2*k-1)!*stirling(n, k, 2));
CROSSREFS
Sequence in context: A129030 A128576 A147631 * A359927 A010795 A377639
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Mar 19 2024
STATUS
approved