The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A156085 One fourth of the sum of the squares of the first n Fibonacci numbers with index divisible by 3. 6
0, 1, 17, 306, 5490, 98515, 1767779, 31721508, 569219364, 10214227045, 183286867445, 3288949386966, 59017802097942, 1059031488375991, 19003548988669895, 341004850307682120, 6119083756549608264, 109802502767585266633, 1970325966059985191129 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Natural bilateral extension (brackets mark index 0): ..., -5490, -306, -17, -1, 0, [0], 1, 17, 306, 5490, 98515, ... This is (-A156085)-reversed followed by A156085. That is, A156085(-n) = -A156085(n-1).
LINKS
C. Pita, On s-Fibonomials, J. Int. Seq. 14 (2011) # 11.3.7
FORMULA
Let F(n) be the Fibonacci number A000045(n) and let L(n) be the Lucas number A000032(n).
a(n) = (1/4) sum_{k=1..n} F(3k)^2.
Closed form: a(n) = L(6n+3)/80 - (-1)^n/20.
Factored closed form: a(n) = (1/16) F(n) F(n+1) (L(n) - 1)(L(n) + 1)(L(2n+2) - 1) if n is even; a(n) = (1/16) F(n) F(n+1) (L(n+1) - 1)(L(n+1) + 1)(L(2n) - 1) if n is odd.
Recurrence: a(n) - 17 a(n-1) - 17 a(n-2) + a(n-3) = 0.
G.f.: A(x) = x/(1 - 17 x - 17 x^2 + x^3) = x/((1 + x)(1 - 18 x + x^2)).
a(n) = ((9+4*sqrt(5))^(-n)*(2-sqrt(5)-4*(-9-4*sqrt(5))^n+(2+sqrt(5))*(9+4*sqrt(5))^(2*n)))/80. - Colin Barker, Mar 04 2016
MATHEMATICA
a[n_Integer] := If[ n >= 0, Sum[ (1/4) Fibonacci[3k]^2, {k, 1, n} ], -Sum[ (1/4) Fibonacci[-3k]^2, {k, 1, -n - 1} ] ]
Accumulate[Fibonacci[3*Range[0, 20]]^2]/4 (* or *) LinearRecurrence[{17, 17, -1}, {0, 1, 17}, 30] (* Harvey P. Dale, Aug 17 2014 *)
PROG
(PARI) concat(0, Vec(x/((1+x)*(1-18*x+x^2)) + O(x^25))) \\ Colin Barker, Mar 04 2016
(PARI) a(n) = sum(k=1, n, fibonacci(3*k)^2)/4; \\ Michel Marcus, Mar 04 2016
CROSSREFS
Sequence in context: A007805 A158585 A201232 * A129992 A197526 A282965
KEYWORD
nonn,easy
AUTHOR
Stuart Clary, Feb 04 2009
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 16 05:56 EDT 2024. Contains 372549 sequences. (Running on oeis4.)