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.

A019350 Primes with primitive root 23.

Original entry on oeis.org

2, 3, 5, 17, 47, 59, 89, 97, 113, 127, 131, 137, 149, 167, 179, 181, 223, 229, 281, 293, 307, 311, 337, 347, 389, 401, 421, 433, 439, 443, 457, 487, 491, 499, 521, 547, 557, 569, 587, 599, 607, 617, 641, 647, 661, 677, 683, 709, 719, 733, 739, 769, 773, 797, 811, 823
Offset: 1

Views

Author

Keywords

Programs

  • Mathematica
    pr=23; Select[Prime[Range[200]], MultiplicativeOrder[pr, # ] == #-1 &]
    Join[{2,3,5,17},Select[Prime[Range[200]],PrimitiveRoot[#,23]==23&]] (* Harvey P. Dale, Jan 09 2024 *)
  • PARI
    is(n)=isprime(n) && n!=23 && znorder(Mod(23,n))==n-1 \\ Charles R Greathouse IV, Sep 28 2015