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.

A173535 a(n) = (1/11) * (5*12^n + 6).

Original entry on oeis.org

1, 6, 66, 786, 9426, 113106, 1357266, 16287186, 195446226, 2345354706, 28144256466, 337731077586, 4052772931026, 48633275172306, 583599302067666, 7003191624811986, 84038299497743826, 1008459593972925906, 12101515127675110866
Offset: 0

Views

Author

Vincenzo Librandi, Nov 23 2010

Keywords

Crossrefs

Essentially the same as A127858.

Programs

  • Magma
    [(1/11)*(5*12^n + 6): n in [0..20]]; // Vincenzo Librandi, Sep 28 2013
  • Mathematica
    Table[(1/11) (5 12^n + 6), {n, 0, 20}] (* or *) CoefficientList[Series[(1 - 7 x)/((1 - x) (1 - 12 x)), {x, 0, 40}], x] (* Vincenzo Librandi, Sep 28 2013 *)

Formula

a(n) = 12*a(n-1) - 6, a(0)=1.
G.f.: (1-7*x)/((1-x)*(1-12*x)). - Vincenzo Librandi, Sep 28 2013

Extensions

Changed offset from 1 to 0 by, added 1 by Vincenzo Librandi, Sep 28 2013