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!)
A320287 a(n) = n! * [x^n] Sum_{k>=0} exp(n^k*x)*x^k/k!. 3
1, 2, 6, 56, 2050, 318752, 252035714, 980755711616, 23647746367946754, 3088949241542073508352, 2940240000900000020000000002, 16218429504693724464229916894517248, 748528620411995327278028288988088683724802, 210422023062476527874650307058798916093350502080512 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = [x^n] Sum_{k>=0} x^k/(1 - n^k*x)^(k+1).
a(n) = Sum_{k=0..n} binomial(n,k)*n^(k*(n-k)).
a(n) ~ 2^(n + 1/2) * n^(n^2/4 - 1/2) / sqrt(Pi) if n is even and a(n) ~ 2^(n + 3/2) * n^(n^2/4 - 3/4) / sqrt(Pi) if n is odd. - Vaclav Kotesovec, Jul 06 2022
MATHEMATICA
Join[{1}, Table[n! SeriesCoefficient[Sum[Exp[n^k x] x^k/k!, {k, 0, n}], {x, 0, n}], {n, 13}]]
Join[{1}, Table[SeriesCoefficient[Sum[x^k/(1 - n^k x)^(k + 1), {k, 0, n}], {x, 0, n}], {n, 13}]]
Join[{1}, Table[Sum[Binomial[n, k] n^(k (n - k)), {k, 0, n}], {n, 13}]]
PROG
(PARI) for(n=0, 20, print1(sum(k=0, n, binomial(n, k)*n^(k*(n-k))), ", ")) \\ G. C. Greubel, Nov 04 2018
(Magma) [(&+[Binomial(n, k)*n^(k*(n-k)):k in [0..n]]): n in [0..20]]; // G. C. Greubel, Nov 04 2018
CROSSREFS
Sequence in context: A211933 A167010 A014070 * A365776 A198445 A248377
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Oct 09 2018
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 23 10:29 EDT 2024. Contains 371905 sequences. (Running on oeis4.)