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

A320989
Fibonacci rabbit sequence number n coded in base seven.
2
0, 1, 7, 50, 2457, 842801, 14164958864, 81658169024988865, 7911779188478711198209076919, 4419091543264985265125879423229594334610523298, 239147782774557159658813554446871692442583155391399547503168277134702036921
OFFSET
0,3
LINKS
MAPLE
b:= proc(n) option remember; `if`(n<2, [n$2], [b(n-1)[1]*
7^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=7 of A144287.
Sequence in context: A204463 A041086 A197890 * A015495 A056581 A039308
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Oct 25 2018
STATUS
approved