A380570 Triangle T(n, k) read by rows: Row n gives the coefficients of the even powers in Product_{t=1..n}(2*x - (2*t - 1))*Product_{t=1..n}(2*x + (2*t - 1)).
1, 4, -1, 16, -40, 9, 64, -560, 1036, -225, 256, -5376, 31584, -51664, 11025, 1024, -42240, 561792, -2764960, 4228884, -893025, 4096, -292864, 7358208, -79036672, 351475696, -515267064, 108056025, 16384, -1863680, 78926848, -1559683840, 14763100352, -61460460880, 87512357916
Offset: 0
Examples
Triangle begins: n \ k: 0 1 2 3 4 5 6 x^0 x^2 x^4 x^6 x^8 x^10 x^12 [0] 1; [1] 4, -1; [2] 16, -40, 9; [3] 64, -560, 1036, -225; [4] 256, -5376, 31584, -51664, 11025; [5] 1024, -42240, 561792, -2764960, 4228884, -893025; [6] 4096, -292864, 7358208, -79036672, 351475696, -515267064, 108056025; ...
Links
- Eric Weisstein's World of Mathematics, Hankel's Symbol.
Crossrefs
Programs
-
PARI
T(n, k) = Vec(prod(k=1,n,2*x-(2*k-1))*prod(k=1,n,2*x+(2*k-1)))[1+2*k]
Comments