Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> Co-authored-by: Kristofer Koishigawa <scissorsneedfoodtoo@gmail.com> Co-authored-by: Beau Carnes <beaucarnes@gmail.com>
811 B
811 B
id, challengeType, isHidden, title, forumTopicId
| id | challengeType | isHidden | title | forumTopicId |
|---|---|---|---|---|
| 5900f48f1000cf542c50ffa2 | 5 | false | Problem 291: Panaitopol Primes | 301943 |
Description
Find how many Panaitopol primes are less than 5×1015.
Instructions
Tests
tests:
- text: <code>euler291()</code> should return 4037526.
testString: assert.strictEqual(euler291(), 4037526);
Challenge Seed
function euler291() {
// Good luck!
return true;
}
euler291();
Solution
// solution required