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.

A276352 a(n) = 100^n - 10^n.

Original entry on oeis.org

0, 90, 9900, 999000, 99990000, 9999900000, 999999000000, 99999990000000, 9999999900000000, 999999999000000000, 99999999990000000000, 9999999999900000000000, 999999999999000000000000, 99999999999990000000000000, 9999999999999900000000000000, 999999999999999000000000000000
Offset: 0

Views

Author

Carauleanu Marc, Aug 31 2016

Keywords

Crossrefs

Programs

Formula

a(n) = floor((1000^n)/(10^n + 1)).
a(n) = A002283(n)*A011557(n).
a(n) = 9*A138147(n), for n>0.
a(n) = A168624(n) - 1.
a(n) = Sum_{k=1..n} 9*10^(2n-k).
a(n) = ((10^n)*A002283(2n))/(10^n + 1).
From Chai Wah Wu, Sep 01 2016: (Start)
a(n) = 110*a(n-1) - 1000*a(n-2) for n > 1.
G.f.: 90*x/((10*x - 1)*(100*x - 1)). (End)
E.g.f.: exp(10*x)*(exp(90*x) - 1). - Elmo R. Oliveira, Aug 14 2024