A260381 Primes having only {3, 7, 8} as digits.
3, 7, 37, 73, 83, 337, 373, 383, 733, 773, 787, 877, 883, 887, 3373, 3733, 3833, 3877, 7333, 7873, 7877, 7883, 8377, 8387, 8737, 8783, 8837, 8887, 33377, 33773, 37337, 37783, 38333, 38377, 38737, 38783, 38833, 38873, 73387, 73783, 73877, 73883, 77377, 77383
Offset: 1
Links
Programs
-
Magma
[p: p in PrimesUpTo(2*10^5) | Set(Intseq(p)) subset [3, 7, 8]];
-
Mathematica
Select[Prime[Range[2 10^4]], Complement[IntegerDigits[#], {3, 7, 8}]=={} &]
Comments