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

A357423
E.g.f. satisfies A(x) * exp(A(x)) = log(1 + x * exp(A(x))).
4
0, 1, -1, -1, 10, 4, -384, 818, 29800, -205200, -3612000, 56042832, 556589232, -19091774352, -70128589608, 8044430218680, -25379500932864, -4055729067351552, 48310659088501248, 2334746679051721536, -58078273556262804480, -1420062892415588203776
OFFSET
0,5
FORMULA
a(n) = Sum_{k=1..n} (n-k)^(k-1) * Stirling1(n,k).
E.g.f.: Series_Reversion( exp(-x) * (exp(x * exp(x)) - 1) ). - Seiichi Manyama, Sep 10 2024
PROG
(PARI) a(n) = sum(k=1, n, (n-k)^(k-1)*stirling(n, k, 1));
CROSSREFS
KEYWORD
sign
AUTHOR
Seiichi Manyama, Sep 27 2022
STATUS
approved