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.

A164553 a(n) = 14*a(n-1)-43*a(n-2) for n > 1; a(0) = 1, a(1) = 11.

Original entry on oeis.org

1, 11, 111, 1081, 10361, 98571, 934471, 8844041, 83634321, 790586731, 7471938431, 70611908601, 667273367881, 6305515080491, 59584456307991, 563045239850761, 5320501736667041, 50276078999755851, 475083531319899151
Offset: 0

Views

Author

Klaus Brockhaus, Aug 15 2009

Keywords

Comments

Binomial transform of A164552.

Crossrefs

Cf. A164552.

Programs

  • Magma
    [ n le 2 select 10*n-9 else 14*Self(n-1)-43*Self(n-2): n in [1..19] ];
  • Mathematica
    LinearRecurrence[{14,-43},{1,11},30] (* Harvey P. Dale, Mar 10 2013 *)

Formula

a(n) = ((3+2*sqrt(6))*(7+sqrt(6))^n+(3-2*sqrt(6))*(7-sqrt(6))^n)/6.
G.f.: (1-3*x)/(1-14*x+43*x^2).