A215037 a(n) = Sum_{k=0..n} fibonomial(k+3,3), n >= 0.
1, 4, 19, 79, 339, 1431, 6072, 25707, 108922, 461362, 1954426, 8278978, 35070483, 148560678, 629313573, 2665814361, 11292572005, 47836100785, 202636977730, 858384007525, 3636173014596, 15403076054964, 65248477252164
Offset: 0
Examples
a(3) = 2*1*1/2 + 3*2*1/2 + 5*3*2/2 + 8*5*3/2 = 1 + 3 + 15 + 60 = 79.
Links
- Wolfdieter Lang, Partial summation formula applied to sums over cubes of Fibonacci numbers.
- Index entries for linear recurrences with constant coefficients, signature (4, 3, -9, 2, 1).
Programs
-
Mathematica
LinearRecurrence[{4, 3, -9, 2, 1}, {1, 4, 19, 79, 339}, 23] (* Hans J. H. Tuenter, Jun 26 2023 *)
Formula
Let F(n) be the Fibonacci number A000045(n).
a(n) = Sum_{k=0..n} F(k+3)*F(k+2)*F(k+1)/2.
a(n) = (F(n+3)^2*F(n+2) + (-1)^n*A008346(n+1))/4, n>=0, with A008346(n) = F(n) + (-1)^n. See a comment above.
G.f.: 1/((1+x-x^2)*(1-4*x-x^2)*(1-x)) (from the g.f. of the Fibonomials A001655).
From Hans J. H. Tuenter, Jun 26 2023: (Start)
a(n) = (F(n+3)^2*F(n+2) + (-1)^n*F(n+1)-1)/4.
a(n) = (F(n+3)^3 + F(n+2)^3 + (-1)^n*F(n+1) - 2)/8.
a(n) = (F(3*n+8) + 4*(-1)^n*F(n+1) - 5)/20.
a(n) = 4*a(n-1) + 3*a(n-2) - 9*a(n-3) + 2*a(n-4) + a(n-5).
a(-n) = A363753(n-3).
(End)
Comments