A060674 Numbers k such that phi(x) = k has exactly 11 solutions.
48, 512, 540, 1000, 1836, 2136, 2176, 2320, 2340, 3216, 3648, 3936, 4284, 4352, 4356, 4784, 5088, 5640, 5936, 6216, 6576, 6816, 7120, 7224, 7280, 7752, 8100, 8184, 8496, 8520, 8760, 9040, 9296, 9660, 9680, 9900, 9996, 10332, 10860, 11640, 11680, 11844
Offset: 1
Keywords
Examples
48 = phi(65) = phi(104) = phi(105) = phi(112) = phi(130) = phi(140) = phi(144) = phi(156) = phi(168) = phi(180) = phi(210).
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000 (terms 1..1000 from T. D. Noe)
- Max Alekseyev, PARI/GP Scripts for Miscellaneous Math Problems (invphi.gp).
Crossrefs
Programs
-
Mathematica
a = Table[ 0, {12500} ]; Do[ p = EulerPhi[ n ]; If[ p < 12501, a[ [ p ] ]++ ], {n, 1, 50000} ]; Select[ Range[ 12500 ], a[ [ # ] ] == 11 & ]
-
PARI
is(n)=sum(i=1,n,eulerphi(i)==n)==11 \\ Charles R Greathouse IV, Mar 03 2014
-
PARI
is(k) = invphiNum(k) == 11 \\ Amiram Eldar, Nov 17 2024, using Max Alekseyev's invphi.gp