Sum of products of Fibonacci numbers [closed]
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 7 years ago . Given a series Fib(1) * Fib (n+2) + Fib(2) * Fib(n+1) + Fib(3) * Fib(n) + ...... + Fib(n-1) * Fib(4) or Summation Fib(x) * Fib (n-x+3) where x varies from 1 to n-1 where Fib(n) is nth number of Fibonacci series to evaluate this series Fib(n) can be calculated using matrix exponentiation . But the complexity for