--- id: 5900f39c1000cf542c50feae challengeType: 5 title: 'Problem 47: Distinct primes factors' videoUrl: '' localeTitle: 'Проблема 47: Определенные коэффициенты простых чисел' --- ## Description
Первые два последовательных номера имеют два разных основных фактора:
14 = 2 × 7
15 = 3 × 5
Первые три последовательных номера имеют три различных основных фактора:
644 = 2 × × 7 × 23
645 = 3 × 5 × 43
646 = 2 × 17 × 19
Найдите первые четыре последовательных целых числа, каждый из которых имеет четыре различных основных фактора. Каков первый из этих чисел?
## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(distinctPrimeFactors(2, 2), 14, "distinctPrimeFactors(2, 2) should return 14.");' - text: '' testString: 'assert.strictEqual(distinctPrimeFactors(3, 3), 644, "distinctPrimeFactors(3, 3) should return 644.");' - text: '' testString: 'assert.strictEqual(distinctPrimeFactors(4, 4), 134043, "distinctPrimeFactors(4, 4) should return 134043.");' ```
## Challenge Seed
```js function distinctPrimeFactors(targetNumPrimes, targetConsecutive) { // Good luck! return true; } distinctPrimeFactors(4, 4); ```
## Solution
```js // solution required ```