--- id: 5900f5181000cf542c51002a challengeType: 5 title: 'Problem 427: n-sequences' videoUrl: '' localeTitle: 'Задача 427: n-последовательности' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler427(), 97138867, "euler427() should return 97138867.");' ```
## Challenge Seed
```js function euler427() { // Good luck! return true; } euler427(); ```
## Solution
```js // solution required ```