freeCodeCamp/curriculum/challenges/chinese/10-coding-interview-prep/project-euler/problem-337-totient-stairst...

43 lines
816 B
Markdown
Raw Normal View History

---
id: 5900f4be1000cf542c50ffd0
title: 问题337欧拉序列阶梯
challengeType: 5
videoUrl: ''
dashedName: problem-337-totient-stairstep-sequences
---
# --description--
令{a1a2...an}为长度为n的整数序列使得a1 = 6对于所有1≤i<nφai<φai + 1<ai <ai + 11令SN为具有≤N的这种序列的数目。例如S10= 4{6}{6,8}{6,8,9}和{6,10}。我们可以验证S100= 482073668和S10 000mod 108 = 73808307。
找到S20 000 000mod 108。
1φ表示欧拉的函数。
# --hints--
`euler337()`应该返回85068035。
```js
assert.strictEqual(euler337(), 85068035);
```
# --seed--
## --seed-contents--
```js
function euler337() {
return true;
}
euler337();
```
# --solutions--
```js
// solution required
```