[go: up one dir, main page]

login
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