mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-05-07 15:03:20 -04:00
753 B
753 B
id, title, challengeType, forumTopicId, dashedName
| id | title | challengeType | forumTopicId | dashedName |
|---|---|---|---|---|
| 5900f3fe1000cf542c50ff11 | Problem 146: Investigating a Prime Pattern | 1 | 301775 | problem-146-investigating-a-prime-pattern |
--description--
The smallest positive integer n for which the numbers n^2 + 1, n^2 + 3, n^2 + 7, n^2 + 9, n^2 + 13, and n^2 + 27 are consecutive primes is 10. The sum of all such integers n below one-million is 1242490.
What is the sum of all such integers n below 150 million?
--hints--
primePattern() should return 676333270.
assert.strictEqual(primePattern(), 676333270);
--seed--
--seed-contents--
function primePattern() {
return true;
}
primePattern();
--solutions--
// solution required