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

A320987
Fibonacci rabbit sequence number n coded in base five.
2
0, 1, 5, 26, 655, 81901, 255941280, 99977062581901, 122042312722047375081905, 58194309578918159047081570466564535026, 33873546390630164560327289199086683235486077084641297863363155
OFFSET
0,3
LINKS
MAPLE
b:= proc(n) option remember; `if`(n<2, [n$2], [b(n-1)[1]*
5^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=5 of A144287.
Sequence in context: A196951 A156217 A156216 * A015490 A118366 A226125
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Oct 25 2018
STATUS
approved