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!)
A132919 Triangle read by rows: T(n,k) = Fibonacci(n) + k - 1. 2
1, 1, 2, 2, 3, 4, 3, 4, 5, 6, 5, 6, 7, 8, 9, 8, 9, 10, 11, 12, 13, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 34, 35, 36, 37, 38, 39, 40, 41, 42, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
Left border = Fibonacci numbers, right border = A081659.
Infinite lower triangular matrix by rows: n-th row = n terms of: F(n) followed by (F(n) + 1), (F(n) + 2), (F(n) + 3), ...
LINKS
Andrew Howroyd, Table of n, a(n) for n = 1..1275 (rows 1..50)
EXAMPLE
First few rows of the triangle:
1;
1, 2;
2, 3, 4;
3, 4, 5, 6;
5, 6, 7, 8, 9;
8, 9, 10, 11, 12, 13;
...
PROG
(PARI) T(n, k) = if(k<=n, fibonacci(n) + k - 1, 0); \\ Andrew Howroyd, Aug 10 2018
CROSSREFS
Row sums are A132920.
Sequence in context: A051162 A122872 A356998 * A162619 A259196 A357589
KEYWORD
nonn,tabl
AUTHOR
Gary W. Adamson, Sep 05 2007
EXTENSIONS
Name changed and terms a(56) and beyond from Andrew Howroyd, Aug 10 2018
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 27 17:22 EDT 2024. Contains 372020 sequences. (Running on oeis4.)