--- id: 5900f4ea1000cf542c50fffc challengeType: 5 title: 'Problem 381: (prime-k) factorial' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler381(), 139602943319822, "euler381() should return 139602943319822.");' ```
## Challenge Seed
```js function euler381() { // Good luck! return true; } euler381(); ```
## Solution
```js // solution required ```