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!)
A350121 Increasing sequence of primes p == 3 (mod 4) such that all of 2,3,5,...,prime(n) are primitive roots mod p. 1
3, 19, 907, 1747, 2083, 101467, 350443, 916507, 1014787, 6603283, 27068563, 45287587, 226432243, 243060283, 3946895803, 5571195667, 9259384843, 19633449763, 229012273627 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
It is possible, although rather unlikely, that any primes congruent to 3 (mod 4) will appear in A213052.
a(19) > 10^11.
LINKS
EXAMPLE
a(2) = 19 since 19 is the smallest prime (congruent to 3 (mod 4)) such that the first two primes (2 and 3) are primitive roots.
MATHEMATICA
max=0; Do[n=Prime@i; If[Mod[n, 4]==3, k=1; While[MultiplicativeOrder[Prime@k, n]==n-1, k++]; If[k-1>max, Print@n; max++]], {i, 10^6}] (* Giorgos Kalogeropoulos, Dec 17 2021 *)
PROG
(PARI)
N=10^10;
default(primelimit, N);
A=2;
{ forprime (p=3, N,
if (p%4==3,
q = 1;
forprime (a=2, A,
if ( znorder(Mod(a, p)) != p-1, q=0; break() );
);
if ( q, A=nextprime(A+1); print1(p, ", ") );
);
); }
CROSSREFS
Cf. A213052.
Sequence in context: A330040 A168591 A319190 * A014015 A114301 A258669
KEYWORD
nonn,more
AUTHOR
Paul Vanderveen, Dec 15 2021
EXTENSIONS
a(19) from Daniel Suteu, Dec 20 2021
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 April 25 12:33 EDT 2024. Contains 371969 sequences. (Running on oeis4.)