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