Having 40 aces and 60 kings in a deck of hundred (100), what is the probability of a sample of 50 cards containing 25 or more aces?
Is it required to do sum over binomial distributions for 0 to 24 to archive to the probability or is there "math" way obtaining result (distribution like binomial but for limited non-independent groups).
Raw power solution would lead to something like this
$\mathbb{P} = 1 - \sum^{24}_{i = 0} \frac{permutations\ of\ i\ aces}{total \ permutations} =\ ??$
Is it solvable by hand?

There is a pencil-and-paper method which avoids summing binomial probabilities, provided you have a table of cumulative Normal distribution probabilities and are happy with an approximation.
The exact distribution of the number of aces is a Binomial distribution with parameters $n=50$ and $p=0.4$, which has mean $\mu = np = 20$ and variance $\sigma^2=np(1-p) = 12$. This distribution can be approximated by a Normal distribution with the same mean and variance. We want to find $P(X \ge 25) = 1 - P(X \le 24)$. Since the Binomial distribution is discreet and the Normal distribution is continuous, we apply a "correction for continuity" and find $P(X \le 24.5)$. We have $$X \le 24.5$$ if and only if $$\frac{X-\mu}{\sigma} \le \frac{24.5 - 20}{\sqrt{12}} = 1.30$$ and $(X- \mu)/\sigma$ has (approximately) a Normal distribution with mean zero and variance one, so we can look up the cumulative probability in a table, with the result that $$P \left( \frac{X-\mu}{\sigma} \right) \le 1.30\approx 0.9032$$ so the probability of having 25 or more aces is about $1-0.9032=\boxed{0.0968}$.
This result compares fairly well with the exact result of $$1- \sum_{i=0}^{24} \binom{50}{i}(0.4)^i (0.6)^{50-i} =0.0978$$ for the Binomial distribution but requires less computation, again assuming you have a table of Normal probabilities available.