login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A349558 E.g.f. satisfies: log(A(x)) = (1 - exp(-x*A(x))) * A(x). 4
1, 1, 4, 32, 393, 6547, 138046, 3525853, 105832964, 3651748332, 142429413387, 6196895235709, 297571887174040, 15632879134292045, 891910713837242092, 54919409605089141532, 3630105859259972654905, 256374187841461047791587 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = Sum_{k=0..n} (-1)^(n-k) * (n+k+1)^(k-1) * Stirling2(n,k).
a(n) ~ sqrt((s-1)*s^3 / (1 + r*(2*s - 3)*s - r^2*(s-1)*s^2)) * n^(n-1) / (exp(n) * r^(n -1/2)), where r = 0.2202409288542107090687589144963703329896230236509... and s = 1.7315644042495989781932730410872588555151921253414... are roots of the system of equations s = s/exp(r*s) + log(s), (s-1)/s - (1 - r*s)/exp(r*s) = 0. - Vaclav Kotesovec, Nov 22 2021
MATHEMATICA
a[n_] := Sum[(-1)^(n - k) * (n + k + 1)^(k - 1) * StirlingS2[n, k], {k, 0, n}]; Array[a, 18, 0] (* Amiram Eldar, Nov 22 2021 *)
PROG
(PARI) a(n) = sum(k=0, n, (-1)^(n-k)*(n+k+1)^(k-1)*stirling(n, k, 2));
CROSSREFS
Sequence in context: A007763 A195193 A203435 * A005263 A325574 A113131
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Nov 21 2021
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 06:49 EDT 2024. Contains 371964 sequences. (Running on oeis4.)