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!)
A319383 Numbers k such that phi(k)^phi(k) == 1 (mod k^2). 0
1, 2, 19043, 289627, 6674419, 49865347, 185014655 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
All terms are cyclic numbers (A003277).
The next term, if it exists, is > 10^10. - Vaclav Kotesovec, Oct 23 2018
a(8) > 10^12, if it exists. - Giovanni Resta, Oct 25 2018
LINKS
MATHEMATICA
Select[Range[20000], Divisible[EulerPhi[#]^EulerPhi[#] - 1, #^2] &] (* Vaclav Kotesovec, Oct 21 2018 *)
Join[{1}, Select[Range[1851*10^5], With[{c=EulerPhi[#]}, PowerMod[c, c, #^2] == 1&]]] (* Harvey P. Dale, Oct 09 2020 *)
PROG
(PARI) isok(n) = Mod(eulerphi(n), n^2)^eulerphi(n)==1;
for(n=1, 10000000, if(isok(n), print1(n, ", ")))
CROSSREFS
Sequence in context: A260252 A324437 A158344 * A124364 A173156 A214598
KEYWORD
nonn,more
AUTHOR
Altug Alkan, Sep 18 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 16 08:27 EDT 2024. Contains 371698 sequences. (Running on oeis4.)