--- id: 5900f4ab1000cf542c50ffbe challengeType: 5 videoUrl: '' title: 问题319:有界序列 --- ## Description
令x1,x2,...,xn为长度为n的序列,使得: x1 = 2 对于所有1 ## Instructions
## Tests
```yml tests: - text: euler319()应该返回268457129。 testString: assert.strictEqual(euler319(), 268457129); ```
## Challenge Seed
```js function euler319() { // Good luck! return true; } euler319(); ```
## Solution
```js // solution required ``` /section>