OFFSET
0,5
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..1000
Index entries for linear recurrences with constant coefficients, signature (-1,7,3).
FORMULA
From R. J. Mathar, Mar 17 2008: (Start)
O.g.f.: x^2/((1+3*x)*(1-2*x-x^2)).
a(n) = ( (-3)^n + A135532(n) )/14. (End)
a(n) = (1/14)*( (-3)^n + 5*Pell(n) - Pell(n+1) ), where Pell(n) = A000129(n). - G. C. Greubel, Apr 19 2021
MATHEMATICA
Table[((-3)^n + 5*Fibonacci[n, 2] -Fibonacci[n+1, 2])/14, {n, 0, 40}] (* G. C. Greubel, Apr 19 2021 *)
LinearRecurrence[{-1, 7, 3}, {0, 0, 1}, 40] (* Harvey P. Dale, Apr 26 2022 *)
PROG
(Magma) I:=[0, 0, 1]; [n le 3 select I[n] else -Self(n-1) +7*Self(n-2) +3*Self(n-3): n in [1..36]]; // G. C. Greubel, Apr 19 2021
(Sage) [((-3)^n +5*lucas_number1(n, 2, -1) -lucas_number1(n+1, 2, -1))/14 for n in (0..40)] # G. C. Greubel, Apr 19 2021
CROSSREFS
KEYWORD
sign,easy
AUTHOR
Paul Curtz, Mar 08 2008
STATUS
approved