OFFSET
1,1
COMMENTS
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..10000
Vincenzo Librandi, X^2-AY^2=1
Index entries for linear recurrences with constant coefficients, signature (2,-1).
FORMULA
a(n) = 2*a(n-1) - a(n-2).
G.f.: x*(6040+1960*x)/(x-1)^2.
E.g.f.: 40*(49 - (49 - 200*x)*exp(x)). - G. C. Greubel, Nov 17 2018
MATHEMATICA
LinearRecurrence[{2, -1}, {6040, 14040}, 40]
PROG
(Magma) I:=[6040, 14040]; [n le 2 select I[n] else 2*Self(n-1)-Self(n-2): n in [1..40]];
(PARI) a(n) = 8000*n - 1960.
(Sage) [40*(200*n - 49) for n in (1..40)] # G. C. Greubel, Nov 17 2018
(GAP) List([1..40], n -> 40*(200*n - 49)); # G. C. Greubel, Nov 17 2018
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Mar 03 2009
STATUS
approved