Let's say you roll a fair dice 10 times and X is the number of sides that never show up. (i.e. Roll 1 - 10 = 1424145221, X = 2 because 3 and 6 never show up)
Values of $N=0,1,2,3,4,5.\\ P(N=6) = 0$ because at least one of the numbers has to show up.
SOLUTION: Use inclusion-exclusion
There probably is a better way to approach this, but when worse comes to worse, one can always fall back on enumeration. Here are a couple of hints that may help.
You are looking for special sets of 10 digit numbers which are a subset of all 10 digit numbers which can be made from the numbers $[1, 2, 3, 4, 5, 6]$. How many of those are there? $6^{10} = 60,466,176$.
Let's consider $P(X = 4)$. This means the strings are made of exactly $2$ numbers. How many ways can we select these $2$ numbers from $6$? That's ${6\choose 2} = 15$. Now comes the tricky part. How many ways can we make 10 digit strings using only 2 numerals? Well, we could split them $9:1, 8:2, 7:3, 6:4, 5:5, 4:6, 3:7, 2:8,$ or $1:9$. There are $\frac{10!}{9!1!}$ ways to split the strings each $9:1$ and $1:9$. There are $\frac{10!}{8!2!}$ to split them $8:2$ and $2:8$. So, in a nutshell, the number of strings that will satisfy the numerator of $P(X = 4)$ is $$15\cdot \left(\left[2\sum_{i=1}^4\frac{10!}{i!(10 - i)!}\right] + \frac{10!}{5!5!}\right)$$
This makes $$ P(X = 4) = \frac{15\cdot \left(\left[2\sum_{i=1}^4\frac{10!}{i!(10 - i)!}\right] + \frac{10!}{5!5!}\right)}{6^{10}}$$
This enumeration can be used to calculate the other options. The tricky part is identifying the kinds of acceptable partitions for the 10-digit strings in order to calculate the multinomial. For example, when using 3 possibilities, you can have 8-1-1, 7-1-2, 7-2-1, 6-2-2, 6-3-1, etc. We know that in general, the number of ways to partition a sum $S$ into $n$ non-negative summands is ${S + n - 1}\choose{n - 1}$. In our case, I believe we have to subtract $n$ as we don't want any 0's. So there will be ${12\choose 2} - 6 = 60$ partitions for 10-length strings made out of 3 digits, 282 separate partitions for 10-length strings made of 4 digits, 996 of the 5 digit types, and 2997 unique strings using all 6 digits. This does highlight what Andre said in the comments, that this is not really a simple problem; although I'm pretty sure that there are simpler ways than brute force enumeration.