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.

A193577 a(n) = 5*7^n.

Original entry on oeis.org

5, 35, 245, 1715, 12005, 84035, 588245, 4117715, 28824005, 201768035, 1412376245, 9886633715, 69206436005, 484445052035, 3391115364245, 23737807549715, 166164652848005, 1163152569936035, 8142067989552245, 56994475926865715
Offset: 0

Views

Author

Vincenzo Librandi, Sep 15 2011

Keywords

Crossrefs

Programs

  • Magma
    [5*7^n: n in [0..20]];
  • Mathematica
    5 7^Range[0,20] (* or *) NestList[7#&,5,20] (* Harvey P. Dale, Dec 10 2017 *)

Formula

G.f.: 5/(1-7*x).
a(n) = 7*a(n-1), a(0)=5.