freeCodeCamp/curriculum/challenges/spanish/08-coding-interview-prep/project-euler/problem-337-totient-stairst...

56 lines
1.2 KiB
Markdown
Raw Normal View History

---
2018-10-10 20:20:40 +00:00
id: 5900f4be1000cf542c50ffd0
challengeType: 5
title: 'Problem 337: Totient Stairstep Sequences'
2018-10-10 20:20:40 +00:00
videoUrl: ''
localeTitle: Problema 337 totient secuencias Stairstep
---
## Description
2018-10-10 20:20:40 +00:00
<section id="description"> Sea {a1, a2, ..., an} una secuencia entera de longitud n tal que: a1 = 6 para todos 1 ≤ i &lt;n: φ (ai) &lt;φ (ai + 1) &lt;ai &lt;ai + 11 Sea S (N) el número de secuencias con un ≤ N. Por ejemplo, S (10) = 4: {6}, {6, 8}, {6, 8, 9} y {6, 10}. Podemos verificar que S (100) = 482073668 y S (10 000) mod 108 = 73808307. <p> Encontrar S (20 000 000) mod 108. </p><p> 1 φ denota la función totient de Euler. </p></section>
## Instructions
2018-10-10 20:20:40 +00:00
<section id="instructions">
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: <code>euler337()</code> debe devolver 85068035.
testString: 'assert.strictEqual(euler337(), 85068035, "<code>euler337()</code> should return 85068035.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler337() {
// Good luck!
return true;
}
euler337();
2018-10-10 20:20:40 +00:00
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>