A number sequence generator produces 5 digit codes. I believe that we are getting close to maxing out the codes that it is already issued. I would like to calculate the maximum number of permutations and compare it to the distinct count of permutations that it has already issued.
However, the permutation formulas that I have been reading so far deal only with examples where the number of objects is the same for every sample.
But in my case it is not.
The first character is alphanumeric, however, some letters are not allowed so it has 31 possible values. The second character is alphanumeric so there would be 36 possible values with repetition. The last three values are numeric so they would each only have 10 possible values with repetition.
How would I calculate the maximum permutations of these?