OFFSET
0,3
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..1000
Index entries for linear recurrences with constant coefficients, signature (8,11).
FORMULA
a(n) = 8*a(n-1) + 11*a(n-2).
MATHEMATICA
Transpose[NestList[{Last[#], 8Last[#]+11First[#]}&, {0, 1}, 20]] [[1]] (* Harvey P. Dale, Mar 14 2011 *)
LinearRecurrence[{8, 11}, {0, 1}, 30] (* Vincenzo Librandi, Nov 14 2012 *)
PROG
(Sage) [lucas_number1(n, 8, -11) for n in range(0, 19)] # Zerinvary Lajos, Apr 25 2009
(Magma) [n le 2 select n-1 else 8*Self(n-1) + 11*Self(n-2): n in [1..30]]; // Vincenzo Librandi, Nov 14 2012
(PARI) x='x+O('x^30); concat([0], Vec(x/(1-8*x-11*x^2))) \\ G. C. Greubel, Jan 06 2018
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved