--- id: 5900f52a1000cf542c51003c challengeType: 5 title: 'Problem 445: Retractions A' videoUrl: '' localeTitle: '' --- ## 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

Você está dado que ∑ R (c) para c = C (100 000, k), e 1 ≤ k ≤ 99 999 ≡ 628701600 (mod 1 000 000 007). (C (n, k) é o coeficiente binomial).

Encontre ∑ R (c) para c = C (10 000 000, k) e 1 ≤ k≤ 9 999 999. Dê a sua resposta modulo 1 000 000 007.

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