login
A381590
Primes with primitive root -100.
1
3, 7, 19, 23, 31, 43, 47, 59, 67, 71, 83, 107, 131, 151, 163, 167, 179, 191, 199, 223, 227, 263, 283, 307, 311, 347, 359, 367, 379, 383, 419, 431, 439, 443, 467, 479, 487, 491, 499, 503, 523, 563, 571, 587, 599, 619, 631, 647, 659, 683, 719, 727, 743, 787, 811
OFFSET
1,1
COMMENTS
Union of long period primes (A006883) of the form 4k-1 and half period primes (A097443) of the form 4k-1.
Complement of A007349 in the union of A007348 and A001913. - Davide Rotondo, May 23 2025
LINKS
MAPLE
select(p -> isprime(p) and numtheory:-order(-100, p) = p-1, [seq(i, i=3..1000, 2)]); # Robert Israel, Oct 28 2025
MATHEMATICA
Select[Prime[Range[150]], MultiplicativeOrder[-100, #] == # - 1 &] (* Amiram Eldar, Mar 02 2025 *)
PROG
(PARI) is(n)=gcd(n, 10)==1 && znorder(Mod(-100, n))==n-1 \\ Charles R Greathouse IV, Mar 01 2025
(PARI) list(lim)=my(v=List([3])); forprime(p=7, lim, if(znorder(Mod(-100, p))==p-1, listput(v, p))); Vec(v) \\ Charles R Greathouse IV, Mar 01 2025
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Davide Rotondo, Feb 28 2025
STATUS
approved