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.

A320988 Fibonacci rabbit sequence number n coded in base six.

Original entry on oeis.org

0, 1, 6, 37, 1338, 289045, 2247615258, 3775130549469973, 49305824977081270580396826, 1081619448805341465793189347926225612555029, 309896735146874396575135322682564794037430646677718800894678718858010
Offset: 0

Views

Author

Alois P. Heinz, Oct 25 2018

Keywords

Crossrefs

Column k=6 of A144287.

Programs

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