--- id: 5900f4ab1000cf542c50ffbe challengeType: 5 title: 'Problem 319: Bounded Sequences' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler319(), 268457129, "euler319() should return 268457129.");' ```
## Challenge Seed
```js function euler319() { // Good luck! return true; } euler319(); ```
## Solution
```js // solution required ```