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

A376124
E.g.f. A(x) satisfies A(x) = x * exp(A(x)) * (1 + 3*A(x)).
1
0, 1, 8, 117, 2584, 77245, 2923776, 134147881, 7237959296, 449153207001, 31518672486400, 2468063119978621, 213353171897306112, 20181854221412587093, 2073632053555295657984, 229977288184566078752625, 27382787929802599713243136, 3483970698377702965413968689
OFFSET
0,3
FORMULA
E.g.f.: Series_Reversion( x * exp(-x) / (1 + 3*x) ).
a(n) = n! * Sum_{k=1..n} 3^(n-k) * n^(k-1) * binomial(n-1,k-1)/k!.
a(n) ~ ((7 + sqrt(13))/2)^n * n^(n-1) / (13^(1/4) * exp((7 - sqrt(13))*n/6)). - Vaclav Kotesovec, Sep 11 2024
PROG
(PARI) a(n) = n!*sum(k=1, n, 3^(n-k)*n^(k-1)*binomial(n-1, k-1)/k!);
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Sep 11 2024
STATUS
approved