login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A127960
a(n) = n^2*3^n.
1
0, 3, 36, 243, 1296, 6075, 26244, 107163, 419904, 1594323, 5904900, 21434787, 76527504, 269440587, 937461924, 3228504075, 11019960576, 37321507107, 125524238436, 419576389587, 1394713760400, 4613015762523, 15188432850756
OFFSET
0,2
FORMULA
G.f.: 3*x*(1 + 3*x)/(1 - 3*x)^3. - Vincenzo Librandi, Feb 07 2013
a(n) = 9*a(n-1) - 27*a(n-2) + 27*a(n-3). - Vincenzo Librandi, Feb 07 2013
a(n) = 3*A069996(n) for n>0. - Bruno Berselli, Feb 07 2013
E.g.f.: (9*x^2 + 3*x)*exp(3*x). - G. C. Greubel, May 04 2018
MATHEMATICA
LinearRecurrence[{9, -27, 27}, {0, 3, 36}, 25] (* or *) CoefficientList[ Series[3*x(1 + 3*x)/(1 - 3*x)^3, {x, 0, 30}], x] (* Vincenzo Librandi, Feb 07 2013 *)
PROG
(Magma) [n^2*3^n: n in [0..30]]; // Vincenzo Librandi, Feb 07 2013
(PARI) for(n=0, 30, print1(n^2*3^n, ", ")) \\ G. C. Greubel, May 04 2018
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Mohammad K. Azarian, Apr 07 2007
STATUS
approved