--- id: 5900f48f1000cf542c50ffa2 challengeType: 5 videoUrl: '' title: 问题291:Panaitopol素数 --- ## Description
如果对于某些正整数x和y,素数p称为Panaitopol素数。 找出多少个Panaitopol素数小于5×1015。
## Instructions
## Tests
```yml tests: - text: euler291()应该返回4037526。 testString: assert.strictEqual(euler291(), 4037526); ```
## Challenge Seed
```js function euler291() { // Good luck! return true; } euler291(); ```
## Solution
```js // solution required ``` /section>