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.

A140730 a(4*n)=5^n, a(4*n+1)=2*5^n, a(4*n+2)=3*5^n, a(4*n+3)=4*5^n.

Original entry on oeis.org

1, 2, 3, 4, 5, 10, 15, 20, 25, 50, 75, 100, 125, 250, 375, 500, 625, 1250, 1875, 2500, 3125, 6250, 9375, 12500, 15625, 31250, 46875, 62500, 78125, 156250, 234375, 312500, 390625, 781250, 1171875, 1562500, 1953125, 3906250, 5859375, 7812500
Offset: 0

Views

Author

Reinhard Zumkeller, May 26 2008

Keywords

Crossrefs

Programs

Formula

a(n+1) = a(n) + a(n - n mod 4).
a(n) = A140740(n+4,4).
O.g.f.: (1+2*x+3*x^2+4*x^3)/(1-5*x^4). - R. J. Mathar, May 31 2008
a(n) = (n+1-4*floor(n/4))*5^floor(n/4). - Luce ETIENNE, Aug 05 2015
a(n) = 5*a(n-4) for n>3; a(n) = n+1 for n<5. - Bruno Berselli, Aug 05 2015
Sum_{n>=0} 1/a(n) = 125/48. - Amiram Eldar, Jan 21 2022