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.

A013783 a(n) = 5^(4*n + 3).

Original entry on oeis.org

125, 78125, 48828125, 30517578125, 19073486328125, 11920928955078125, 7450580596923828125, 4656612873077392578125, 2910383045673370361328125, 1818989403545856475830078125, 1136868377216160297393798828125
Offset: 0

Views

Author

Keywords

Crossrefs

Subsequence of A000351.

Programs

  • Magma
    [5^(4*n+3): n in [0..15]]; // Vincenzo Librandi, Jun 28 2011
  • Mathematica
    5^(4*Range[0,20]+3) (* or *) NestList[625#&,125,20] (* Harvey P. Dale, Aug 14 2018 *)

Formula

From Philippe Deléham, Nov 30 2008: (Start)
a(n) = 625*a(n-1); a(0)=125.
G.f.: 125/(1-625*x).
a(n) = 25*A013782(n). (End)