A214884 a(n) = Sum_{k=0..n} (-1)^k*F(k)*F(k+2), where F=A000045 (Fibonacci numbers).
0, -2, 1, -9, 15, -50, 118, -324, 831, -2195, 5725, -15012, 39276, -102854, 269245, -704925, 1845483, -4831574, 12649186, -33116040, 86698875, -226980647, 594243001, -1555748424, 4073002200, -10663258250, 27916772473, -73087059249, 191344405191
Offset: 0
Programs
-
Mathematica
Table[Sum[(-1)^k*Fibonacci[k]*Fibonacci[k + 2], {k, 0, n}], {n, 0, 28}] (* Michael De Vlieger, Aug 23 2017 *)
Formula
O.g.f.: -x*(2+x)/((1-x)^2*(1+3*x+x^2)) (see the comment section).
a(n) = ((-1)^n*Fibonacci(2*n + 3) - 3*n - 2)/5. - Ehren Metcalfe, Aug 21 2017
Comments