A249677 Triangle, read by rows, with row n forming the coefficients in Product_{k=0..n} (1 + k^3*x).
1, 1, 1, 1, 9, 8, 1, 36, 251, 216, 1, 100, 2555, 16280, 13824, 1, 225, 15055, 335655, 2048824, 1728000, 1, 441, 63655, 3587535, 74550304, 444273984, 373248000, 1, 784, 214918, 25421200, 1305074809, 26015028256, 152759224512, 128024064000, 1, 1296, 616326, 135459216, 14320729209, 694213330464, 13472453691584, 78340747014144, 65548320768000
Offset: 0
Examples
Triangle begins: 1; 1, 1; 1, 9, 8; 1, 36, 251, 216; 1, 100, 2555, 16280, 13824; 1, 225, 15055, 335655, 2048824, 1728000; 1, 441, 63655, 3587535, 74550304, 444273984, 373248000; 1, 784, 214918, 25421200, 1305074809, 26015028256, 152759224512, 128024064000; 1, 1296, 616326, 135459216, 14320729209, 694213330464, 13472453691584, 78340747014144, 65548320768000; ...
Links
- Seiichi Manyama, Rows n = 0..139, flattened
Programs
-
PARI
{T(n,k)=polcoeff(prod(m=0,n,1 + m^3*x +x*O(x^n)),k)} for(n=0,10,for(k=0,n,print1(T(n,k),", "));print(""))
Comments