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.: 14*x*(48+x)/(1-x)^2.
E.g.f.: 14*(1 - (1-49*x)*exp(x)). - G. C. Greubel, Feb 02 2018
MATHEMATICA
LinearRecurrence[{2, -1}, {672, 1358}, 50]
PROG
(Magma) I:=[672, 1358]; [n le 2 select I[n] else 2*Self(n-1)-Self(n-2): n in [1..40]];
(PARI) a(n) = 686*n-14.
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Feb 28 2009
STATUS
approved