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.

A172525 a(n) = 111111111 * n.

Original entry on oeis.org

111111111, 222222222, 333333333, 444444444, 555555555, 666666666, 777777777, 888888888, 999999999, 1111111110, 1222222221, 1333333332, 1444444443, 1555555554, 1666666665, 1777777776, 1888888887, 1999999998, 2111111109, 2222222220, 2333333331, 2444444442, 2555555553
Offset: 1

Views

Author

Vincenzo Librandi, Feb 06 2010

Keywords

Crossrefs

Programs

  • Magma
    [9*n*12345679: n in [1..20]]; // Vincenzo Librandi, Aug 20 2014
    
  • Mathematica
    Table[9 n 12345679, {n, 1, 20}] (* Vincenzo Librandi, Aug 20 2014 *)
    LinearRecurrence[{2,-1},{111111111,222222222},20] (* Harvey P. Dale, Sep 10 2023 *)
  • PARI
    Vec(111111111*x/(x-1)^2 + O(x^100)) \\ Colin Barker, Aug 20 2014

Formula

From Colin Barker, Aug 20 2014: (Start)
a(n) = 2*a(n-1) - a(n-2).
G.f.: 111111111*x/(x-1)^2. (End)
From Elmo R. Oliveira, Jun 25 2025: (Start)
E.g.f.: 111111111*x*exp(x).
a(n) = 12345679*A008591(n). (End)