2018-09-30 23:01:58 +01:00
|
|
|
|
---
|
|
|
|
|
id: 5900f4d61000cf542c50ffe9
|
|
|
|
|
title: 'Problem 362: Squarefree factors'
|
2020-11-27 19:02:05 +01:00
|
|
|
|
challengeType: 5
|
2019-08-05 09:17:33 -07:00
|
|
|
|
forumTopicId: 302023
|
2021-01-13 03:31:00 +01:00
|
|
|
|
dashedName: problem-362-squarefree-factors
|
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
|
|
|
|
Consider the number 54.
|
2020-11-27 19:02:05 +01:00
|
|
|
|
|
2018-09-30 23:01:58 +01:00
|
|
|
|
54 can be factored in 7 distinct ways into one or more factors larger than 1:
|
|
|
|
|
|
2021-07-29 21:48:17 +02:00
|
|
|
|
$$54, 2 × 27, 3 × 18, 6 × 9, 3 × 3 × 6, 2 × 3 × 9 \text{ and } 2 × 3 × 3 × 3$$
|
2018-09-30 23:01:58 +01:00
|
|
|
|
|
2021-07-29 21:48:17 +02:00
|
|
|
|
If we require that the factors are all squarefree only two ways remain: $3 × 3 × 6$ and $2 × 3 × 3 × 3$.
|
2018-09-30 23:01:58 +01:00
|
|
|
|
|
2021-07-29 21:48:17 +02:00
|
|
|
|
Let's call $Fsf(n)$ the number of ways $n$ can be factored into one or more squarefree factors larger than 1, so $Fsf(54) = 2$.
|
2018-09-30 23:01:58 +01:00
|
|
|
|
|
2021-07-29 21:48:17 +02:00
|
|
|
|
Let $S(n)$ be $\sum Fsf(k)$ for $k = 2$ to $n$.
|
2018-09-30 23:01:58 +01:00
|
|
|
|
|
2021-07-29 21:48:17 +02:00
|
|
|
|
$S(100) = 193$.
|
2018-09-30 23:01:58 +01:00
|
|
|
|
|
2021-07-29 21:48:17 +02:00
|
|
|
|
Find $S(10\\,000\\,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 21:48:17 +02:00
|
|
|
|
`squarefreeFactors()` should return `457895958010`.
|
2018-09-30 23:01:58 +01:00
|
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
|
```js
|
2021-07-29 21:48:17 +02:00
|
|
|
|
assert.strictEqual(squarefreeFactors(), 457895958010);
|
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 21:48:17 +02:00
|
|
|
|
function squarefreeFactors() {
|
2020-09-15 09:57:40 -07:00
|
|
|
|
|
2018-09-30 23:01:58 +01:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-29 21:48:17 +02:00
|
|
|
|
squarefreeFactors();
|
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
|
|
|
|
|
```
|