OFFSET
1,1
COMMENTS
These primes are all of the form p==3 (mod 4). (conjecture)
EXAMPLE
p(a[1])=p(11)=31. The primitive roots of 31 are 3, 11, 12, 13, 17, 21, 22, and 24.
Their average is (3+11+12+13+17+21+22+24)/phi(30)=123/8<31/2.
MATHEMATICA
A = Table[Total[Flatten[Position[Table[MultiplicativeOrder[i, Prime[k]], {i, Prime[k] - 1}], Prime[k] - 1]]]/(EulerPhi[Prime[k] - 1] Prime[k]/2), {k, 1, 1000}]; Flatten[Position[A, _?(# < 1 &)]]
CROSSREFS
KEYWORD
nonn
AUTHOR
Dimitri Papadopoulos, Jan 08 2016
STATUS
approved