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.

A206610 Fibonacci sequence beginning 13, 8.

Original entry on oeis.org

13, 8, 21, 29, 50, 79, 129, 208, 337, 545, 882, 1427, 2309, 3736, 6045, 9781, 15826, 25607, 41433, 67040, 108473, 175513, 283986, 459499, 743485, 1202984, 1946469, 3149453, 5095922, 8245375, 13341297, 21586672, 34927969, 56514641, 91442610, 147957251
Offset: 1

Views

Author

Keywords

Crossrefs

Programs

  • Magma
    I:=[13, 8]; [n le 2 select I[n] else Self(n-1)+Self(n-2): n in [1..40]]; // Vincenzo Librandi, Feb 16 2012
  • Mathematica
    LinearRecurrence[{1, 1}, {13, 8}, 80]