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.

A126431 a(n) = n*10^n.

Original entry on oeis.org

0, 10, 200, 3000, 40000, 500000, 6000000, 70000000, 800000000, 9000000000, 100000000000, 1100000000000, 12000000000000, 130000000000000, 1400000000000000, 15000000000000000, 160000000000000000, 1700000000000000000, 18000000000000000000, 190000000000000000000
Offset: 0

Views

Author

Jonathan R. Love (japanada11(AT)yahoo.ca), Mar 11 2007

Keywords

Crossrefs

Cf. A011557.

Programs

Formula

a(0)=0, a(1)=10; for n > 1, a(n) = 20*a(n-1) - 100*a(n-2). - Harvey P. Dale, Mar 30 2012
G.f.: 10*x/(1 - 10*x)^2. - Vincenzo Librandi, Sep 09 2014
From Amiram Eldar, Jul 20 2020: (Start)
Sum_{n>=1} 1/a(n) = log(10/9).
Sum_{n>=1} (-1)^(n+1)/a(n) = log(11/10). (End)
From Elmo R. Oliveira, Sep 07 2024: (Start)
E.g.f.: 10*x*exp(10*x).
a(n) = n*A011557(n). (End)