--- id: 5900f4c11000cf542c50ffd3 challengeType: 5 title: 'Problem 341: Golomb"s self-describing sequence' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler341(), 56098610614277016, "euler341() should return 56098610614277016.");' ```
## Challenge Seed
```js function euler341() { // Good luck! return true; } euler341(); ```
## Solution
```js // solution required ```