OFFSET
1,5
COMMENTS
Observation: Note that the k-th column is a sequence where the periodic subset is formed by zero together with k-1 numbers k. For example, the 5th column can be defined as "Period 5: repeat 0,5,5,5,5".
LINKS
Reinhard Zumkeller, Rows n = 1..125 of triangle, flattened
FORMULA
T(n,k) = k * A051731(n,k). - Reinhard Zumkeller, Feb 19 2014
EXAMPLE
Triangle begins:
0;
0,0;
0,2,0;
0,0,3,0;
0,2,3,4,0;
0,0,0,4,5,0;
0,2,3,4,5,6,0;
0,0,3,0,5,6,7,0;
0,2,0,4,5,6,7,8,0;
0,0,3,4,0,6,7,8,9,0;
0,2,3,4,5,6,7,8,9,10,0;
0,0,0,0,5,0,7,8,9,10,11,0;
0,2,3,4,5,6,7,8,9,10,11,12,0;
0,0,3,4,5,6,0,8,9,10,11,12,13,0;
0,2,0,4,0,6,7,8,9,10,11,12,13,14,0;
0,0,3,0,5,6,7,0,9,10,11,12,13,14,15,0;
PROG
(Haskell)
a173541 n k = a173541_tabl !! (n-1) !! (n-1)
a173541_row n = a173541_tabl !! (n-1)
a173541_tabl = zipWith (zipWith (*))
a002260_tabl $ map (map (1 -)) a051731_tabl
-- Reinhard Zumkeller, Feb 19 2014
CROSSREFS
KEYWORD
AUTHOR
Omar E. Pol, May 25 2010
STATUS
approved