--- id: 5900f4f81000cf542c51000b challengeType: 5 title: 'Problem 396: Weak Goodstein sequence' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler396(), 173214653, "euler396() should return 173214653.");' ```
## Challenge Seed
```js function euler396() { // Good luck! return true; } euler396(); ```
## Solution
```js // solution required ```