Find the number of ways to select $k$ objects from available $(n-k)$ objects, for all possible values of k such that $k < n/2$ and assume $n$ to be odd.
What I have inferred from this till now is that I need to find the sum of the series
$$\binom{n}{0}+\binom{n-1}{1}+\binom{n-2}{2}+ \ldots + \binom{\frac{n+1}{2}}{\frac{n-1}{2}}$$
Please help me understand, how to convert it to some formula in $n$. Somewhere I saw it had some equivalence with $Fib(n)$ (i.e., $n^{th}$ term in Fibonacci sequence). I couldn't derive the intuition behind it either.