A346542 Numbers k such that 5*2^k + 1 is an elite prime (A102742).
3, 15, 55, 26607, 209787, 819739
Offset: 1
Links
- Alexander Aigner, Über Primzahlen, nach denen (fast) alle Fermatzahlen quadratische Nichtreste sind, Monatsh. Math., Vol. 101 (1986), pp. 85-93; alternative link.
Programs
-
PARI
isok(k)=my(p=5*2^k+1); k>2 && Mod(k, 2)==1 && Mod(3, p)^((p-1)/2)+1==0 && kronecker(lift(Mod(2, p)^2^k)+1, p)==-1;
Comments