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.

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

Original entry on oeis.org

5, 5, 50, 275, 1625, 9500, 55625, 325625, 1906250, 11159375, 65328125, 382437500, 2238828125, 13106328125, 76725781250, 449160546875, 2629431640625, 15392960937500, 90111962890625, 527524619140625, 3088182910156250, 18078537646484375, 105833602783203125
Offset: 1

Views

Author

Harvey P. Dale, Apr 26 2011

Keywords

Crossrefs

Programs

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

Formula

G.f.: 5*x*(1-4*x)/(1-5*x-5*x^2). - Bruno Berselli, May 24 2011
a(n) = 5*A188168(n). - R. J. Mathar, Feb 13 2020