The Frobenius Coin Problem, named after Ferdinand Frobenius is a math problem that asks for the largest monetary amount that cannot be represented using only a specific number of coin denominations.
Let $m=1, a \geq 1!, N_m(x) = N_1(a) = a-1 +0 = a-1$, and there will be an infinite number of non-representable numbers using only one denomination. NOTE: the plus zero in the equation is important to remember.
Let $m=2, a \geq 2!, b \geq 2!, \gcd(a,b) = 1$, and the 'a' and 'b' must be at least two units apart. $N_m(x,y) = N_2(a,b) = (a-1)*(b-1) -1= (a-1)*(b-1) -1 = a*b -a -b$, and there will be a largest number which cannot be represented using only two denominations. All numbers after that maximum number can be represented using multiples of 'a's and 'b's. This result is well-known and has been proved.
Finally, Let $m=3, a \geq 3!, b \geq 3!, c \geq 3!, \gcd(a,b,c) = 1$, and the 'a's, 'b's and 'c's must be at least three units apart, respectively. $N_m(x,y,z) = N_3(a,b,c) = 1*[(a-2)*(b-2)*(c-2)] -2*[(a-1)*(b-1) -1 + (a-1)*(c-1) -1 + (b-1)*(c-1) -1] +3*[a+b+c] -1*\gcd(b,c) -2*\gcd(a,c) +1$, and there will be a largest number which cannot be represented using only three denominations. All numbers after that maximum number can be represented using multiples of 'a's, 'b's, and 'c's.
I've tried it for 6, 10, 15, and 6, 9, 20. It works for those entries, and should work for others, based on the restrictions presented. Let me know what you think.