--- id: 5900f4fd1000cf542c51000f challengeType: 5 title: 'Problem 401: Sum of squares of divisors' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler401(), 281632621, "euler401() should return 281632621.");' ```
## Challenge Seed
```js function euler401() { // Good luck! return true; } euler401(); ```
## Solution
```js // solution required ```