Files
freeCodeCamp/curriculum/challenges/italian/10-coding-interview-prep/project-euler/problem-248-numbers-for-which-eulers-totient-function-equals-13.md
2022-02-28 20:22:39 +01:00

728 B

id, title, challengeType, forumTopicId, dashedName
id title challengeType forumTopicId dashedName
5900f4651000cf542c50ff77 Problema 248: Numeri per i quali la funzione toziente di Eulero è uguale a 13! 5 301895 problem-248-numbers-for-which-eulers-totient-function-equals-13

--description--

Il primo numero n per il quale φ(n) = 13! è 6\\,227\\,180\\,929.

Trova il {150\\,000}^{\text{mo}} di questi numeri.

--hints--

eulersTotientFunctionEquals() dovrebbe restituire 23507044290.

assert.strictEqual(eulersTotientFunctionEquals(), 23507044290);

--seed--

--seed-contents--

function eulersTotientFunctionEquals() {

  return true;
}

eulersTotientFunctionEquals();

--solutions--

// solution required