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.

A294327 a(n) = ((9*n + 8)*10^n - 8)/9.

Original entry on oeis.org

0, 18, 288, 3888, 48888, 588888, 6888888, 78888888, 888888888, 9888888888, 108888888888, 1188888888888, 12888888888888, 138888888888888, 1488888888888888, 15888888888888888, 168888888888888888, 1788888888888888888, 18888888888888888888, 198888888888888888888
Offset: 0

Views

Author

Seiichi Manyama, Oct 28 2017

Keywords

Crossrefs

Programs

  • PARI
    concat(0, Vec(18*x*(1 - 5*x) / ((1 - x)*(1 - 10*x)^2) + O(x^30))) \\ Colin Barker, Oct 28 2017

Formula

From Colin Barker, Oct 28 2017: (Start)
G.f.: 18*x*(1 - 5*x) / ((1 - x)*(1 - 10*x)^2).
a(n) = 21*a(n-1) - 120*a(n-2) + 100*a(n-3) for n>2.
(End)