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

A351281
a(n) = Sum_{k=0..n} k! * k^k * Stirling2(n,k).
2
1, 1, 9, 187, 7173, 440611, 39631509, 4910795107, 802015652853, 166948755155971, 43146953460348309, 13555255072473665827, 5087595330217093070133, 2248298922174973220446531, 1155512971750307157457879509, 683392198848998191062416885347
OFFSET
0,3
FORMULA
E.g.f.: Sum_{k>=0} (k * (exp(x) - 1))^k.
a(n) ~ exp(exp(-1)/2) * n! * n^n. - Vaclav Kotesovec, Feb 06 2022
MATHEMATICA
a[0] = 1; a[n_] := Sum[k! * k^k * StirlingS2[n, k], {k, 1, n}]; Array[a, 16, 0] (* Amiram Eldar, Feb 06 2022 *)
PROG
(PARI) a(n) = sum(k=0, n, k!*k^k*stirling(n, k, 2));
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(sum(k=0, N, (k*(exp(x)-1))^k)))
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Feb 06 2022
STATUS
approved