OFFSET
1,1
EXAMPLE
The 22nd prime is 79, the digits 7 and 9 are odd. Thus 22 is in the sequence.
The 9th prime is 23, the digit 2 is even, therefore 9 is not in the sequence.
MATHEMATICA
a={}; For[n=1, n<200, n++, If[Length[Select[IntegerDigits[Prime[n]], EvenQ[ # ]&]] == 0, AppendTo[a, n]]]; a
CROSSREFS
KEYWORD
base,easy,nonn,less
AUTHOR
Zak Seidov, Jun 23 2003
EXTENSIONS
Edited by Stefan Steinerberger, Jun 11 2007
STATUS
approved