Files
2022-02-28 20:22:39 +01:00

43 lines
737 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
id: 5900f43f1000cf542c50ff52
title: 'Problema 211: Somma dei quadrati dei divisori'
challengeType: 5
forumTopicId: 301853
dashedName: 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`.
```js
assert.strictEqual(divisorSquareSum(), 1922364685);
```
# --seed--
## --seed-contents--
```js
function divisorSquareSum() {
return true;
}
divisorSquareSum();
```
# --solutions--
```js
// solution required
```