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”).

A320990
Fibonacci rabbit sequence number n coded in base eight.
2
0, 1, 8, 65, 4168, 2134081, 69929570376, 1173223506987487297, 644986443956439734064225751112, 5948949931338226254069168911286743617840154185793, 30164759804754346385078845671118798583946045417223576862481934288047850387443784
OFFSET
0,3
LINKS
MAPLE
b:= proc(n) option remember; `if`(n<2, [n$2], [b(n-1)[1]*
8^b(n-1)[2]+b(n-2)[1], b(n-1)[2]+b(n-2)[2]])
end:
a:= n-> b(n)[1]:
seq(a(n), n=0..11);
CROSSREFS
Column k=8 of A144287.
Sequence in context: A302316 A041114 A360847 * A015496 A226126 A039329
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Oct 25 2018
STATUS
approved