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.

A171553 a(n) = 9*10^n + 100^n + 1.

Original entry on oeis.org

11, 191, 10901, 1009001, 100090001, 10000900001, 1000009000001, 100000090000001, 10000000900000001, 1000000009000000001, 100000000090000000001, 10000000000900000000001, 1000000000009000000000001, 100000000000090000000000001, 10000000000000900000000000001
Offset: 0

Views

Author

Jason Earls, Dec 11 2009

Keywords

Crossrefs

Cf. A100459.

Programs

  • Magma
    [1+9*10^n+100^n: n in [0..15]]; // Vincenzo Librandi, Jul 29 2014
    
  • Mathematica
    Join[{11}, Table[FromDigits[Join[{1}, PadRight[{}, n, 0], {9}, PadRight[{}, n, 0], {1}]], {n, 0, 20}]] (* Harvey P. Dale, Apr 26 2013 *)
    Table[100^n + 9 * 10^n + 1, {n, 0, 19}] (* Alonso del Arte, Jul 28 2014 *)
  • PARI
    Vec(-(1910*x^2-1030*x+11)/((x-1)*(10*x-1)*(100*x-1)) + O(x^100)) \\ Colin Barker, Jul 29 2014

Formula

G.f.: -(1910*x^2-1030*x+11) / ((x-1)*(10*x-1)*(100*x-1)). - Colin Barker, Jul 29 2014
From Elmo R. Oliveira, Sep 06 2024: (Start)
E.g.f.: exp(x)*(9*exp(9*x) + exp(99*x) + 1).
a(n) = 111*a(n-1) - 1110*a(n-2) + 1000*a(n-3) for n > 2. (End)

Extensions

More terms from Harvey P. Dale, Apr 26 2013