cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A066502 Numbers k such that 7 divides phi(k).

Original entry on oeis.org

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

Views

Author

Benoit Cloitre, Jan 04 2002

Keywords

Comments

Related to the equation x^7 == 1 (mod k): sequence gives values of k such there are solutions 1 < x < k of x^7 == 1 (mod k).
If k is a term of this sequence, then G = is a non-abelian group of order 7k, where 1 < r < n and r^7 == 1 (mod k). For example, G can be the subgroup of GL(2, Z_k) generated by x = {{1, 1}, {0, 1}} and y = {{r, 0}, {0, 1}}. - Jianing Song, Sep 17 2019
The asymptotic density of this sequence is 1 (Dressler, 1975). - Amiram Eldar, May 23 2022

Examples

			x^7 == 1 (mod k) has solutions 1 < x < k for k = 29, 43, 49, ...
		

Crossrefs

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

a(n) are the numbers generated by 7^2 = 49 and all primes congruent to 1 mod 7 (A045465). Hence sequence gives all k such that k == 0 (mod A045465(n)) for some n > 1 or k == 0 (mod 49).

Extensions

Simpler definition from Yuval Dekel (dekelyuval(AT)hotmail.com), Oct 25 2003