mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-04-14 07:00:51 -04:00
846 B
846 B
id, title, challengeType, forumTopicId, dashedName
| id | title | challengeType | forumTopicId | dashedName |
|---|---|---|---|---|
| 5900f43f1000cf542c50ff52 | Завдання 211: Сума квадратів дільників | 1 | 301853 | problem-211-divisor-square-sum |
--description--
Нехай σ_2(n) — сума квадратів дільників додатного цілого числа n. Наприклад,
σ_2(10) = 1 + 4 + 25 + 100 = 130
Знайдіть суму всіх n, 0 < n < 64\\,000\\,000 так, щоб σ_2(n) було квадратом цілого числа.
--hints--
divisorSquareSum() має повернути 1922364685.
assert.strictEqual(divisorSquareSum(), 1922364685);
--seed--
--seed-contents--
function divisorSquareSum() {
return true;
}
divisorSquareSum();
--solutions--
// solution required