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.

A320990 Fibonacci rabbit sequence number n coded in base eight.

Original entry on oeis.org

0, 1, 8, 65, 4168, 2134081, 69929570376, 1173223506987487297, 644986443956439734064225751112, 5948949931338226254069168911286743617840154185793, 30164759804754346385078845671118798583946045417223576862481934288047850387443784
Offset: 0

Views

Author

Alois P. Heinz, Oct 25 2018

Keywords

Crossrefs

Column k=8 of A144287.

Programs

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