OFFSET
0,7
COMMENTS
LINKS
Reinhard Zumkeller, Rows n = 0..125 of triangle, flattened
EXAMPLE
Triangle begins:
1
1, 1
1, 1, 1
2, 2, 1, 1
4, 4, 3, 1, 1
9, 9, 6, 4, 1, 1
21, 21, 15, 8, 5, 1, 1
51, 51, 36, 22, 10, 6, 1, 1
Production matrix begins:
1, 1
0, 0, 1
1, 1, 0, 1
1, 1, 1, 0, 1
1, 1, 1, 1, 0, 1
1, 1, 1, 1, 1, 0, 1
1, 1, 1, 1, 1, 1, 0, 1
PROG
(Haskell)
a247364 n k = a247364_tabl !! n !! k
a247364_row n = a247364_tabl !! n
a247364_tabl = [1] : (map reverse a034928_tabf)
-- Reinhard Zumkeller, Sep 20 2014
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Philippe Deléham, Sep 14 2014
STATUS
approved