1.1 KiB
1.1 KiB
id, challengeType, title, forumTopicId, localeTitle
id | challengeType | title | forumTopicId | localeTitle |
---|---|---|---|---|
5900f4d11000cf542c50ffe4 | 5 | Problem 357: Prime generating integers | 302017 | Задача 357: Начальные целые числа |
Description
Найдите сумму всех натуральных чисел n, не превышающих 100 000 000, так что для каждого дивизора d из n, d + n / d является простым.
Instructions
Tests
tests:
- text: <code>euler357()</code> should return 1739023853137.
testString: assert.strictEqual(euler357(), 1739023853137);
Challenge Seed
function euler357() {
// Good luck!
return true;
}
euler357();
Solution
// solution required