33, 34, 35 is the smallest triplet of consecutive positive integers such that they each have a precisely 4 positive divisors .
Find the fourth smallest positive integer such that the numbers has precisely 4 positive divisors each.
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.
def problem1239343():
count=0
for i in range(33,200):
if prime(MinFactor(i)) and prime(i//MinFactor(i)):
count+=1
else:
count=0
if count==3:
print(i)