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