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.

A128788 a(n) = n^2*9^n.

Original entry on oeis.org

0, 9, 324, 6561, 104976, 1476225, 19131876, 234365481, 2754990144, 31381059609, 348678440100, 3797108212689, 40669853253264, 429575324987601, 4483851321172356, 46325504721296025, 474373168346071296
Offset: 0

Views

Author

Mohammad K. Azarian, Apr 07 2007

Keywords

Comments

Subsequence of A008854 and A047462. [Bruno Berselli, Feb 07 2013]

Crossrefs

Programs

  • Magma
    [n^2*9^n: n in [0..20]]; // Vincenzo Librandi, Feb 07 2013
  • Mathematica
    CoefficientList[Series[9 x (1 + 9 x)/(1 - 9 x)^3, {x, 0, 30}], x] (* or *) LinearRecurrence[{27, -243, 729}, {0, 9, 324}, 20] (* Vincenzo Librandi, Feb 07 2013 *)

Formula

G.f.: 9*x*(1+9*x)/(1-9*x)^3. - Vincenzo Librandi, Feb 07 2013
a(n) = 27*a(n-1) - 243*a(n-2) + 729*a(n-3). - Vincenzo Librandi, Feb 07 2013