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.

A022139 Fibonacci sequence beginning 5, 14.

Original entry on oeis.org

5, 14, 19, 33, 52, 85, 137, 222, 359, 581, 940, 1521, 2461, 3982, 6443, 10425, 16868, 27293, 44161, 71454, 115615, 187069, 302684, 489753, 792437, 1282190, 2074627, 3356817, 5431444, 8788261, 14219705, 23007966, 37227671, 60235637, 97463308, 157698945
Offset: 0

Views

Author

Keywords

Crossrefs

Programs

  • Mathematica
    Transpose[NestList[{#[[2]],#[[1]]+#[[2]]}&,{5,14},30]][[1]]  (* Harvey P. Dale, Feb 07 2011 *)
    LinearRecurrence[{1,1},{5,14},40](* Harvey P. Dale, Apr 15 2015 *)

Formula

G.f.: (5+9x)/(1-x-x^2). - Philippe Deléham, Nov 20 2008
a(0)=5, a(1)=14, a(n)=a(n-1)+a(n-2). - Harvey P. Dale, Apr 15 2015
a(n) = Fibonacci(n+6) - Lucas(n-2). - Greg Dresden and Tyler Zidlicky, Mar 01 2022