Am I on the right path with this?
A large pile of coins consists of pennies, nickels, dimes, and quarters.
a. How many different collections of $30$ coins can be chosen if there are at least $30$ of each kind of coin?
Answer- I got $$\binom{n}{k} = \dfrac{30+4-1!}{(30!)(33-30!)}$$
b. If the pile contains only $15$ quarters but at least $30$ of each other kind of coin, how many collections of $30$ coins can be chosen?
Answer - For this one I pretty much took the combination above and subtracted the case for the combinations possible if $15$ quarters are accounted for. This I found to be $\dfrac{15+4-1!}{(15!)(18-15!)}$ subtracted from $\dfrac{30+4-1!}{(30!)(33-30!)}$.
Your answer is correct. The way to solve this is to think of the problem as this: Imagine you have to pick one by one coins from a bag with 4 different types (pennies, nickels dimes, and quarters). After you pick one, you put it back, and repeat 30 times. You keep repeating this until you exhausted all the possible combinations. In other words, this is the same as sampling with replacement where the order does not matter. For this you can use Bose-Einstein $$\binom{n + k - 1}{ n}$$ In your case, n is 30, k is 4.