login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A262210
Numbers whose decimal digits are the concatenation of a nonprime followed by a prime.
0
12, 13, 15, 17, 43, 45, 47, 67, 83, 93, 95, 97, 103, 107, 113, 123, 125, 127, 129, 131, 137, 141, 143, 147, 153, 157, 159, 161, 163, 165, 167, 171, 173, 179, 183, 185, 187, 193, 197, 402, 403, 405, 407, 411, 413, 417, 419, 423, 429, 431, 437, 441, 443, 447, 453, 459, 461, 467, 471
OFFSET
1,1
PROG
(PARI) is(n)=if(gcd(n, 10)>1, return(!isprime(n\10) && n>9 && isprime(n%10))); for(k=1, #Str(n)-1, if(isprime(n%10^k) && !isprime(n\10^k), return(1))); 0 \\ Charles R Greathouse IV, Sep 15 2015
CROSSREFS
Cf. A125664.
Sequence in context: A226099 A179512 A125664 * A074164 A076085 A039790
KEYWORD
nonn,base
AUTHOR
Giovanni Teofilatto, Sep 15 2015
STATUS
approved