OFFSET
0,3
COMMENTS
LINKS
Index entries for linear recurrences with constant coefficients, signature (-48,-48,-1).
FORMULA
a(n) = (1/9)*Sum_{k=1..n} (-1)^k*F(4*k)^2.
Closed form: a(n) = (-1)^n*(L(8*n+4) - 7)/315.
Factored closed form: a(n) = (-1)^n*F(4*n)*F(4*n+4)/63.
Recurrence: a(n) + 47*a(n-1) + a(n-2) = (-1)^n.
Recurrence: a(n) + 48*a(n-1) + 48*a(n-2) + a(n-3) = 0.
G.f.: A(x) = -x/(1 + 48*x + 48*x^2 + x^3) = -x/((1 + x)*(1 + 47*x + x^2)).
From Amiram Eldar, Nov 25 2025: (Start)
a(n) = A156092(n)/9.
Sum_{n>=1} (-1)^n/a(n) = 35 - 21*phi, where phi is the golden ratio (A001622). (End)
MATHEMATICA
a[n_Integer] := If[ n >= 0, Sum[ (-1)^k (1/9) Fibonacci[4k]^2, {k, 1, n} ], Sum[ -(-1)^k (1/9) Fibonacci[-4k]^2, {k, 1, -n - 1} ] ]
LinearRecurrence[{-48, -48, -1}, {0, -1, 48}, 16] (* Amiram Eldar, Nov 25 2025 *)
CROSSREFS
KEYWORD
sign,easy
AUTHOR
Stuart Clary, Feb 04 2009
STATUS
approved
