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.

A061335 Primes with 23 as smallest positive primitive root.

This page as a plain text file.
%I A061335 #14 Aug 21 2021 07:27:51
%S A061335 2161,8761,10559,12479,12911,13729,15601,18121,19009,21787,31249,
%T A061335 35281,37321,42841,43201,49921,50951,51239,52711,53231,67489,70249,
%U A061335 79801,88919,90121,90289,91393,97919,106129,106391,106681,107881,108529,115201,123191,126311
%N A061335 Primes with 23 as smallest positive primitive root.
%H A061335 T. D. Noe, <a href="/A061335/b061335.txt">Table of n, a(n) for n = 1..1000</a>
%t A061335 Prime[ Select[ Range[12100], PrimitiveRoot[ Prime[ # ] ] == 23 & ] ]
%t A061335 Select[ Prime@Range@10880, PrimitiveRoot@# == 23 &] (* _Robert G. Wilson v_, May 11 2001 *)
%o A061335 (PARI) is(n)=my(v=[2, 3, 5, 7, 11, 13, 17, 19, 6, 10, 12, 14, 15, 18, 20, 21, 22]); if(!isprime(n) || n<99, return(0)); for(i=1,#v, if(znorder(Mod(v[i], n))==n-1, return(0))); znorder(Mod(23,n))==n-1 \\ _Charles R Greathouse IV_, Apr 27 2015
%Y A061335 Cf. A001918, A001126, A019350.
%K A061335 nonn
%O A061335 1,1
%A A061335 _Klaus Brockhaus_, Apr 25 2001