A247364 Riordan array (f(x), (f(x)-1)/f(x)) where f(x) = (1 + x - sqrt(1 - 2x - 3x^2))/(2*x).
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, 127, 127, 91, 54, 30, 12, 7, 1, 1, 323, 323, 232, 142, 75, 39, 14, 8, 1, 1, 835, 835, 603, 370, 205, 99, 49, 16, 9, 1, 1, 2188, 2188, 1585, 983
Offset: 0
Examples
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
Links
- Reinhard Zumkeller, Rows n = 0..125 of triangle, flattened
Programs
-
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
Comments