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>
		
			
				
	
	
	
		
			952 B
		
	
	
	
	
	
	
	
			
		
		
	
	
			952 B
		
	
	
	
	
	
	
	
id, challengeType, isHidden, title, forumTopicId
| id | challengeType | isHidden | title | forumTopicId | 
|---|---|---|---|---|
| 5900f4551000cf542c50ff68 | 5 | false | Problem 233: Lattice points on a circle | 301877 | 
Description
What is the sum of all positive integers N ≤ 1011 such that f(N) = 420 ?
Instructions
Tests
tests:
  - text: <code>euler233()</code> should return 271204031455541300.
    testString: assert.strictEqual(euler233(), 271204031455541300);
Challenge Seed
function euler233() {
  // Good luck!
  return true;
}
euler233();
Solution
// solution required