OFFSET
1,1
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..2000
EXAMPLE
181 is prime but has 8 as its largest digit, so 181 is not a term.
191 is prime and has 9 as its largest digit, so 191 is a term.
MATHEMATICA
Select[Prime[Range[100]], OddQ[Max[IntegerDigits[#]]]&] (* Harvey P. Dale, Jun 20 2023 *)
PROG
(PARI) isok(p) = isprime(p) && (vecmax(digits(p)) % 2); \\ Michel Marcus, Feb 18 2021
CROSSREFS
KEYWORD
nonn,base,less
AUTHOR
Juri-Stepan Gerasimov, Jan 19 2009
EXTENSIONS
181 replaced with 191 by Ray Chandler, Jan 31 2009
STATUS
approved