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!)
A131411 Triangle read by rows: T(n,k) = Fibonacci(n) + Fibonacci(k) - 1. 2
1, 1, 1, 2, 2, 3, 3, 3, 4, 5, 5, 5, 6, 7, 9, 8, 8, 9, 10, 12, 15, 13, 13, 14, 15, 17, 20, 25, 21, 21, 22, 23, 25, 28, 33, 41, 34, 34, 35, 36, 38, 41, 46, 54, 67, 55, 55, 56, 57, 59, 62, 67, 75, 88, 109, 89, 89, 90, 91, 93, 96, 101, 109, 122, 143, 177, 144, 144, 145, 146, 148, 151, 156, 164, 177, 198, 232, 287 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,4
COMMENTS
Left column = Fibonacci numbers. Right column = A001595: (1, 1, 3, 5, 9, 15, 25,...).
Row sums = A131412: (1, 2, 7, 15, 32, 62, 117, 214,...).
LINKS
Andrew Howroyd, Table of n, a(n) for n = 1..1275 (rows 1..50)
FORMULA
Equals A131410 + A104763 - A000012 as infinite lower triangular matrices.
EXAMPLE
First few rows of the triangle are:
1;
1, 1;
2, 2, 3;
3, 3, 4, 5;
5, 5, 6, 7, 9;
8, 8, 9, 10, 12, 15;
13, 13, 14, 15, 17, 20, 25;
21, 21, 22, 23, 25, 28, 33, 41;
...
MATHEMATICA
With[{F=Fibonacci}, Table[F[n]+F[k]-1, {n, 15}, {k, n}]//Flatten] (* G. C. Greubel, Jul 13 2019 *)
PROG
(PARI) T(n, k) = if(k<=n, fibonacci(n) + fibonacci(k) - 1, 0); \\ Andrew Howroyd, Aug 10 2018
(Magma) F:=Fibonacci; [F(n)+F(k)-1: k in [1..n], n in [1..15]]; // G. C. Greubel, Jul 13 2019
(Sage) f=fibonacci; [[f(n)+f(k)-1 for k in (1..n)] for n in (1..15)] # G. C. Greubel, Jul 13 2019
(GAP) F:=Fibonacci;; Flat(List([1..15], n-> List([1..n], k-> F(n) +F(k) -1 ))); # G. C. Greubel, Jul 13 2019
CROSSREFS
Row sums are A131412.
Sequence in context: A226222 A140473 A115384 * A300068 A194202 A261224
KEYWORD
nonn,tabl
AUTHOR
Gary W. Adamson, Jul 08 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 19 16:08 EDT 2024. Contains 371794 sequences. (Running on oeis4.)