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.

A320989 Fibonacci rabbit sequence number n coded in base seven.

Original entry on oeis.org

0, 1, 7, 50, 2457, 842801, 14164958864, 81658169024988865, 7911779188478711198209076919, 4419091543264985265125879423229594334610523298, 239147782774557159658813554446871692442583155391399547503168277134702036921
Offset: 0

Views

Author

Alois P. Heinz, Oct 25 2018

Keywords

Crossrefs

Column k=7 of A144287.

Programs

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