1.0 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.0 KiB
		
	
	
	
	
	
	
	
id, challengeType, title, videoUrl, localeTitle
| id | challengeType | title | videoUrl | localeTitle | 
|---|---|---|---|---|
| 5900f44e1000cf542c50ff60 | 5 | Problem 225: Tribonacci non-divisors | 问题225:Tribonacci非除数 | 
Description
可以证明27不会划分该序列的任何项。实际上,27是具有该属性的第一个奇数。
找到不分割上述序列的任何项的第124个奇数。
Instructions
Tests
tests:
  - text: <code>euler225()</code>应该返回2009年。
    testString: 'assert.strictEqual(euler225(), 2009, "<code>euler225()</code> should return 2009.");'
Challenge Seed
function euler225() {
  // Good luck!
  return true;
}
euler225();
Solution
// solution required