Files
freeCodeCamp/curriculum/challenges/japanese/10-coding-interview-prep/project-euler/problem-146-investigating-a-prime-pattern.md
2022-01-20 20:30:18 +01:00

804 B

id, title, challengeType, forumTopicId, dashedName
id title challengeType forumTopicId dashedName
5900f3fe1000cf542c50ff11 問題 146: 素数パターンを調べ上げる 5 301775 problem-146-investigating-a-prime-pattern

--description--

n^2 + 1, n^2 + 3, n^2 + 7, n^2 + 9, n^2 + 13, n^2 + 27 が連続する素数になるような最小の正の整数 n は 10 です。 100 万未満のそのような整数 n の総和は 1242490 です。

1 億 5000 万未満のそのような整数 n の総和を求めなさい。

--hints--

primePattern()676333270 を返す必要があります。

assert.strictEqual(primePattern(), 676333270);

--seed--

--seed-contents--

function primePattern() {

  return true;
}

primePattern();

--solutions--

// solution required