mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-05-08 00:00:41 -04:00
737 B
737 B
id, title, challengeType, forumTopicId, dashedName
| id | title | challengeType | forumTopicId | dashedName |
|---|---|---|---|---|
| 5900f43f1000cf542c50ff52 | Problema 211: Somma dei quadrati dei divisori | 1 | 301853 | problem-211-divisor-square-sum |
--description--
Per un numero intero positivo n, sia σ_2(n) la somma dei quadrati dei suoi divisori. Ad esempio,
σ_2(10) = 1 + 4 + 25 + 100 = 130
Trova la somma di tutti i n, 0 < n < 64\\,000\\,000 tali che σ_2(n) sia un quadrato perfetto.
--hints--
divisorSquareSum() dovrebbe restituire 1922364685.
assert.strictEqual(divisorSquareSum(), 1922364685);
--seed--
--seed-contents--
function divisorSquareSum() {
return true;
}
divisorSquareSum();
--solutions--
// solution required