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