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
G.f.: x*(2574 + 1820*x)/(1 - x)^2.
a(n) = 2*a(n-1) -a(n-2).
MATHEMATICA
LinearRecurrence[{2, -1}, {2574, 6968}, 40]
PROG
(Magma) I:=[2574, 6968]; [n le 2 select I[n] else 2*Self(n-1)-Self(n-2): n in [1..50]];
(PARI) a(n)=4394*n-1820 \\ Charles R Greathouse IV, Dec 23 2011
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Feb 15 2009
STATUS
approved