用筛法计算根基后排序即得结果为$21417$。
注:以下为Python3代码,因math.prod是Python3中的新函数。
import math
target=100001
d=[[1] for i in range(target)]
n=2
while n < target:
for i in range(n,target,n):
d[i].append(n)
n+=1
while n < target and len(d[n])>1:
n+=1
print(sorted([[math.prod(d[n]),n] for n in range(1,target)])[9999][1])
|