I just finished the implementation of an algorithm and wanted to report its approximate run-time in a O*($c^n$) format, the time analysis results is O*$n/2 \choose n/4$. I'm using the binary entropy function.
O*$n/2 \choose n/4$ $\approx$ O*($2^{\frac n 2 H(1/4)}$) $\approx$ O*($2^{\frac n 2 0.811}$) $\approx$ O*($1.324^n$)
Should I do this in a different way to do this accurately?