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>
		
			
				
	
	
	
		
			921 B
		
	
	
	
	
	
	
	
			
		
		
	
	
			921 B
		
	
	
	
	
	
	
	
id, challengeType, isHidden, title, forumTopicId
| id | challengeType | isHidden | title | forumTopicId | 
|---|---|---|---|---|
| 5900f4d11000cf542c50ffe4 | 5 | false | Problem 357: Prime generating integers | 302017 | 
Description
Find the sum of all positive integers n not exceeding 100 000 000such that for every divisor d of n, d+n/d is prime.
Instructions
Tests
tests:
  - text: <code>euler357()</code> should return 1739023853137.
    testString: assert.strictEqual(euler357(), 1739023853137);
Challenge Seed
function euler357() {
  // Good luck!
  return true;
}
euler357();
Solution
// solution required