A156154 Primes p such that prime(p)=2 (mod p), where prime(p)=A000040(p) is the p-th prime.
3, 13, 73, 637321, 27067133
Offset: 1
Crossrefs
Cf. A156153.
Programs
-
Mathematica
Select[Prime[Range[17*10^5]],Mod[Prime[#],#]==2&] (* Harvey P. Dale, Dec 28 2022 *)
-
PARI
p=c=0; until(0, until( isprime(c++), p=nextprime(p+1)); (p-2)%c & next; print1( c","))