OFFSET
1,1
COMMENTS
The only difference compared to A068887 is that the 3 is missing here. - R. J. Mathar, May 26 2013
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..2000
EXAMPLE
2143 is a member since its digits are alternatively even and odd.
MATHEMATICA
a[n_, k_]:=Union[Boole/@EvenQ[Take[IntegerDigits[n], {k, -1, 2}]]]; Join[{2}, Select[Prime[Range[5, 620]], {a[#, 1], a[#, 2]}=={{1}, {0}} &]]
Select[Prime[Range[1000]], Boole[EvenQ[IntegerDigits[#]]]==PadRight[{}, IntegerLength[#], {1, 0}]&] (* Harvey P. Dale, Oct 28 2023 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Jayanta Basu, May 22 2013
STATUS
approved