OFFSET
0,1
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..1000
Index entries for linear recurrences with constant coefficients, signature (-3,6,3,-1).
FORMULA
a(n) = 3*L(n)+(-1)^n*L(3n).
a(n) = -3a(n-1)+6a(n-2)+3a(n-3)-a(n-4), n>3.
G.f.: ( 8+23*x-24*x^2-x^3 ) / ( (x^2+x-1)*(x^2-4*x-1) ).
a(n) is asymptotic to (-phi)^(3n) where phi is the golden ratio (1+sqrt(5))/2. - Benoit Cloitre, Sep 07 2002
a(n) = ((-1)^n*L(n))^3 = L(-n)^3. - Ehren Metcalfe, Apr 21 2018
MATHEMATICA
CoefficientList[Series[(8+23*x-24*x^2-x^3)/(1+3*x-6*x^2-3*x^3+x^4), {x, 0, 25}], x]
LinearRecurrence[{-3, 6, 3, -1}, {8, -1, 27, -64}, 30] (* Harvey P. Dale, Apr 06 2013 *)
Table[LucasL[-n]^3, {n, 0, 25}] (* Vincenzo Librandi, Apr 22 2018 *)
PROG
(Magma) [((-1)^n*Lucas(n))^3: n in [0..30]]; // Vincenzo Librandi, Apr 22 2018
CROSSREFS
KEYWORD
easy,sign
AUTHOR
Mario Catalani (mario.catalani(AT)unito.it), Sep 05 2002
STATUS
approved