--- id: 5900f52c1000cf542c51003e challengeType: 5 title: 'Problem 447: Retractions C' videoUrl: '' localeTitle: 'Problema 447: Retractions C' --- ## Description
Para cada inteiro n> 1, a família de funções fn, a, b é definida por fn, a, b (x) ≡ax + b mod n para a, b, x inteiro e 0

F (N) = ∑R (n) para 2≤n≤N. F (107) ≡638042271 (mod. 1 000 000 007).

Encontre F (1014) (mod 1 000 000 007).

## Instructions
## Tests
```yml tests: - text: euler447() deve retornar 530553372. testString: 'assert.strictEqual(euler447(), 530553372, "euler447() should return 530553372.");' ```
## Challenge Seed
```js function euler447() { // Good luck! return true; } euler447(); ```
## Solution
```js // solution required ```