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!)
A139821 Triangle T(i,j) read by rows: T(i,1) = Fibonacci(i) for all i; T(i,i) = i for all i; T(i,j) = T(i-1,j) + T(i-2,j) + T(i-1,j-1) - T(i-2,j-1). 1
1, 1, 2, 2, 2, 3, 3, 5, 3, 4, 5, 8, 9, 4, 5, 8, 15, 15, 14, 5, 6, 13, 26, 31, 24, 20, 6, 7, 21, 46, 57, 54, 35, 27, 7, 8, 34, 80, 108, 104, 85, 48, 35, 8, 9, 55, 139, 199, 209, 170, 125, 63, 44, 9, 10, 89, 240, 366, 404, 360, 258, 175, 80, 54, 10, 11 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
Sum of n-th row terms = (2^n - 1) (see solution in Fibonacci Quarterly).
LINKS
Jyoti P. Shiwalker and M. N. Despande, Problem B-1033, Fibonacci Quarterly, Vol. 45, Number 2; 2007; p. 181.
Russ Euler and Jawad Sadek, editors, Elementary Problems and Solutions, Fibonacci Quarterly, Vol. 45, Number 4; 2007; p. 181.
EXAMPLE
First few rows of the triangle are:
1;
1, 2;
2, 2, 3;
3, 5, 3, 4;
5, 8, 9, 4, 5;
8, 15, 15, 14, 5, 6;
13, 26, 31, 24, 20, 6, 7;
21, 46, 57, 54, 5, 27, 7, 8;
...
PROG
(PARI) t(i, j) = {if ((i <= 0) || (j <= 0), 0, if (j == 1, fibonacci(i), if (i == j, i, t(i-1, j) + t(i-2, j) + t(i-1, j-1) - t(i-2, j-1); ); ); ); }
tabl(nn) = {for (n=1, nn, for (k=1, n, print1(t(n, k), ", "); ); ); } \\ Michel Marcus, Feb 11 2014
CROSSREFS
Sequence in context: A293440 A237121 A329493 * A248972 A077563 A055256
KEYWORD
nonn,tabl
AUTHOR
Gary W. Adamson, May 01 2008
EXTENSIONS
More terms from Michel Marcus, Feb 11 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 April 16 01:40 EDT 2024. Contains 371696 sequences. (Running on oeis4.)