857 B
857 B
id, title, challengeType, forumTopicId, dashedName
id | title | challengeType | forumTopicId | dashedName |
---|---|---|---|---|
5900f48f1000cf542c50ffa2 | Завдання 291: Прості числа Панайтополя | 5 | 301943 | problem-291-panaitopol-primes |
--description--
Просте число p
називається простим числом Панайтополя, якщо p = \frac{x^4 - y^4}{x^3 + y^3}
для деяких цілих натуральних чисел x
and y
.
Знайдіть скільки простих чисел Панайтополя є меншими, ніж 5 × {10}^{15}
.
--hints--
binaryCircles()
має повернути 4037526
.
assert.strictEqual(panaitopolPrimes(), 4037526);
--seed--
--seed-contents--
function panaitopolPrimes() {
return true;
}
panaitopolPrimes();
--solutions--
// solution required