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!)
A060673 Numbers n such that phi(x) = n has exactly 10 solutions. 1
24, 80, 180, 256, 264, 828, 1188, 1640, 1968, 2024, 2368, 2544, 2720, 2772, 2904, 3036, 3136, 3144, 3328, 3392, 3420, 4192, 4392, 4464, 4600, 5000, 5312, 5504, 5508, 5688, 5728, 5796, 5800, 6208, 6228, 6732, 6888, 7000, 7232, 7740, 7956, 8388, 8576, 9088 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
24 = phi(35) = phi(39) = phi(45) = phi(52) = phi(56) = phi(70) = phi(72) = phi(78) = phi(84) = phi(90).
MATHEMATICA
a = Table[ 0, {10000} ]; Do[ p = EulerPhi[ n ]; If[ p < 10001, a[ [ p ] ]++ ], {n, 1, 35000} ]; Select[ Range[ 10000 ], a[ [ # ] ] == 10 & ]
Take[Select[Tally[EulerPhi[Range[50000]]], #[[2]]==10&][[;; , 1]]//Union, 50] (* Harvey P. Dale, Sep 15 2023 *)
PROG
(PARI) is(n)=sum(i=1, n, eulerphi(i)==n)==10 \\ Charles R Greathouse IV, Mar 03 2014
CROSSREFS
Sequence in context: A143839 A114818 A190102 * A167561 A211575 A211583
KEYWORD
nonn
AUTHOR
Robert G. Wilson v, Apr 18 2001
STATUS
approved

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 17 22:23 EDT 2024. Contains 371767 sequences. (Running on oeis4.)