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.

A190956 a(n) = 10*a(n-1) + 6*a(n-2), with a(0)=0, a(1)=1.

Original entry on oeis.org

0, 1, 10, 106, 1120, 11836, 125080, 1321816, 13968640, 147617296, 1559984800, 16485551776, 174215426560, 1841067576256, 19455968321920, 205606088676736, 2172796696698880, 22961603499049216, 242652815170685440, 2564297772701149696, 27098894618035609600
Offset: 0

Views

Author

Keywords

Programs

  • Magma
    I:=[0,1]; [n le 2 select I[n] else 10*Self(n-1) + 6*Self(n-2): n in [1..30]]; G. C. Greubel, Jan 25 2018
  • Mathematica
    LinearRecurrence[{10,6}, {0,1}, 50]
  • PARI
    x='x+O('x^30); concat([0], Vec(x/(1-10*x-6*x^2))) \\ G. C. Greubel, Jan 25 2018
    

Formula

G.f.: x/(1 - 10*x - 6*x^2). - R. J. Mathar, Jun 01 2011