612 B
612 B
id, title, challengeType, videoUrl
id | title | challengeType | videoUrl |
---|---|---|---|
5900f4c11000cf542c50ffd3 | 问题341:Golomb的自我描述序列 | 5 |
--description--
Golomb的自描述序列{G(n)}是唯一的非递减自然数序列,因此n在序列中恰好出现G(n)次。前几个n的G(n)值是
n123456789101112131415 ... G(n)的122334445556666 ...
给出G(103)= 86,G(106)= 6137.对于1≤n<103,还给出ΣG(n3)= 153506976。
找到ΣG(n3)为1≤n<106。
--hints--
euler341()
应该返回56098610614277016。
assert.strictEqual(euler341(), 56098610614277016);