How many positive integer under 50 have exactly 2 distinct primes factors? No repeats, doesn't count.
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Only possible way to have 2 factors is to have a number of form p q , where both p and q are primes (raised to the power of 1). Since 2 9 ⋅ 2 > 5 0 , the primes are less than or equal to 23.
So we need to calculate the combinations of product of primes with product less than 50.
2 can be multiplied with 3, 5, 7, 11, 13, 17, 19, 23
3 can be multiplied with 5, 7, 11, 13
5 can be multiplied with 7
For all other, we either need to repeat a pair or the product is greater than 50. Therefore the answer is 13.