For a solution that gives you control over the precision of the result, you can do the following. First, write the expression as such:
$$1−\left(\frac{13999}{14000}\right)^{14000} = 1−\left(\frac{14000 - 1}{14000}\right)^{14000} = 1−\left(1 - \frac{1}{14000}\right)^{14000}$$
Then use the Binomial theorem
$$(1 + x)^n = \sum_{k\,=\,0}^{n} {n \choose k}\, x^k$$
with $x = -\frac{1}{14000}$ and $n = 14000$. Now, you definitely don't want to compute all those binomial coefficients. The first few terms should be enough to give you a useful approximation.
For example, stopping at $k=1$:
$$(1+x)^n = 1 + n\,x + \frac{n\,(n-1)}{2}\,x^2$$
Then,
$$1−\left(\frac{13999}{14000}\right)^{14000} = 1−\left(1 - \frac{1}{14000}\right)^{14000}
\approx 1 - \left(1 + n\,x + \frac{n\,(n-1)}{2}\,x^2\right)$$
or
$$1−\left(\frac{13999}{14000}\right)^{14000} \approx -n\,x - \frac{n\,(n-1)}{2}\,x^2$$
Note that $x$ was chosen negative so the leading term above is actually a positive number (it's actually just 1). The result, then, is
$$1−\left(\frac{13999}{14000}\right)^{14000} \approx 1 - \frac{13999}{28000}$$
You probably don't want to stop at $k=1$, though, for a better approximation. The point is, the more terms you use, the better your approximation.