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.

A138473 a(n) = Fibonacci(8*n).

Original entry on oeis.org

0, 21, 987, 46368, 2178309, 102334155, 4807526976, 225851433717, 10610209857723, 498454011879264, 23416728348467685, 1100087778366101931, 51680708854858323072, 2427893228399975082453, 114059301025943970552219, 5358359254990966640871840
Offset: 0

Views

Author

Zerinvary Lajos, May 09 2008

Keywords

Crossrefs

Programs

  • Magma
    [Fibonacci(8*n): n in [0..100]]; // Vincenzo Librandi, Apr 17 2011
    
  • Mathematica
    Fibonacci[8Range[0,20]] (* Harvey P. Dale, Jun 22 2013 *)
  • MuPAD
    numlib::fibonacci(8*n) $ n = 0..25;
    
  • PARI
    concat(0, Vec(21*x / (1 - 47*x + x^2) + O(x^30))) \\ Colin Barker, Apr 06 2017
  • Sage
    [fibonacci(8*n) for n in range(0, 15)] # Zerinvary Lajos, May 15 2009
    

Formula

a(n) = Fibonacci(4*n)*Lucas(4*n) = 21*A049668(n).
G.f.: 21*x / ( 1-47*x+x^2 ). - R. J. Mathar, Sep 30 2013
From Colin Barker, Apr 06 2017: (Start)
a(n) = (47 + 21*sqrt(5))^(1-n)*(-2^n+(2207 + 987*sqrt(5))^n) / (105 + 47*sqrt(5)).
a(n) = 47*a(n-1) - a(n-2) for n > 1.
(End)