The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A332408 a(n) = Sum_{k=0..n} binomial(n,k) * k! * k^n. 5
1, 1, 10, 213, 8284, 513105, 46406286, 5772636373, 945492503320, 197253667623681, 51069324556151290, 16067283861476491941, 6037615013420387657844, 2670812587802323522405393, 1373842484756310928089102022, 813119045938378747809030359445 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
G.f.: Sum_{k>=0} k! * k^k * x^k / (1 - k*x)^(k+1).
a(n) = n! * Sum_{k=0..n} k^n / (n-k)!.
a(n) ~ c * n! * n^n, where c = A073229 = exp(exp(-1)). - Vaclav Kotesovec, Feb 20 2021
E.g.f.: Sum_{k>=0} (k*x*exp(x))^k. - Seiichi Manyama, Feb 19 2022
MATHEMATICA
Join[{1}, Table[Sum[Binomial[n, k] k! k^n, {k, 0, n}], {n, 1, 15}]]
PROG
(PARI) a(n) = sum(k=0, n, binomial(n, k) * k! * k^n); \\ Michel Marcus, Apr 24 2020
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(sum(k=0, N, (k*x*exp(x))^k))) \\ Seiichi Manyama, Feb 19 2022
CROSSREFS
Sequence in context: A239770 A239771 A245987 * A245981 A245985 A309737
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Apr 23 2020
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 June 6 13:08 EDT 2024. Contains 373128 sequences. (Running on oeis4.)