OFFSET
1,1
COMMENTS
Also called triadic primes. - Arkadiusz Wesolowski, Apr 10 2011
Members of A002385 whose digits are in [0,1,3,8]. - Robert Israel, Mar 16 2017
REFERENCES
N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
C. W. Trigg, Reflectable primes, J. Rec. Math., 15 (No. 1, 1983), p. 252.
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
Chris Caldwell, The Prime Glossary, Triadic prime
G. L. Honaker, Jr. and Chris Caldwell, Prime Curios! 101838101
C. W. Trigg, Reflectable primes, J. Rec. Math., 15 (No. 4, 1983), p. 252. (Annotated scanned copy)
MAPLE
S[1]:= [0, 1, 3, 8]
for i from 2 to 5 do
S[i]:= map(t -> seq(j*(10^(2*i-2)+1)+10*t, j=[0, 1, 3, 8]), S[i-1])
od:
sort(select(isprime, [11, seq(op(S[i]), i=1..5)])); # Robert Israel, Mar 16 2017
MATHEMATICA
Select[FromDigits/@Tuples[{0, 1, 3, 8}, 7], PrimeQ[#]&&PalindromeQ[#]&] (* Harvey P. Dale, Mar 10 2023 *)
CROSSREFS
KEYWORD
nonn,base
EXTENSIONS
More terms from Arkadiusz Wesolowski, Sep 30 2011
STATUS
approved