[go: up one dir, main page]

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

A357344
E.g.f. satisfies A(x) = -log(1 - x * exp(A(x))) * exp(2 * A(x)).
3
0, 1, 7, 104, 2422, 77304, 3141108, 155155580, 9027723248, 604793361744, 45851401106880, 3880989671623008, 362790690552990720, 37120807927059003744, 4126551430278515989632, 495243629308215934662720, 63819561948443247132306432, 8789113187481077533462305024
OFFSET
0,3
FORMULA
a(n) = Sum_{k=1..n} (n+2*k)^(k-1) * |Stirling1(n,k)|.
E.g.f.: Series_Reversion( exp(-x) * (1 - exp(-x * exp(-2*x))) ). - Seiichi Manyama, Sep 09 2024
PROG
(PARI) a(n) = sum(k=1, n, (n+2*k)^(k-1)*abs(stirling(n, k, 1)));
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Sep 25 2022
STATUS
approved