login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A100141
Numbers n such that the number of prime primitive roots of n is a prime primitive root of n
2
5, 9, 11, 19, 23, 34, 37, 38, 46, 67, 94, 121, 167, 178, 194, 269, 274, 281, 358, 382, 457, 521, 601, 625, 626, 698, 709, 719, 818, 839, 958, 1006, 1094, 1217, 1303, 1402, 1439, 1453, 1493, 1502, 1579, 1601, 1663, 1706, 1838, 1871, 1901, 1913, 1922, 2011, 2066
OFFSET
1,1
COMMENTS
A100142(n) gives the number of prime primitive roots of these numbers.
LINKS
EXAMPLE
19 has prime primitive roots 2, 3, 13. Count is 3, which is a prime primitive root of 19.
MATHEMATICA
q[n_] := Module[{p = Select[PrimitiveRootList[n], PrimeQ], m}, m = Length[p]; MemberQ[p, m] && PrimeQ[m]]; Select[Range[2000], q] (* Amiram Eldar, Sep 25 2021 *)
CROSSREFS
Cf. A100142.
Sequence in context: A101284 A362156 A102182 * A314604 A309137 A190894
KEYWORD
easy,nonn
AUTHOR
Sven Simon, Nov 07 2004
EXTENSIONS
a(2) inserted by Amiram Eldar, Sep 25 2021
STATUS
approved