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 (2,-1).
FORMULA
a(n) = 2*a(n-1)-a(n-2) = 3*a(n-1) -3*a(n-2) +a(n-3).
G.f: x*(2640+22*x)/(x-1)^2.
MATHEMATICA
LinearRecurrence[{2, -1}, {2640, 5302}, 40]
PROG
(Magma) I:=[2640, 5302]; [n le 2 select I[n] else 2*Self(n-1)-Self(n-2): n in [1..40]];
(PARI) a(n) = 2662*n - 22.
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Mar 03 2009
STATUS
approved