--- id: 5900f5131000cf542c510025 challengeType: 5 title: 'Problem 422: Sequence of points on a hyperbola' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler422(), 92060460, "euler422() should return 92060460.");' ```
## Challenge Seed
```js function euler422() { // Good luck! return true; } euler422(); ```
## Solution
```js // solution required ```