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

1.2 KiB

id challengeType title videoUrl localeTitle
5900f4be1000cf542c50ffd0 5 Problem 337: Totient Stairstep Sequences Problema 337 totient secuencias Stairstep

Description

Sea {a1, a2, ..., an} una secuencia entera de longitud n tal que: a1 = 6 para todos 1 ≤ i <n: φ (ai) <φ (ai + 1) <ai <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.

Encontrar S (20 000 000) mod 108.

1 φ denota la función totient de Euler.

Instructions

Tests

tests:
  - text: <code>euler337()</code> debe devolver 85068035.
    testString: 'assert.strictEqual(euler337(), 85068035, "<code>euler337()</code> should return 85068035.");'

Challenge Seed

function euler337() {
  // Good luck!
  return true;
}

euler337();

Solution

// solution required