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.

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

Original entry on oeis.org

1, 2, 3, 10, 22, 51, 125, 293, 696, 1657, 3928, 9330, 22157, 52601, 124905, 296578, 704191, 1672062, 3970178, 9426875, 22383417, 53147701, 126195160, 299640813, 711474236, 1689341342, 4011212253, 9524317645, 22614766177, 53697038226, 127499523515
Offset: 1

Views

Author

Harvey P. Dale, Apr 26 2017

Keywords

Programs

  • Mathematica
    LinearRecurrence[{1,2,3},{1,2,3},50]

Formula

G.f.: x*(x^2-x-1)/(3*x^3+2*x^2+x-1).