I have two independent Poisson random variables $A \sim \text{Poisson}(\lambda_A)$ and $B \sim \text{Poisson}(\lambda_B)$. For a fixed given integer $k$, I'd like to determine
$$P(A < k \leq A + B).$$
Is there an analytical expression for this probability as a function of $k, \lambda_A, \lambda_B$?
Edit 1: Is the following approach valid?
$$P(A < k \leq A + B) = 1 - P(A < k \leq A + B)^C $$
where $\cdot^C$ denotes the complement. The complement here is given by
$$P(A < k \leq A + B)^C = P(A \geq k) + P(k > A + B) $$
Plugging the complement in gives us:
\begin{align*} P(A < k \leq A + B) &= 1 - P(A < k \leq A + B)^C\\ &= 1 - P(A \geq k) - P(k > A + B)\\ &= 1 - (1 - P(A < k)) - P(A + B < k)\\ &= P(A \leq k - 1) - P(A + B \leq k-1) \end{align*}
where the final expression is the CDF of $A$ up to $k-1$ minus the CDF of $A+B$ up to $k-1$.
Is this correct? And if so, can I simplify further?