I need to evaluate $$\sum_{i=k}^n {n \choose i} \gamma^i (1-\gamma)^{(n-i)}. $$
But as my $n$ gets often to $10^7$ and $k$ is usually around $0.7n$ it takes significant time to be evaluted about $10^3$ times. Perhaps it can be simplified to avoid the sum? Binomial coefficient itself is probably not the big problem as I used built in function of Wolfram Mathematica.
I care only about some leading digits (and the exponent!) so double is more precise than I need.
EDIT
I have made mistakes when evaluating the values $\gamma$ can have. The real range is from $0.5$ to $0.75$ which makes so much more sense. Please ignore the wrong statement in the comments relevant statements in some answers.
At the moment brute forcing it on 22 cores took me 1 hour. I would be happy if I could speed it up in case I need to reevaluate.