Given a floating point system defined as: $F = \{x = (\frac{m}{\beta^t})\beta^e = m\beta^{e-t}\}$, where $m$ is an integer $m \in [1, \beta^t]$, $e$ is an arbitrary integer, and $\beta$ is an integer $\beta \geq 2$. Find an exact formula for the smallest integer $n$ that does not belong to $F$.
In a floating point system, $t$ is often $53$, so with that in mind $x = m*\beta^{e-53}$
I read that the solution is $\beta^t + 1$, but I'm not sure how to prove there is no combination of $m, e$ such that $m\beta^{e-53} = \beta^{53}+1$.