--- id: 5900f47d1000cf542c50ff8f challengeType: 5 title: 'Problem 272: Modular Cubes, part 2' forumTopicId: 301922 --- ## Description
For a positive number n, define C(n) as the number of the integers x, for which 1 ## Instructions
## Tests
```yml tests: - text: euler272() should return 8495585919506151000. testString: assert.strictEqual(euler272(), 8495585919506151000); ```
## Challenge Seed
```js function euler272() { return true; } euler272(); ```
## Solution
```js // solution required ```