2018-10-10 18:03:03 -04:00
---
id: 5900f43f1000cf542c50ff52
challengeType: 5
title: 'Problem 211: Divisor Square Sum'
2019-08-28 16:26:13 +03:00
forumTopicId: 301853
2018-10-10 18:03:03 -04:00
localeTitle: 'Задача 211: Квадратная сумма дивизора'
---
## Description
2019-08-28 16:26:13 +03:00
<section id='description'>
Для положительного целого числа n, σ 2 (n) - сумма квадратов е г о делителей. Например, σ 2 (10) = 1 + 4 + 25 + 100 = 130. Найдите сумму всех n, 0 <n <64 000 000, так что σ 2 (n) - идеальный квадрат.
</section>
2018-10-10 18:03:03 -04:00
## Instructions
2019-08-28 16:26:13 +03:00
<section id='instructions'>
2018-10-10 18:03:03 -04:00
</section>
## Tests
<section id='tests'>
```yml
tests:
2019-08-28 16:26:13 +03:00
- text: <code>euler211()</code> should return 1922364685.
testString: assert.strictEqual(euler211(), 1922364685);
2018-10-10 18:03:03 -04:00
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler211() {
// Good luck!
return true;
}
euler211();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
2019-08-28 16:26:13 +03:00
2018-10-10 18:03:03 -04:00
</section>