OFFSET
0,4
COMMENTS
Alternating sum of the product of three consecutive Fibonacci numbers, divided by two.
Can also be seen as the alternating sum of the Fibonomial coefficients (n+1,3), A001655.
This sequence is part of a suite of sums over triple products of Fibonacci numbers. Subba Rao (1953) gives closed-form expressions for several Fibonacci sums of this type.
LINKS
K. Subba Rao, Some properties of Fibonacci numbers, The American Mathematical Monthly, 60(10):680-684, December 1953.
Index entries for linear recurrences with constant coefficients, signature (-2,9,-3,-4,1).
FORMULA
a(n) = ((-1)^n*(F(n+1)^3 - F(n)^3) + F(n+2) - 2)/8.
a(n) = ((-1)^n*F(3*n+1) + 4*F(n+2) - 5)/20.
a(n) = -2*a(n-1) + 9*a(n-2) - 3*a(n-3) - 4*a(n-4) + a(n-5).
a(-n) = A215037(n-3).
G.f.: x^2/((1 - x)*(1 + 4*x - x^2)*(1 - x - x^2)).
MATHEMATICA
LinearRecurrence[{-2, 9, -3, -4, 1}, {0, 0, 1, -2, 13}, 27]
CROSSREFS
KEYWORD
sign,easy
AUTHOR
Hans J. H. Tuenter, Jun 19 2023
STATUS
approved