2018-09-30 23:01:58 +01:00
---
id: 5900f4c81000cf542c50ffd9
title: 'Problem 347: Largest integer divisible by two primes'
2020-11-27 19:02:05 +01:00
challengeType: 5
2019-08-05 09:17:33 -07:00
forumTopicId: 302006
2021-01-13 03:31:00 +01:00
dashedName: problem-347-largest-integer-divisible-by-two-primes
2018-09-30 23:01:58 +01:00
---
2020-11-27 19:02:05 +01:00
# --description--
2018-09-30 23:01:58 +01:00
2021-07-29 19:14:22 +02:00
The largest integer $≤ 100$ that is only divisible by both the primes 2 and 3 is 96, as $96 = 32 \times 3 = 2^5 \times 3$.
2018-09-30 23:01:58 +01:00
2021-07-29 19:14:22 +02:00
For two distinct primes $p$ and $q$ let $M(p, q, N)$ be the largest positive integer $≤ N$ only divisible by both $p$ and $q$ and $M(p, q, N)=0$ if such a positive integer does not exist.
2018-09-30 23:01:58 +01:00
2021-07-29 19:14:22 +02:00
E.g. $M(2, 3, 100) = 96$.
2018-09-30 23:01:58 +01:00
2021-07-29 19:14:22 +02:00
$M(3, 5, 100) = 75$ and not 90 because 90 is divisible by 2, 3 and 5. Also $M(2, 73, 100) = 0$ because there does not exist a positive integer $≤ 100$ that is divisible by both 2 and 73.
2018-09-30 23:01:58 +01:00
2021-07-29 19:14:22 +02:00
Let $S(N)$ be the sum of all distinct $M(p, q, N)$. $S(100)=2262$.
2018-09-30 23:01:58 +01:00
2021-07-29 19:14:22 +02:00
Find $S(10\\,000\\,000)$.
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
# --hints--
2018-09-30 23:01:58 +01:00
2021-07-29 19:14:22 +02:00
`integerDivisibleByTwoPrimes()` should return `11109800204052` .
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
```js
2021-07-29 19:14:22 +02:00
assert.strictEqual(integerDivisibleByTwoPrimes(), 11109800204052);
2018-09-30 23:01:58 +01:00
```
2020-11-27 19:02:05 +01:00
# --seed--
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
## --seed-contents--
2018-09-30 23:01:58 +01:00
```js
2021-07-29 19:14:22 +02:00
function integerDivisibleByTwoPrimes() {
2020-09-15 09:57:40 -07:00
2018-09-30 23:01:58 +01:00
return true;
}
2021-07-29 19:14:22 +02:00
integerDivisibleByTwoPrimes();
2018-09-30 23:01:58 +01:00
```
2020-11-27 19:02:05 +01:00
# --solutions--
2018-09-30 23:01:58 +01:00
```js
// solution required
```