1.0 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.0 KiB
		
	
	
	
	
	
	
	
id, challengeType, title, forumTopicId
| id | challengeType | title | forumTopicId | 
|---|---|---|---|
| 5900f52c1000cf542c51003e | 5 | Problem 447: Retractions C | 302119 | 
Description
Find F(1014) (mod 1 000 000 007).
Instructions
Tests
tests:
  - text: <code>euler447()</code> should return 530553372.
    testString: assert.strictEqual(euler447(), 530553372);
Challenge Seed
function euler447() {
  // Good luck!
  return true;
}
euler447();
Solution
// solution required