OFFSET
0,5
COMMENTS
The absolute values of the nonzero values appear to be as in Pascal's triangle A007318. The second diagonal appears to be zero at nonsquare free column indices. There are a lot of zeros in the middle as the table gets bigger.
LINKS
Alois P. Heinz, Rows n = 0..140, flattened
EXAMPLE
Table begins:
1
1 1
1 2 1
1 3 -3 1
1 4 6 0 1
1 5 -10 -10 -5 1
1 6 15 -20 15 -6 1
1 7 -21 0 0 -21 -7 1
1 8 28 56 0 0 0 0 1
1 9 -36 84 126 126 0 0 0 1
1 10 45 0 -210 252 -210 0 0 -10 1
...
T(4,2) = 6 is the determinant of the 2 X 2 matrix:
[3, 0]
[4, 2]
T(4,3) = 0 is the determinant of the 3 X 3 matrix:
[2, 1, 0]
[3, 0, 1]
[4, 2, 0]
MAPLE
T:= (n, k)-> LinearAlgebra[Determinant](Matrix(k,
(i, j)-> `if`(irem(n-k+i, j, 'q')=0, q, 0))):
seq(seq(T(n, k), k=0..n), n=0..11); # Alois P. Heinz, Feb 10 2026
PROG
(PARI) T(n, k) = matdet(matrix(k, k, i, j, my(m=n-k+i); if(m%j==0, m/j))) \\ Andrew Howroyd, Feb 10 2026
CROSSREFS
KEYWORD
sign,tabl
AUTHOR
Mats Granvik and Gary W. Adamson, Feb 26 2009
EXTENSIONS
Offset and definition corrected by Andrew Howroyd, Feb 10 2026
STATUS
approved
