login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A077537
Sum of next F(n) Fibonacci numbers, where F(n) = n-th Fibonacci number.
1
0, 1, 1, 5, 26, 343, 17334, 9209754, 225842206252, 2880066968519382403, 898923707005599922079920034025, 3577855662560905980740035806138759999587547050967, 4444705723234237498833973519979330664270869912654770206838250657106420149314752
OFFSET
0,4
LINKS
FORMULA
First differences of A005370 = F(F(n+1)+1). - Antonio G. Astudillo (afg_astudillo(AT)hotmail.com), Nov 17 2002
EXAMPLE
a(0) =0, a(1) = 1, a(2) = 1, a(3) = 2+3 = 5, a(4) = 5+8+13=26, etc.
MAPLE
with(combinat, fibonacci): A077537 := n -> fibonacci(fibonacci(n+2)+1)-fibonacci(fibonacci(n+1)+1);
# second Maple program:
F:= n-> (<<0|1>, <1|1>>^n)[1, 2]:
a:= n-> F(F(n+2)+1)-F(F(n+1)+1):
seq(a(n), n=0..14); # Alois P. Heinz, Nov 05 2015
CROSSREFS
Cf. A000045.
Sequence in context: A106296 A295114 A060516 * A140423 A324419 A090644
KEYWORD
nonn
AUTHOR
Amarnath Murthy, Nov 08 2002
EXTENSIONS
More terms from Antonio G. Astudillo (afg_astudillo(AT)hotmail.com), Nov 17 2002
STATUS
approved