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.

A124166 a(n) = 100*(10^n - 1)/9.

Original entry on oeis.org

0, 100, 1100, 11100, 111100, 1111100, 11111100, 111111100, 1111111100, 11111111100, 111111111100, 1111111111100, 11111111111100, 111111111111100, 1111111111111100, 11111111111111100, 111111111111111100, 1111111111111111100, 11111111111111111100, 111111111111111111100
Offset: 0

Views

Author

Zerinvary Lajos, Dec 02 2006

Keywords

Crossrefs

Programs

  • Maple
    a:=n->sum (10^(n-j+2),j=0..n): seq(a(n),n=0..28);
  • Mathematica
    Table[FromDigits[PadLeft[{0,0},n,1]],{n,2,20}] (* Harvey P. Dale, Jul 24 2012 *)
  • PARI
    concat(0, Vec(100*x/((1-x)*(1-10*x)) + O(x^20))) \\ Elmo R. Oliveira, Jun 18 2025

Formula

From Elmo R. Oliveira, Jun 18 2025: (Start)
G.f.: 100*x/((10*x-1)*(x-1)).
E.g.f.: 100*exp(x)*(exp(9*x) - 1)/9.
a(n) = 100*A002275(n) = 10*A105279(n).
a(n) = A161770(n)/10 for n >= 1.
a(n) = 11*a(n-1) - 10*a(n-2). (End)

Extensions

More terms from Elmo R. Oliveira, Jun 18 2025