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>
		
			
				
	
	
	
		
			949 B
		
	
	
	
	
	
	
	
			
		
		
	
	
			949 B
		
	
	
	
	
	
	
	
id, challengeType, isHidden, title, forumTopicId
| id | challengeType | isHidden | title | forumTopicId | 
|---|---|---|---|---|
| 5900f5361000cf542c510048 | 5 | false | Problem 457: A polynomial modulo the square of a prime | 302131 | 
Description
Let SR(L) be ∑R(p) for all primes not exceeding L.
Find SR(107).
Instructions
Tests
tests:
  - text: <code>euler457()</code> should return 2647787126797397000.
    testString: assert.strictEqual(euler457(), 2647787126797397000);
Challenge Seed
function euler457() {
  // Good luck!
  return true;
}
euler457();
Solution
// solution required