freeCodeCamp/curriculum/challenges/japanese/10-coding-interview-prep/project-euler/problem-248-numbers-for-whi...

763 B

id title challengeType forumTopicId dashedName
5900f4651000cf542c50ff77 問題 248: オイラーのトーティエント関数が 13! となる数 1 301895 problem-248-numbers-for-which-eulers-totient-function-equals-13

--description--

φ(n) = 13! を満たす最小の数 n6\\,227\\,180\\,929 です。

上の式を満たす {150\\,000} 番目の数を求めなさい。

--hints--

eulersTotientFunctionEquals()23507044290 を返す必要があります。

assert.strictEqual(eulersTotientFunctionEquals(), 23507044290);

--seed--

--seed-contents--

function eulersTotientFunctionEquals() {

  return true;
}

eulersTotientFunctionEquals();

--solutions--

// solution required