--- 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
## Tests
```yml tests: - text: 'distinctPrimeFactors(2, 2)应该返回14。' testString: 'assert.strictEqual(distinctPrimeFactors(2, 2), 14, "distinctPrimeFactors(2, 2) should return 14.");' - text: 'distinctPrimeFactors(3, 3)应该返回644。' testString: 'assert.strictEqual(distinctPrimeFactors(3, 3), 644, "distinctPrimeFactors(3, 3) should return 644.");' - text: 'distinctPrimeFactors(4, 4)应该返回134043。' 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 ```