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*(-10657*x^2-23522*x-13121)/(x-1)^3
MATHEMATICA
LinearRecurrence[{3, -3, 1}, {13121, 15841, 18817}, 50]
PROG
(Magma) I:=[13121, 15841, 18817]; [n le 3 select I[n] else 3*Self(n-1)-3*Self(n-2)+1*Self(n-3): n in [1..50]];
(PARI) a(n)=128*n^2+2336*n+10657 \\ Charles R Greathouse IV, Dec 27 2011
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Mar 01 2009
STATUS
approved