马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
本帖最后由 欧拉计划 于 2016-11-25 04:37 编辑
Totient Chains
Let φ be Euler's totient function, i.e. for a natural number n, φ(n) is the number of k, 1 ≤ k ≤ n, for which gcd(k,n) = 1.
By iterating φ, each positive integer generates a decreasing chain of numbers ending in 1.
E.g. if we start with 5 the sequence 5,4,2,1 is generated.
Here is a listing of all chains with length 4:
5,4,2,1
7,6,2,1
8,4,2,1
9,6,2,1
10,4,2,1
12,4,2,1
14,6,2,1
18,6,2,1
Only two of these chains start with a prime, their sum is 12.
What is the sum of all primes less than 40000000 which generate a chain of length 25?
题目:
定义 φ 为欧拉函数:对于任意自然数 n,φ(n) 就是 1 到 n 之间,与 n 互质的数的个数。
如果对 φ 进行迭代,则任一正整数都会生成一个递减到 1 的数列。
比如,我们从 5 开始,则可以得到 5,4,3,2,1 的数列。
下面是所有长度为 4 的数列:
5,4,2,1
7,6,2,1
8,4,2,1
9,6,2,1
10,4,2,1
12,4,2,1
14,6,2,1
18,6,2,1
上面的数列中,只有两个的初始值是质数,它们(初始值)的总和为 12(5+7)。
请问,小于 40000000 的素数中,哪些能生成长度为 25 的数列,求这些素数的和。
|