cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A320987 Fibonacci rabbit sequence number n coded in base five.

Original entry on oeis.org

0, 1, 5, 26, 655, 81901, 255941280, 99977062581901, 122042312722047375081905, 58194309578918159047081570466564535026, 33873546390630164560327289199086683235486077084641297863363155
Offset: 0

Views

Author

Alois P. Heinz, Oct 25 2018

Keywords

Crossrefs

Column k=5 of A144287.

Programs

  • 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);