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.

A168575 a(n) = (10^n + 1)^3.

Original entry on oeis.org

8, 1331, 1030301, 1003003001, 1000300030001, 1000030000300001, 1000003000003000001, 1000000300000030000001, 1000000030000000300000001, 1000000003000000003000000001, 1000000000300000000030000000001
Offset: 0

Views

Author

Jason Earls, Nov 30 2009

Keywords

Programs

  • Mathematica
    Table[(10^n+1)^3, {n,0,25}] (* G. C. Greubel, Jul 26 2016 *)
    LinearRecurrence[{1111,-112110,1111000,-1000000},{8,1331,1030301,1003003001},20] (* Harvey P. Dale, Dec 31 2018 *)
  • PARI
    for(n=0,12,print1((10^n+1)^3","))