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

A320991
Fibonacci rabbit sequence number n coded in base nine.
2
0, 1, 9, 82, 6651, 4848661, 286308590040, 12324645995360107501, 31327596501857712343958159785869, 3427833941153173630835645403655873661712817810325122, 953377933333360661538750693295319059526691048970554893790972688729398538561592385711
OFFSET
0,3
LINKS
MAPLE
b:= proc(n) option remember; `if`(n<2, [n$2], [b(n-1)[1]*
9^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=9 of A144287.
Sequence in context: A308668 A308481 A041146 * A015497 A174472 A039357
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Oct 25 2018
STATUS
approved