We can start by defining the base case:
$\Sigma_{fibo}(0) = 0$
This means that when $k=0$, the sum is equal to 0.
Now, let's define the recursive case:
$\Sigma_{fibo}(k) = \Sigma_{fibo}(k-1) + fibo(k)$
This means that for any $k>0$, the sum is equal to the
Show more…