Given there are only $5$ characters you can do this directly by working individual cases.
Case $1$: There are exactly two digits out of last four characters -
$\displaystyle 26 \cdot {4 \choose 2} \cdot 10^2 \cdot 26^2$
Case $2$: There are exactly three digits out of last four characters -
$\displaystyle 26 \cdot {4 \choose 3} \cdot 10^3 \cdot 26$
Case $3$: Last four characters are all digits -
$\displaystyle 26 \cdot 10^4$
Add all of the arrangements from the three cases.
You can also calculate by subtracting cases where there are no digits or only one of the last four characters is a digit, which is given by -
$\displaystyle 26 \cdot (36^4 - 26^4 - 4 \cdot 10 \cdot 26^3)$
pwd42– JMoravitz Mar 10 '21 at 18:30