login
A156734
Square array read by antidiagonals up. T(n,k) = if k divides n then +1 else -1.
2
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
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
Cf. A127511.
Sequence in context: A360710 A269529 A325931 * A119664 A257075 A330034
KEYWORD
sign,tabl
AUTHOR
Mats Granvik, Feb 14 2009
STATUS
approved