--- id: 5900f47b1000cf542c50ff8d challengeType: 5 title: 'Problem 271: Modular Cubes, part 1' forumTopicId: 301921 --- ## Description
For a positive number n, define S(n) as the sum of the integers x, for which 1 ## Instructions
## Tests
```yml tests: - text: euler271() should return 4617456485273130000. testString: assert.strictEqual(euler271(), 4617456485273130000); ```
## Challenge Seed
```js function euler271() { // Good luck! return true; } euler271(); ```
## Solution
```js // solution required ```