A066502 Numbers k such that 7 divides phi(k).
29, 43, 49, 58, 71, 86, 87, 98, 113, 116, 127, 129, 142, 145, 147, 172, 174, 196, 197, 203, 211, 213, 215, 226, 232, 239, 245, 254, 258, 261, 281, 284, 290, 294, 301, 319, 337, 339, 343, 344, 348, 355, 377, 379, 381, 387, 392, 394, 406, 421, 422, 426, 430
Offset: 1
Keywords
Examples
x^7 == 1 (mod k) has solutions 1 < x < k for k = 29, 43, 49, ...
Links
- Harry J. Smith, Table of n, a(n) for n = 1..1000
- Robert E. Dressler, A property of the phi and sigma_j functions, Compositio Mathematica, Vol. 31, No. 2 (1975), pp. 115-118.
Programs
-
Mathematica
Select[Range[500],Divisible[EulerPhi[#],7]&] (* Harvey P. Dale, Apr 12 2012 *)
-
PARI
isok(k) = { eulerphi(k)%7 == 0 } \\ Harry J. Smith, Feb 18 2010
Formula
Extensions
Simpler definition from Yuval Dekel (dekelyuval(AT)hotmail.com), Oct 25 2003
Comments