OFFSET
1,1
COMMENTS
Such emirps have end digits 1 and use only digits 0, 1, 2, 5, 8, and the sequence naturally includes A155512, the emirps with only digits 0 and 1.
EXAMPLE
1181 of this sequence, for instance, belongs to the emirp pair (1181, 1811), where each member is a 180-degree rotation of the other; similarly for the term 112501 of this sequence, that belongs to the emirp pair (105211, 112501) and which, displayed on a calculator and turned upside-down, becomes its own reversal.
MATHEMATICA
t1 = {0, 1, 2, 5, 8}; okQ[n_] := Module[{d = IntegerDigits[n], r}, r = Reverse[d]; r != d && Complement[d, t1] == {} && PrimeQ[FromDigits[r]]]; Select[Prime[Range[100000]], okQ] (* T. D. Noe, Apr 24 2012 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Lekraj Beedassy, Mar 21 2012
STATUS
approved