OFFSET
1,8
COMMENTS
A variant of A127093, which has T(n,n) = n. [The original definition said "Subsequence of A127093". Since all nonnegative integers are repeated infinitely often in both sequences, each one is a subsequence of the other, but there is no such relation on a row-by-row basis. - M. F. Hasler, Aug 08 2016]
FORMULA
T(n,k) = if n=1 and k=1 then 1 elseif n=k then 0 elseif k divides n then k else 0.
EXAMPLE
Triangle begins:
1,
1,0,
1,0,0,
1,2,0,0,
1,0,0,0,0,
1,2,3,0,0,0,
1,0,0,0,0,0,0,
1,2,0,4,0,0,0,0,
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Gary W. Adamson and Mats Granvik, Apr 28 2010
EXTENSIONS
Definition corrected by M. F. Hasler, Aug 08 2016
STATUS
approved