OFFSET
1,1
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..1000
EXAMPLE
a(1) = 5 corresponds to the fact that the fifth prime is 11, the smallest digit of which is 1, which is nonprime.
a(2) = 7: the seventh prime is 17, the smallest digit of which is 1, which is nonprime.
a(3) = 11: the eleventh prime is 31, the smallest digit of which is 1, which is, again, nonprime.
MATHEMATICA
Select[Prime[Range[150]], !PrimeQ[Min[IntegerDigits[Prime[#]]]] &] (* Harvey P. Dale, Nov 25 2010 *)
CROSSREFS
KEYWORD
nonn,base,less
AUTHOR
Juri-Stepan Gerasimov, Jan 19 2009
EXTENSIONS
Corrected (19 inserted, 1673 replaced by 167) by R. J. Mathar, May 05 2010
More terms from Harvey P. Dale, Nov 25 2010
STATUS
approved