A363753 a(n) = Sum_{k=0..n} (-1)^k*F(k-1)*F(k)*F(k+1)/2, where F(n) is the Fibonacci number A000045(n).
0, 0, 1, -2, 13, -47, 213, -879, 3762, -15873, 67342, -285098, 1207966, -5116586, 21674919, -91815276, 388937619, -1647563169, 6979194475, -29564334305, 125236542640, -530510487155, 2247278519916, -9519624520452, 40325776676748, -170822731106052, 723616701297373
Offset: 0
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).
Crossrefs
Programs
-
Mathematica
LinearRecurrence[{-2, 9, -3, -4, 1}, {0, 0, 1, -2, 13}, 27]
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)).
Comments