OFFSET
0,2
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..1000
Index entries for linear recurrences with constant coefficients, signature (9,-27,27).
FORMULA
From R. J. Mathar, Dec 19 2008: (Start)
G.f.: 6*x/(1-3*x)^3.
a(n) = 6 * A027472(n+2). (End)
a(n) = 9*a(n-1) -27*a(n-2) +27*a(n-3). - Vincenzo Librandi, Feb 28 2013
E.g.f.: 3*x*(2 + 3*x)*exp(3*x). - G. C. Greubel, May 10 2019
From Amiram Eldar, Jul 20 2020: (Start)
Sum_{n>=1} 1/a(n) = 1 - 2*log(3/2).
Sum_{n>=1} (-1)^(n+1)/a(n) = 4*log(4/3) - 1. (End)
MATHEMATICA
Table[(n^2 + n) 3^n, {n, 0, 30}] (* Vincenzo Librandi, Feb 28 2013 *)
PROG
(Magma) [(n^2+n)*3^n: n in [0..30]]; /* or */ I:=[0, 6, 54]; [n le 3 select I[n] else 9*Self(n-1)-27*Self(n-2)+27*Self(n-3): n in [1..30]]; // Vincenzo Librandi, Feb 28 2013
(PARI) a(n)=(n^2+n)*3^n \\ Charles R Greathouse IV, Feb 28 2013
(Sage) [3^n*n*(n+1) for n in (0..30)] # G. C. Greubel, May 10 2019
(GAP) List([0..30], n-> 3^n*n*(n+1)) # G. C. Greubel, May 10 2019
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Mohammad K. Azarian, Apr 08 2007
STATUS
approved