Unfortunately you can't pair them up easily to cancel terms as you may have terms in the numerator pulling "double duty" and being the only term in the numerator divisble by multiple terms in the denominator. Consider 7C3=(7*6*5)/(1*2*3), the 2 and the 3 both go to the 6.
Do you have an easy way to fix this? You could consider primes one at a time. You can count the number of times a prime p appears in a sequence of r numbers. if [] is the greatest integer function, 1*2*3*...*r will be divisible by p to the power [r/p]+[r/p^2]+[r/p^3]+... and no higher power. Any sequence of r integers, no matter where you start, will be divisible by p to this power (possible higher). More generally any sequence of m integers will have at least [m/k] multiples of k in it. So you end up with an integer.
soulflyfgm:{n+1}Cr = nCr + nC{r-1} doesn't hold for all values of r.