login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A194085 Strong Achilles numbers: Achilles numbers m such that phi(m) is also an Achilles number, where phi(m) denotes Euler's totient function of m. 1

%I #21 Sep 26 2020 14:34:50

%S 500,864,1944,2000,2592,3456,5000,10125,10368,12348,12500,16875,19652,

%T 19773,30375,31104,32000,33275,37044,40500,49392,50000,52488,55296,

%U 61731,64827,67500,69984,78608,80000,81000,83349,84375,93312,108000

%N Strong Achilles numbers: Achilles numbers m such that phi(m) is also an Achilles number, where phi(m) denotes Euler's totient function of m.

%H Ray Chandler, <a href="/A194085/b194085.txt">Table of n, a(n) for n = 1..656</a>

%H Project Euler, <a href="https://projecteuler.net/index.php?section=problems&amp;id=302">Problem 302: Strong Achilles Numbers</a>

%t achillesQ[n_] := With[{ee = FactorInteger[n][[All, 2]]}, Min[ee] > 1 && GCD @@ ee == 1];

%t Select[Range[10^6], achillesQ[#] && achillesQ[EulerPhi[#]]&] (* _Jean-François Alcover_, Sep 26 2020 *)

%o (PARI) isA(n)=!ispower(n) && ispowerful(n)

%o is(n)=isA(n) && isA(eulerphi(n)) \\ _Charles R Greathouse IV_, Dec 19 2013

%Y Cf. A052486 (Achilles numbers)

%K nonn

%O 1,1

%A _Kausthub Gudipati_, Aug 14 2011

%E Extended by _Ray Chandler_, Aug 16 2011

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 12:33 EDT 2024. Contains 371969 sequences. (Running on oeis4.)