Files

846 B
Raw Permalink Blame History

id, title, challengeType, forumTopicId, dashedName
id title challengeType forumTopicId dashedName
5900f43f1000cf542c50ff52 Завдання 211: Сума квадратів дільників 5 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