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

A293270
a(n) = n^n*binomial(2*n-1, n).
1
1, 1, 12, 270, 8960, 393750, 21555072, 1413199788, 107961384960, 9418192087590, 923780000000000, 100633991211229476, 12055263261877075968, 1575041416811693275900, 222887966509090352332800, 33962507149515380859375000, 5543988061027763016035205120
OFFSET
0,3
COMMENTS
The n-th term of the n-fold convolution of the powers of n.
FORMULA
a(n) = [x^n] 1/(1 - n*x)^n.
a(n) ~ 2^(2*n-1)*n^n/sqrt(Pi*n).
MATHEMATICA
Join[{1}, Table[n^n Binomial[2 n - 1, n], {n, 1, 16}]]
Join[{1}, Table[(-1)^n n^n Binomial[-n, n], {n, 1, 16}]]
Table[SeriesCoefficient[1/(1 - n x)^n, {x, 0, n}], {n, 0, 16}]
PROG
(PARI) a(n) = n^n*binomial(2*n-1, n); \\ Altug Alkan, Oct 04 2017
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Oct 04 2017
STATUS
approved