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.

A189734 a(1)=2, a(2)=5, a(n)=2*a(n-1) + 5*a(n-2).

Original entry on oeis.org

2, 5, 20, 65, 230, 785, 2720, 9365, 32330, 111485, 384620, 1326665, 4576430, 15786185, 54454520, 187839965, 647952530, 2235104885, 7709972420, 26595469265, 91740800630, 316458947585, 1091621898320, 3765538534565, 12989186560730, 44806065794285
Offset: 1

Views

Author

Harvey P. Dale, Apr 26 2011

Keywords

Crossrefs

Programs

  • Mathematica
    LinearRecurrence[{2,5},{2,5},40]
  • Maxima
    a[1]:2$ a[2]:5$ a[n]:=2*a[n-1]+5*a[n-2]$ makelist(a[n], n, 1, 26); /* Bruno Berselli, May 24 2011 */

Formula

G.f.: x*(2+x)/(1-2*x-5*x^2). - Bruno Berselli, May 24 2011