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.

Showing 1-1 of 1 results.

A206612 Fibonacci sequence beginning 13, 6.

Original entry on oeis.org

13, 6, 19, 25, 44, 69, 113, 182, 295, 477, 772, 1249, 2021, 3270, 5291, 8561, 13852, 22413, 36265, 58678, 94943, 153621, 248564, 402185, 650749, 1052934, 1703683, 2756617, 4460300, 7216917, 11677217, 18894134, 30571351, 49465485, 80036836, 129502321
Offset: 1

Views

Author

Keywords

Crossrefs

Programs

  • Magma
    I:=[13, 6]; [n le 2 select I[n] else Self(n-1)+Self(n-2): n in [1..40]]; // Vincenzo Librandi, Feb 17 2012
    
  • Mathematica
    LinearRecurrence[{1, 1}, {13, 6}, 80]
  • PARI
    Vec((13 - 7*x)/(1 - x - x^2) + O(x^30)) \\ Andrew Howroyd, Aug 28 2018

Formula

From Andrew Howroyd, Aug 28 2018: (Start)
a(n) = a(n-1) + a(n-2) for n > 2.
a(n) = 13*Fibonacci(n) - 7*Fibonacci(n-1).
G.f.: x*(13 - 7*x)/(1 - x - x^2).
(End)
Showing 1-1 of 1 results.