568 B
568 B
id, title, challengeType, videoUrl
| id | title | challengeType | videoUrl |
|---|---|---|---|
| 5900f4fd1000cf542c51000f | 问题401:除数的平方和 | 5 |
--description--
6的除数是1,2,3和6.这些数的平方和是1 + 4 + 9 + 36 = 50。
设sigma2(n)代表n的除数的平方和。因此sigma2(6)= 50。
设SIGMA2表示sigma2的和函数,即对于i = 1到n,SIGMA2(n)=Σsigma2(i)。 SIGMA2的前6个值是:1,6,16,37,63和113。
找到SIGMA2(1015)modulo 109。
--hints--
euler401()应该返回281632621。
assert.strictEqual(euler401(), 281632621);