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.

A320986 Fibonacci rabbit sequence number n coded in base four.

Original entry on oeis.org

0, 1, 4, 17, 276, 17681, 18105620, 1186569930001, 79629360058944734484, 350213629188686097286494407640337, 103364819020299355365011185381334444307580296786887956
Offset: 0

Views

Author

Alois P. Heinz, Oct 25 2018

Keywords

Crossrefs

Column k=4 of A144287.

Programs

  • Maple
    b:= proc(n) option remember; `if`(n<2, [n$2], [b(n-1)[1]*
          4^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);