A167407 T(m,n) is -m if n=0, 1 elsewhere.
0, -1, 1, -2, 1, 1, -3, 1, 1, 1, -4, 1, 1, 1, 1, -5, 1, 1, 1, 1, 1, -6, 1, 1, 1, 1, 1, 1, -7, 1, 1, 1, 1, 1, 1, 1, -8, 1, 1, 1, 1, 1, 1, 1, 1, -9, 1, 1, 1, 1, 1, 1, 1, 1, 1, -10, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, -11, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, -12, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, -13, 1, 1, 1, 1, 1
Offset: 0
Examples
Triangle begins: 0; -1,1; -2,1,1; -3,1,1,1; -4,1,1,1,1; ...
Programs
-
Mathematica
Flatten[Table[{-n,Table[1,{n}]},{n,0,15}]] (* Harvey P. Dale, Apr 17 2015 *)
Extensions
Revised by Jaume Oliver Lafont, Nov 11 2009
Comments