2020-09-29 22:09:04 +02:00

780 B
Raw Blame History

id, challengeType, title, forumTopicId
id challengeType title forumTopicId
5900f48f1000cf542c50ffa2 5 Problem 291: Panaitopol Primes 301943

Description

A prime number p is called a Panaitopol prime if for some positive integersx and y.

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() {

  return true;
}

euler291();

Solution

// solution required