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>
1020 B
1020 B
id, challengeType, isHidden, title, forumTopicId
id | challengeType | isHidden | title | forumTopicId |
---|---|---|---|---|
5900f5191000cf542c51002c | 5 | false | Problem 429: Sum of squares of unitary divisors | 302099 |
Description
Let S(n) represent the sum of the squares of the unitary divisors of n. Thus S(4!)=650.
Find S(100 000 000!) modulo 1 000 000 009.
Instructions
Tests
tests:
- text: <code>euler429()</code> should return 98792821.
testString: assert.strictEqual(euler429(), 98792821);
Challenge Seed
function euler429() {
// Good luck!
return true;
}
euler429();
Solution
// solution required