The Problem
Given:
$$f(n) = \frac{\sum_{i=1}^{n/2} \left[ \binom{n/2}{i} \sum_{j=0}^{i} \binom{n/2}{j} \right]}{2^n}$$
I want to prove that $\lim_{n \rightarrow \infty}f(n) = \frac{1}{2}$.
This relates to some research work I am doing and I am pretty sure it converges to $1/2$ from 'above' (or at least the data suggests that) but I would really like to have some solid proof about this limit.
What I've tried
I've tried to sandwich the limit by substituting the term $\sum_{j=0}^{i} \binom{n/2}{j}$ with a minimum value, i.e. $\binom{n/2}{0}+\binom{n/2}{1}=1+\frac{n}{2}$ (common to all subterms), which leads to $\lim_{n \rightarrow \infty}f(n) = 0$ and with a maximum value, i.e. $\sum_{j=0}^{n/2} \binom{n/2}{j}=2^{n/2}$ (adding extra subterms), which leads to $\lim_{n \rightarrow \infty}f(n) = 1$, but well, I need something better :) I've tried using the some other related formulas but couldn't find something better than that. Maybe it can be solved more straightforward though?