1.2 KiB
1.2 KiB
id, challengeType, title, forumTopicId, localeTitle
id | challengeType | title | forumTopicId | localeTitle |
---|---|---|---|---|
5900f4311000cf542c50ff44 | 5 | Problem 197: Investigating the behaviour of a recursively defined sequence | 301835 | Задача 197: Исследование поведения рекурсивно определенной последовательности |
Description
Найти un + un + 1 для n = 1012. Дайте свой ответ с 9 цифрами после десятичной точки.
Instructions
Tests
tests:
- text: <code>euler197()</code> should return 1.710637717.
testString: assert.strictEqual(euler197(), 1.710637717);
Challenge Seed
function euler197() {
// Good luck!
return true;
}
euler197();
Solution
// solution required