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

A320986
Fibonacci rabbit sequence number n coded in base four.
2
0, 1, 4, 17, 276, 17681, 18105620, 1186569930001, 79629360058944734484, 350213629188686097286494407640337, 103364819020299355365011185381334444307580296786887956
OFFSET
0,3
LINKS
MAPLE
b:= proc(n) option remember; `if`(n<2, [n$2], [b(n-1)[1]*
4^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=4 of A144287.
Sequence in context: A032083 A126776 A214143 * A302145 A015489 A153061
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Oct 25 2018
STATUS
approved