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

A320988
Fibonacci rabbit sequence number n coded in base six.
2
0, 1, 6, 37, 1338, 289045, 2247615258, 3775130549469973, 49305824977081270580396826, 1081619448805341465793189347926225612555029, 309896735146874396575135322682564794037430646677718800894678718858010
OFFSET
0,3
LINKS
MAPLE
b:= proc(n) option remember; `if`(n<2, [n$2], [b(n-1)[1]*
6^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=6 of A144287.
Sequence in context: A211988 A285934 A083373 * A015492 A243843 A039293
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Oct 25 2018
STATUS
approved