The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
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 (list; table; graph; refs; listen; history; text; internal format)
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
Sequence in context: A331409 A108017 A293208 * A301895 A229054 A133135
KEYWORD
nonn,tabl
AUTHOR
Philippe Deléham, Sep 14 2014
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified June 6 14:28 EDT 2024. Contains 373128 sequences. (Running on oeis4.)