2018-10-10 18:03:03 -04:00
---
id: 5900f48f1000cf542c50ffa2
challengeType: 5
title: 'Problem 291: Panaitopol Primes'
2019-08-28 16:26:13 +03:00
forumTopicId: 301943
2018-10-10 18:03:03 -04:00
localeTitle: 'Problem 291: Panaitopol Primes'
---
## Description
2019-08-28 16:26:13 +03:00
< section id = 'description' >
Простое число p называется панаитоповым простым, если для некоторых натуральных x и y. < p > Найдите, сколько Панайтопольских простых чисел меньше 5 × 1015. < / p >
< / section >
2018-10-10 18:03:03 -04:00
## Instructions
2019-08-28 16:26:13 +03:00
< section id = 'instructions' >
2018-10-10 18:03:03 -04:00
< / section >
## Tests
< section id = 'tests' >
```yml
tests:
2019-08-28 16:26:13 +03:00
- text: < code > euler291()</ code > should return 4037526.
testString: assert.strictEqual(euler291(), 4037526);
2018-10-10 18:03:03 -04:00
```
< / section >
## Challenge Seed
< section id = 'challengeSeed' >
< div id = 'js-seed' >
```js
function euler291() {
// Good luck!
return true;
}
euler291();
```
< / div >
< / section >
## Solution
< section id = 'solution' >
```js
// solution required
```
2019-08-28 16:26:13 +03:00
2018-10-10 18:03:03 -04:00
< / section >