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.

A229284 Number of ascending runs in {1,...,10}^n.

Original entry on oeis.org

0, 10, 155, 2100, 26500, 320000, 3750000, 43000000, 485000000, 5400000000, 59500000000, 650000000000, 7050000000000, 76000000000000, 815000000000000, 8700000000000000, 92500000000000000, 980000000000000000, 10350000000000000000, 109000000000000000000
Offset: 0

Views

Author

Alois P. Heinz, Sep 18 2013

Keywords

Crossrefs

Column k=10 of A229079.

Programs

  • Maple
    a:= n-> `if`(n=0, 0, 10^(n-1)*(11*n+9)/2):
    seq(a(n), n=0..30);

Formula

G.f.: -5*(9*x-2)*x/(10*x-1)^2.
a(n) = 10^(n-1)*(11*n+9)/2 for n>0, a(0) = 0.