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.

A019344 Primes with primitive root 17.

Original entry on oeis.org

2, 3, 5, 7, 11, 23, 31, 37, 41, 61, 97, 107, 113, 131, 139, 167, 173, 193, 197, 211, 227, 233, 269, 277, 283, 311, 313, 317, 347, 367, 379, 401, 419, 431, 439, 449, 479, 487, 499, 503, 521, 547, 571, 607, 617, 641, 643, 653, 673, 677, 683, 691, 709, 719, 743, 751, 787
Offset: 1

Views

Author

Keywords

Programs

  • Mathematica
    pr=17; Select[Prime[Range[200]], MultiplicativeOrder[pr, # ] == #-1 &]
    Join[{2,3,5,7,11},Select[Prime[Range[200]],PrimitiveRoot[#,17]==17&]] (* Harvey P. Dale, Jul 03 2019 *)