1.2 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.2 KiB
		
	
	
	
	
	
	
	
id, challengeType, title, forumTopicId
| id | challengeType | title | forumTopicId | 
|---|---|---|---|
| 5900f4141000cf542c50ff26 | 5 | Problem 167: Investigating Ulam sequences | 301801 | 
Description
Instructions
Tests
tests:
  - text: <code>euler167()</code> should return 3916160068885.
    testString: assert.strictEqual(euler167(), 3916160068885);
Challenge Seed
function euler167() {
  // Good luck!
  return true;
}
euler167();
Solution
// solution required