Suppose that a multinomial distribution has 25 outcomes, the first 24 have chance $\frac{1}{465}$ and the final has $\frac{441}{465}$ chance.
Find $n$ the number of trials for this such that the chance of having the first 24 outcomes happening at least once is approximately $0.75$. E.g. the vector $(1,1,1,...,1, n-24)$ with $n$ trials, etc.
Further, find the $n$ such that the chance is $0.95$ etc or characterise this result.
Thank you
I commented
The expectation comes in a similar way to that of the coupon collectors problem: you expect to need $\frac{465}{24}$ attempts to get any of the first $24$, then a further $\frac{465}{23}$ attempts to get any of the remaining $23$, and so on to a further $\frac{465}{1}$ attempts to get the final $1$, and you can add these up (so combining $24$ rather than $25$ geometric distributions).
If you believe that the answers are likely to be in the thousands, then you can work the probabilities out computationally up to $10000$ attempts, for example using R and the following slightly clunky code:
Here is the resulting Cumulative Distribution Function. Your question is asking when it first crosses $0.75$ and $0.95$, which is at $2059$ and $2857$.
You suggested that Monte Carlo simulation gave an approximation of about $1400$. This looks wrong to me, both on the basis of the calculations above and in terms of simulation, as the probability of all $24$ appearing in the first $1400$ attempts seems to be closer to just under $0.3$. Indeed, allowing for simulation noise, the answers above appear to be broadly confirmed by my simulations: