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.

A091903 Expansion of x/((1+5x)(1-10x)).

Original entry on oeis.org

0, 1, 5, 75, 625, 6875, 65625, 671875, 6640625, 66796875, 666015625, 6669921875, 66650390625, 666748046875, 6666259765625, 66668701171875, 666656494140625, 6666717529296875, 66666412353515625, 666667938232421875
Offset: 0

Views

Author

Paul Barry, Feb 10 2004

Keywords

Comments

a(n)=A091883(n+1)/50; a(n)/a(n+1)->1/10.

Programs

  • Mathematica
    CoefficientList[Series[x/((1+5x)(1-10x)),{x,0,30}],x] (* or *) LinearRecurrence[ {5,50},{0,1},30] (* Harvey P. Dale, Mar 13 2013 *)

Formula

a(n)=10^n/15-(-5)^n/15
a(0)=0, a(1)=1, a(n)=5*a(n-1)+50*a(n-2). - Harvey P. Dale, Mar 13 2013
a(n) = 5^(n-1)*A001045(n). - R. J. Mathar, Mar 08 2021