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.

Showing 1-1 of 1 results.

A379161 Primes p such that the multiplicative order of 7 modulo p is prime.

Original entry on oeis.org

19, 29, 47, 59, 83, 167, 223, 227, 311, 367, 383, 389, 419, 439, 467, 479, 503, 563, 587, 607, 653, 719, 809, 839, 887, 971, 983, 1123, 1307, 1319, 1447, 1487, 1543, 1733, 1811, 1823, 1907, 1997, 2063, 2099, 2153, 2239, 2383, 2579, 2741, 2801, 2819, 2837, 2887, 2903, 2909, 2999, 3023, 3083, 3167, 3463, 3547
Offset: 1

Views

Author

Vincenzo Librandi, Dec 17 2024

Keywords

Comments

Odd primes that divide 7^p-1 for some prime p [after Robert Israel].

Crossrefs

Programs

  • Magma
    [p: p in PrimesInInterval(2, 4000) | IsPrime(Modorder(7, p))];
  • Maple
    filter:= n -> isprime(n) and isprime(numtheory:-order(7,n)):
    select(filter, [2,3,5, seq(i,i=11..10000,2)]); # Robert Israel, Jan 03 2025
  • Mathematica
    Select[Prime@Range@4000,PrimeQ@MultiplicativeOrder[7,#]&]
Showing 1-1 of 1 results.