A277951 Triangle read by rows, in which row n gives coefficients in expansion of ((x^n - 1)/(x - 1))^6.
1, 1, 6, 15, 20, 15, 6, 1, 1, 6, 21, 50, 90, 126, 141, 126, 90, 50, 21, 6, 1, 1, 6, 21, 56, 120, 216, 336, 456, 546, 580, 546, 456, 336, 216, 120, 56, 21, 6, 1, 1, 6, 21, 56, 126, 246, 426, 666, 951, 1246, 1506, 1686, 1751, 1686, 1506, 1246, 951, 666, 426, 246, 126, 56, 21, 6, 1
Offset: 1
Examples
Triangle starts: 1; 1, 6, 15, 20, 15, 6, 1; 1, 6, 21, 50, 90, 126, 141, 126, 90, 50, 21, 6, 1; 1, 6, 21, 56, 120, 216, 336, 456, 546, 580, 546, 456, 336, 216, 120, 56, 21, 6, 1.
Links
- Juan Pablo Herrera P., Rows n=1..50 of the triangle, flattened
Programs
-
Mathematica
Table[CoefficientList[Series[((x^n - 1)/(x - 1))^6, {x, 0, 6 n}], x], {n, 10}] // Flatten
-
PARI
row(n) = Vec(((1 - x^n)/(1 - x))^6); tabf(nn) = for (n=1, nn, print(row(n)));
Formula
T(n,k) = Sum_{i=k-n+1..k} A277950(T(n,i))
Comments