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!)
A349588 E.g.f. satisfies: A(x) * log(A(x)) = exp(x*A(x)) - 1. 12
1, 1, 2, 8, 47, 367, 3592, 42317, 583522, 9223872, 164482761, 3267077365, 71540314562, 1712334954865, 44479256704898, 1246241906483516, 37465750470667023, 1202986323660907447, 41089436549405467096, 1487622596267089224901, 56907111260864275384346 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = Sum_{k=0..n} (n-k+1)^(k-1) * Stirling2(n,k).
a(n) ~ s * n^(n-1) / (sqrt(r*s - 1/(1 + log(s))) * exp(n) * r^n), where r = 0.4858893246242883887847088396703818017675758048583... and s = 3.016426175038226058288579473351450432292607021364... are roots of the system of equations exp(r*s) = 1 + s*log(s), exp(r*s)*r = 1 + log(s). - Vaclav Kotesovec, Nov 25 2021
MATHEMATICA
a[n_] := Sum[(n - k + 1)^(k - 1)*StirlingS2[n, k], {k, 0, n}]; Array[a, 21, 0] (* Amiram Eldar, Nov 23 2021 *)
PROG
(PARI) a(n) = sum(k=0, n, (n-k+1)^(k-1)*stirling(n, k, 2));
CROSSREFS
Cf. A349557.
Sequence in context: A145846 A317366 A009566 * A259905 A329096 A233337
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Nov 22 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 May 29 04:03 EDT 2023. Contains 363029 sequences. (Running on oeis4.)