A290425 Primes p such that the reverse of 4*p is the nextprime(p+1).
23, 233, 2333, 23333
Offset: 1
Examples
p(9)=23, 4*23=92; 29=p(10).
Programs
-
Mathematica
Select[Prime@ Range[10^6], NextPrime@ # == IntegerReverse[4 #] &] (* Michael De Vlieger, Aug 02 2017 *)
-
PARI
is(n) = isprime(n) && fromdigits(Vecrev(digits(4*n))) == nextprime(n+1) \\ David A. Corneth, Aug 02 2017
Comments