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.

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

Original entry on oeis.org

5, 3, 30, 159, 885, 4902, 27165, 150531, 834150, 4622343, 25614165, 141937854, 786531765, 4358472387, 24151957230, 133835203311, 741631888245, 4109665051158, 22773220920525, 126195099756099, 699295161542070, 3875061106978647, 21473191019519445
Offset: 1

Views

Author

Harvey P. Dale, Apr 26 2011

Keywords

Crossrefs

Programs

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

Formula

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