OFFSET
0,3
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..1000
Index entries for linear recurrences with constant coefficients, signature (5,12).
FORMULA
a(n) = 2*A099919(n-1) + 1, for n>=1.
a(n) = 5 a(n-1) + 12 a(n-2).
MATHEMATICA
Join[{a=0, b=1}, Table[c=5*b+12*a; a=b; b=c, {n, 100}]] (* Vladimir Joseph Stephan Orlovsky, Jan 16 2011 *)
LinearRecurrence[{5, 12}, {0, 1}, 30] (* Vincenzo Librandi, Nov 13 2012 *)
CoefficientList[Series[x/(1-5x-12x^2), {x, 0, 30}], x] (* Harvey P. Dale, May 27 2023 *)
PROG
(Sage) [lucas_number1(n, 5, -12) for n in range(0, 21)] # Zerinvary Lajos, Apr 24 2009
(Magma) [n le 2 select n-1 else 5*Self(n-1) + 12*Self(n-2): n in [1..30]]; // Vincenzo Librandi, Nov 13 2012
(PARI) x='x+O('x^30); concat([0], Vec(x/(1-5*x-12*x^2))) \\ G. C. Greubel, Jan 16 2018
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved