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.

A019339 Primes with primitive root 11.

Original entry on oeis.org

2, 3, 13, 17, 23, 29, 31, 41, 47, 59, 67, 71, 73, 101, 103, 109, 149, 163, 173, 179, 197, 223, 233, 251, 277, 281, 293, 331, 367, 373, 383, 419, 443, 461, 463, 467, 487, 499, 557, 569, 587, 593, 599, 601, 613, 619, 643, 647, 673, 677, 683, 701, 719, 761, 769, 809, 821
Offset: 1

Views

Author

Keywords

Comments

To allow primes less than the specified primitive root m (here, 11) to be included, we use the essentially equivalent definition "Primes p such that the multiplicative order of m mod p is p-1". This comment applies to all of A019334-A019421. - N. J. A. Sloane, Dec 03 2019
This is a subsequence of A038882. - Klaus Purath, Jul 03 2023

Crossrefs

Cf. A071566.

Programs

  • Mathematica
    pr=11; Select[Prime[Range[200]], MultiplicativeOrder[pr, # ] == #-1 &]