A339545 Primes p such that A007088(p) == A151799(p) (mod p).
3, 19, 29, 691
Offset: 1
Examples
a(3) = 29 is a member because 29 = 11101_2, 11101 == 23 (mod 29), and 23 is the prime previous to 29.
Programs
-
Maple
select(t -> isprime(t) and convert(t,binary) mod t = prevprime(t), [seq(i,i=3..1000,2)]);
Comments