A145379 Square array read by antidiagonals upwards: T(n,k) = 1 if n divides k, T(n,k) = 0 otherwise, n >= 1, k >= 2.
1, 1, 1, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0
Offset: 1
Examples
Table begins: 1,1,1,1,1,1,1,... 1,0,1,0,1,0,1,... 0,1,0,0,1,0,0,... 0,0,1,0,0,0,1,... 0,0,0,1,0,0,0,... 0,0,0,0,1,0,0,... 0,0,0,0,0,1,0,... ...
Programs
-
Excel
=if(mod(column()+1;row())=0;1;0)
Comments