OFFSET
1,1
COMMENTS
Swap the element in the lower right corner with the element in the upper right corner and calculate the determinant. The result is sequence A127511.
FORMULA
T(n,k) = if k divides n then +1 else -1.
EXAMPLE
Table begins:
1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1
1..1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1
1.-1..1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1
1..1.-1..1.-1.-1.-1.-1.-1.-1.-1.-1.-1
1.-1.-1.-1..1.-1.-1.-1.-1.-1.-1.-1.-1
1..1..1.-1.-1..1.-1.-1.-1.-1.-1.-1.-1
1.-1.-1.-1.-1.-1..1.-1.-1.-1.-1.-1.-1
1..1.-1..1.-1.-1.-1..1.-1.-1.-1.-1.-1
1.-1..1.-1.-1.-1.-1.-1..1.-1.-1.-1.-1
1..1.-1.-1..1.-1.-1.-1.-1..1.-1.-1.-1
1.-1.-1.-1.-1.-1.-1.-1.-1.-1..1.-1.-1
1..1..1..1.-1..1.-1.-1.-1.-1.-1..1.-1
1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1.-1..1
PROG
(Excel) =if(or(mod(row(); column())=0); 1; -1)
CROSSREFS
KEYWORD
sign,tabl
AUTHOR
Mats Granvik, Feb 14 2009
STATUS
approved