1.4 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.4 KiB
		
	
	
	
	
	
	
	
id, challengeType, title, videoUrl, localeTitle
| id | challengeType | title | videoUrl | localeTitle | 
|---|---|---|---|---|
| 5900f4141000cf542c50ff26 | 5 | Problem 167: Investigating Ulam sequences | Problema 167: Investigando secuencias de Ulam | 
Description
Instructions
Tests
tests:
  - text: <code>euler167()</code> debe devolver 3916160068885.
    testString: 'assert.strictEqual(euler167(), 3916160068885, "<code>euler167()</code> should return 3916160068885.");'
Challenge Seed
function euler167() {
  // Good luck!
  return true;
}
euler167();
Solution
// solution required