login
A247364
Riordan array (f(x), (f(x)-1)/f(x)) where f(x) = (1 + x - sqrt(1 - 2x - 3x^2))/(2*x).
2
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,7
COMMENTS
This is essentially the reversal of the triangle in A034928, and A204849 with a duplicated first column.
Row sums are A005554(n+1).
LINKS
FORMULA
T(n,0) = A086246(n+1), T(n+1,1) = A001006(n), T(n+2,2) = A005043(n+2).
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