freeCodeCamp/curriculum/challenges/chinese/10-coding-interview-prep/project-euler/problem-302-strong-achilles...

34 lines
930 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

---
id: 5900f49b1000cf542c50ffad
title: 问题302强阿喀琉斯数
challengeType: 5
videoUrl: ''
---
# --description--
如果p2是n中每个素数p的n的因数则正整数n是有力的。
如果n可以表示为另一个正整数的幂则正整数n是理想幂。
如果n是强大的但不是完美的幂则正整数n是阿喀琉斯数。 例如864和1800是阿喀琉斯数字864 = 25·33和1800 = 23·32·52。
如果S和φS都是阿喀琉斯数我们将正整数S称为强阿喀琉斯数.1 例如864是强致命弱点数φ864= 288 = 25·32。 但是1800不是强阿喀琉斯数字因为1800= 480 = 25·31·51。
低于104的有7个强弱点和低于108的656。
1018以下有多少个强阿喀琉斯数字
1φ表示欧拉的拉伸函数。
# --hints--
`euler302()`应该返回1170060。
```js
assert.strictEqual(euler302(), 1170060);
```
# --solutions--