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.

A097136 a(n) = 3*Fibonacci(2*n) + 1.

Original entry on oeis.org

1, 4, 10, 25, 64, 166, 433, 1132, 2962, 7753, 20296, 53134, 139105, 364180, 953434, 2496121, 6534928, 17108662, 44791057, 117264508, 307002466, 803742889, 2104226200, 5508935710, 14422580929, 37758807076, 98853840298, 258802713817, 677554301152
Offset: 0

Views

Author

Paul Barry, Jul 26 2004

Keywords

Comments

Binomial transform of A097135.

Crossrefs

Cf. A000045.

Programs

  • Mathematica
    Table[3*Fibonacci[2n]+1,{n,0,30}] (* or *) LinearRecurrence[{4,-4,1},{1,4,10},30] (* Harvey P. Dale, May 25 2018 *)
  • PARI
    Vec((1-2*x^2)/((1-x)*(1-3*x+x^2)) + O(x^30)) \\ Colin Barker, Nov 02 2016

Formula

G.f.: (1-2*x^2) / ((1-x)*(1-3*x+x^2)).
a(n) = 4*a(n-1) - 4*a(n-2) + a(n-3).
a(n) = 1+3((3+sqrt(5))/2)^n/sqrt(5)-3((3-sqrt(5))/2)^n/sqrt(5).
a(n) = A097132(2*n) = A097133(2*n).