OFFSET
1,1
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..200
Index entries for linear recurrences with constant coefficients, signature (24302,-1).
FORMULA
a(n+2) = 24302*a(n+1)-a(n).
G.f.: 45*x*(x+1) / (x^2-24302*x+1). - Colin Barker, Oct 21 2014
EXAMPLE
a(1)=45 because the first relation is : 434^2=93*45^2+31.
MATHEMATICA
CoefficientList[Series[45 (x + 1)/(x^2 - 24302 x + 1), {x, 0, 20}], x] (* Vincenzo Librandi, Oct 21 2014 *)
LinearRecurrence[{24302, -1}, {45, 1093635}, 20] (* Harvey P. Dale, Jun 15 2022 *)
PROG
(PARI) Vec(45*x*(x+1) / (x^2-24302*x+1) + O(x^20)) \\ Colin Barker, Oct 21 2014
(Magma) I:=[45, 1093635]; [n le 2 select I[n] else 24302*Self(n-1)-Self(n-2): n in [1..10]]; // Vincenzo Librandi, Oct 21 2014
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Richard Choulet, Oct 07 2008
EXTENSIONS
Editing and more terms from Colin Barker, Oct 21 2014
STATUS
approved
