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.

A247842 a(n) = Sum_{k=2..n} 9^k.

Original entry on oeis.org

0, 81, 810, 7371, 66420, 597861, 5380830, 48427551, 435848040, 3922632441, 35303692050, 317733228531, 2859599056860, 25736391511821, 231627523606470, 2084647712458311, 18761829412124880, 168856464709124001, 1519708182382116090, 13677373641439044891
Offset: 1

Views

Author

Vincenzo Librandi, Sep 25 2014

Keywords

Crossrefs

Cf. similar sequences listed in A247817.
Cf. A052386.

Programs

  • Magma
    [0] cat [&+[9^k: k in [2..n]]: n in [2..30]];
    
  • Magma
    [(9^(n+1)-81)/8: n in [1..30]];
  • Maple
    A247842:=n->add(9^k, k=2..n): seq(A247842(n), n=1..30); # Wesley Ivan Hurt, Sep 26 2014
  • Mathematica
    RecurrenceTable[{a[1] == 0, a[n] == a[n-1] + 9^n}, a, {n, 30}] (* or *) CoefficientList[Series[81 x / ((1 - x) (1 - 9 x)), {x, 0, 30}], x]

Formula

G.f.: 81*x^2/((1-x)*(1-9*x)).
a(n) = a(n-1) + 9^n = (9^(n+1) - 81)/8 = 10*a(n-1) - 9*a(n-2).
a(n) = A052386(n) - 9. - Michel Marcus, Sep 25 2014