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

A357348
E.g.f. satisfies A(x) = (exp(x * exp(A(x))) - 1) * exp(3 * A(x)).
3
0, 1, 9, 172, 5181, 214196, 11279542, 722242795, 54482959375, 4732518179422, 465226448603533, 51061919634063284, 6189640391474229790, 821277806639279795053, 118394082630978607655201, 18426248367244130561233924, 3079294928622816257125500821
OFFSET
0,3
FORMULA
a(n) = Sum_{k=1..n} (n+3*k)^(k-1) * Stirling2(n,k).
E.g.f.: Series_Reversion( exp(-x) * log(1 + x * exp(-3*x)) ). - Seiichi Manyama, Sep 09 2024
PROG
(PARI) a(n) = sum(k=1, n, (n+3*k)^(k-1)*stirling(n, k, 2));
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Sep 25 2022
STATUS
approved