login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A307627 Primes p such that 2 is a primitive root modulo p while 8 is not. 5
13, 19, 37, 61, 67, 139, 163, 181, 211, 349, 373, 379, 421, 523, 541, 547, 613, 619, 661, 709, 757, 787, 829, 853, 859, 877, 883, 907, 1117, 1123, 1171, 1213, 1237, 1291, 1381, 1453, 1483, 1531, 1549, 1621, 1669, 1693, 1741, 1747, 1861, 1867, 1987, 2029, 2053 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Primes p such that 2 is a primitive root modulo p (i.e., p is in A001122) and that p == 1 (mod 3).
According to Artin's conjecture, the number of terms <= N is roughly ((2/5)*C)*PrimePi(N), where C is the Artin's constant = A005596, PrimePi = A000720. Compare: the number of terms of A001122 that are no greater than N is roughly C*PrimePi(N).
LINKS
Eric Weisstein's World of Mathematics, Artin's constant
EXAMPLE
For p = 67, the multiplicative order of 2 modulo 67 is 66, while 8^22 == 2^(3*22) == 1 (mod 67), so 67 is a term.
MAPLE
select(p -> isprime(p) and numtheory:-order(2, p) = p-1,
[seq(i, i=1..10000, 6)]); # Robert Israel, Apr 23 2019
MATHEMATICA
Select[Prime@ Range[5, 310], And[FreeQ[#, 8], ! FreeQ[#, 2]] &@ PrimitiveRootList@ # &] (* Michael De Vlieger, Apr 23 2019 *)
PROG
(PARI) forprime(p=3, 2000, if(znorder(Mod(2, p))==(p-1) && p%3==1, print1(p, ", ")))
CROSSREFS
Complement of A019338 with respect to A001122.
Cf. also A005596, A000720, A307628.
Sequence in context: A040070 A322923 A048523 * A000922 A107188 A029478
KEYWORD
nonn
AUTHOR
Jianing Song, Apr 19 2019
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified June 28 02:17 EDT 2024. Contains 373761 sequences. (Running on oeis4.)