Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> Co-authored-by: Kristofer Koishigawa <scissorsneedfoodtoo@gmail.com> Co-authored-by: Beau Carnes <beaucarnes@gmail.com>
917 B
917 B
id, challengeType, isHidden, title, forumTopicId
id | challengeType | isHidden | title | forumTopicId |
---|---|---|---|---|
5900f5041000cf542c510016 | 5 | false | Problem 407: Idempotents | 302075 |
Description
The largest value of a such that a2 ≡ a mod 6 is 4. Let's call M(n) the largest value of a < n such that a2 ≡ a (mod n). So M(6) = 4.
Find ∑M(n) for 1 ≤ n ≤ 107.
Instructions
Tests
tests:
- text: <code>euler407()</code> should return 39782849136421.
testString: assert.strictEqual(euler407(), 39782849136421);
Challenge Seed
function euler407() {
// Good luck!
return true;
}
euler407();
Solution
// solution required