by rchitta Tue Jan 05, 2010 9:28 pm
This seems like a real tough one. Hmmm...I could try an explanation but I'm not very sure at this point.
h(100) + 1 = (2 * 4 * 6 * ... * 98 * 100) + 1
Taking 2 as a common factor:
= 2 ^ 50 * (1 * 2 * 3 * ... * 47 * 48 * 49 * 50) = 2 ^ 50 * 50!
We could observe that the above value contains all the prime factors from 2 thru 47,
Therefore,
(h (100) + 1) % 2 = 1
(h (100) + 1) % 3 = 1
(h (100) + 1) % 5 = 1
:::::::::::::::::::::::
(h (100) + 1) % 47 = 1
% refers here to a remainder...
From that we could logically deduce that if the above value h(100) + 1 has a prime factor it should be greater then 47 and that value would be the smallest prime factor (the firs t one). It is evident that all the prime factors from 2 thru 47 DO NOT divide h(100) + 1.
I think, the answer is E.