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.

A128043 (n^3+n)*6^n.

Original entry on oeis.org

12, 360, 6480, 88128, 1010880, 10357632, 97977600, 873400320, 7437339648, 61070837760, 486873649152, 3787601264640, 28864133775360, 216128364576768, 1593927097712640, 11600403939459072, 83448431062548480
Offset: 1

Views

Author

Mohammad K. Azarian, May 02 2007

Keywords

Crossrefs

Programs

  • Magma
    [(n^3 + n)*6^n: n in [1..20]]; // Vincenzo Librandi, Feb 22 2013
  • Mathematica
    Table[(n^3 + n) * 6^n, {n, 30}] (* or *) CoefficientList[Series[12 (1 + 6 x + 36 x^2)/(1 - 6 x)^4, {x, 0, 30}], x] (* Vincenzo Librandi, Feb 22 2013 *)

Formula

G.f.: 12*x*(1 + 6*x + 36*x^2)/(1 - 6*x)^4. - Vincenzo Librandi, Feb 22 2013