|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
Ordered radicals
The radical of n, rad(n), is the product of the distinct prime factors of n. For example, 504 = 23 × 32 × 7, so rad(504) = 2 × 3 × 7 = 42.
If we calculate rad(n) for 1 ≤ n ≤ 10, then sort them on rad(n), and sorting on n if the radical values are equal, we get:
Let E(k) be the kth element in the sorted n column; for example, E(4) = 8 and E(6) = 9.
If rad(n) is sorted for 1 ≤ n ≤ 100000, find E(10000).
题目:
n 的根函数,rad(n),定义为其所有不同质因子之积。例如,504 = 23 × 32 × 7,所以 rad(504) = 2 × 3 × 7 = 42。
如果我们对 1 ≤ n ≤ 10 计算 rad(n),然后先根据 rad(n) 的值排序,如果 rad 值相同再根据 n 排序,我们得到:
令 E(k) 为排序之后的第 k 个 n 值,例如, E(4) = 8, E(6) = 9。
如果将 1 ≤ n ≤ 100000 的 rad(n) 按照上述方法排序,求 E(10000)。
|
|