OFFSET
1,1
COMMENTS
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..10000
Index entries for linear recurrences with constant coefficients, signature (3,-3,1).
FORMULA
a(n) = 3*a(n-1) -3*a(n-2) +a(n-3).
G.f: x*(-14112-38203*x-2135*x^2)/(x-1)^3.
MATHEMATICA
Table[27225*n^2-15248*n+2135, {n, 50}] (* Harvey P. Dale, Nov 26 2010 *)
PROG
(Magma) I:=[14112, 80539, 201416]; [n le 3 select I[n] else 3*Self(n-1)-3*Self(n-2)+Self(n-3): n in [1..30]];
(PARI) a(n) = 27225*n^2-15248*n+2135.
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Mar 06 2009
EXTENSIONS
More terms from Harvey P. Dale, Nov 26 2010
STATUS
approved