A128545 Triangle, read by rows, where T(n,k) is the coefficient of q^(n*k) in the q-binomial coefficient [2*n, n] for n >= k >= 0.
1, 1, 1, 1, 2, 1, 1, 3, 3, 1, 1, 5, 8, 5, 1, 1, 7, 18, 18, 7, 1, 1, 11, 39, 58, 39, 11, 1, 1, 15, 75, 155, 155, 75, 15, 1, 1, 22, 141, 383, 526, 383, 141, 22, 1, 1, 30, 251, 867, 1555, 1555, 867, 251, 30, 1, 1, 42, 433, 1860, 4192, 5448, 4192, 1860, 433, 42, 1
Offset: 0
Examples
Triangle T(n,k) (with rows n >= 0 and columns k = 0..n) begins: 1; 1, 1; 1, 2, 1; 1, 3, 3, 1; 1, 5, 8, 5, 1; 1, 7, 18, 18, 7, 1; 1, 11, 39, 58, 39, 11, 1; 1, 15, 75, 155, 155, 75, 15, 1; 1, 22, 141, 383, 526, 383, 141, 22, 1; 1, 30, 251, 867, 1555, 1555, 867, 251, 30, 1; 1, 42, 433, 1860, 4192, 5448, 4192, 1860, 433, 42, 1; ...
Links
- Paul D. Hanna, Rows n = 0..45, flattened.
Crossrefs
Programs
-
PARI
T(n,k)=if(n
Comments