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!)
A350722 a(n) = Sum_{k=0..n} k! * k^(k+n) * Stirling2(n,k). 4
1, 1, 33, 4567, 1652493, 1235777551, 1656820330173, 3619858882041487, 12034209740498292093, 57813156798714532953391, 385490564193781368103929213, 3454086424032897924417605526607, 40500898779980258599522326286912893 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
E.g.f.: Sum_{k>=0} (k * (exp(k*x) - 1))^k.
a(n) ~ exp(exp(-2)/2) * n! * n^(2*n). - Vaclav Kotesovec, Feb 04 2022
MATHEMATICA
a[0] = 1; a[n_] := Sum[k! * k^(k+n) * StirlingS2[n, k], {k, 1, n}]; Array[a, 13, 0] (* Amiram Eldar, Feb 03 2022 *)
PROG
(PARI) a(n) = sum(k=0, n, k!*k^(k+n)*stirling(n, k, 2));
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(sum(k=0, N, (k*(exp(k*x)-1))^k)))
CROSSREFS
Sequence in context: A232292 A271334 A230182 * A354674 A229260 A351136
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Feb 03 2022
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 09:21 EDT 2024. Contains 371967 sequences. (Running on oeis4.)