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!)
A060669 Numbers n such that phi(x) = n has exactly 6 solutions. 1
12, 16, 84, 88, 112, 232, 348, 408, 592, 736, 760, 780, 832, 952, 984, 1032, 1048, 1068, 1128, 1232, 1272, 1312, 1332, 1428, 1432, 1488, 1552, 1608, 1692, 1912, 2052, 2200, 2272, 2292, 2436, 2484, 2552, 2576, 2608, 2632, 2700, 2728, 2832, 2848, 3048, 3088 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
12 = phi(13) = phi(21) = phi(26) = phi(28) = phi(36) = phi(42).
MATHEMATICA
a = Table[ 0, {4000} ]; Do[ p = EulerPhi[ n ]; If[ p < 4001, a[ [ p ] ]++ ], {n, 1, 15000} ]; Select[ Range[ 4000 ], a[ [ # ] ] == 6 & ]
Take[Select[Tally[EulerPhi[Range[50000]]], #[[2]]==6&][[All, 1]]//Sort, 50] (* Harvey P. Dale, Sep 15 2016 *)
PROG
(PARI) is(n)=sum(i=1, n, eulerphi(i)==n)==6 \\ Charles R Greathouse IV, Mar 03 2014
CROSSREFS
Sequence in context: A219390 A050585 A050555 * A166644 A264492 A264485
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 May 9 12:21 EDT 2024. Contains 372350 sequences. (Running on oeis4.)