OFFSET
1,2
LINKS
Index entries for linear recurrences with constant coefficients, signature (1,3,-2,0,-2,-3,1,1).
FORMULA
From Chai Wah Wu, Dec 24 2023: (Start)
a(n) = a(n-1) + 3*a(n-2) - 2*a(n-3) - 2*a(n-5) - 3*a(n-6) + a(n-7) + a(n-8) for n > 8.
G.f.: x*(-4*x^5 - 2*x^4 + 7*x^3 + 6*x^2 + x + 3)/((x^2 + 1)*(-x^2 + x + 1)*(x^2 + x - 1)^2).
(End)
MATHEMATICA
a[n_]:=Sum[LucasL[i]LucasL[n-i+1], {i, Floor[n/2]}]; Array[a, 36] (* Stefano Spezia, Dec 24 2023 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
EXTENSIONS
a(1) inserted by Chai Wah Wu, Dec 24 2023
More terms from Stefano Spezia, Dec 24 2023
STATUS
approved