OFFSET
1,1
COMMENTS
All numbers in the sequence are of the form 4n+3, except the number 2.
EXAMPLE
23 is in the sequence, since 23 is prime, and the suffixes of 23 (113 base 4), 13 base 4 (7 base 10) and 3, are all prime.
MATHEMATICA
With[{b = 4}, Select[Prime@ Range[10^3], Function[k, Times @@ Boole@ Map[PrimeQ@ FromDigits[Take[k, -#], b] &, Range[Length@ k - 1]] == 1]@ IntegerDigits[#, b] &]] (* Michael De Vlieger, Dec 01 2016 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Randy L. Ekl, Nov 26 2016
STATUS
approved