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!)
A303745 Totients t where gcd({x: phi(x)=t}) > 1. 6
10, 22, 28, 30, 44, 46, 52, 54, 56, 58, 66, 70, 78, 82, 92, 102, 104, 106, 110, 116, 126, 130, 136, 138, 140, 148, 150, 164, 166, 172, 178, 184, 190, 196, 198, 204, 208, 210, 212, 220, 222, 226, 228, 238, 250, 260, 262, 268, 270, 282, 292, 294, 296, 306 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
If the least solution of phi(x)=t is prime then gcd({x: phi(x)=t}) is prime.
If gcd({x: phi(x)=t}) > 1 is not prime then the least solution of phi(x)=t is not prime.
For known terms if the number of solutions of x: phi(x)=t is 2 or 3 then the least solution divides the greatest solution (see A297475). - Torlach Rush, Jul 03 2018
LINKS
Maxim Rytin, Finding the Inverse of Euler Totient Function, Wolfram Library Archive, 1999.
FORMULA
gcd({x: phi(x)=t}) > 1.
EXAMPLE
10 is a term because the greatest common divisor of 11 and 22, the solutions of phi(10) is 11.
2 is not a term because the greatest common divisor of 3, 4 and 6, the solutions of phi(2) is 1.
MAPLE
filter:= proc(n) local L;
L:= numtheory:-invphi(n);
L <> [] and igcd(op(L)) > 1
end proc:
select(filter, [seq(i, i=2..1000, 2)]); # Robert Israel, Jun 26 2018
MATHEMATICA
Select[Range[2, 1000, 2], GCD@@invphi[#] > 1&] (* Jean-François Alcover, Jan 31 2023, using Maxim Rytin's invphi program *)
PROG
(PARI) isok(n) = gcd(invphi(n)) > 1; \\ Michel Marcus, May 13 2018
CROSSREFS
Sequence in context: A104865 A063555 A228010 * A303746 A303747 A007366
KEYWORD
nonn
AUTHOR
Torlach Rush, Apr 29 2018
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 18 22:18 EDT 2024. Contains 371782 sequences. (Running on oeis4.)