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”).

A179446
Primes p of form p = 10k + 1, where k is nonprime.
2
11, 41, 61, 101, 151, 181, 211, 241, 251, 271, 281, 331, 401, 421, 461, 491, 521, 541, 571, 601, 631, 641, 661, 691, 701, 751, 761, 811, 821, 881, 911, 941, 991, 1021, 1051, 1061, 1151, 1171, 1181, 1201, 1231, 1291, 1301, 1321, 1361, 1381, 1451, 1471, 1481
OFFSET
1,1
COMMENTS
Corresponding values of k in A179445.
LINKS
MAPLE
select(p -> isprime(p) and not isprime((p-1)/10), [seq(p, p=1..10000, 10)]); # Robert Israel, Oct 25 2017
MATHEMATICA
Select[10#+1&/@Select[Range[200], !PrimeQ[#]&], PrimeQ] (* Harvey P. Dale, Aug 17 2017 *)
CROSSREFS
Sequence in context: A333085 A085564 A158205 * A260269 A109982 A128467
KEYWORD
nonn
AUTHOR
Jaroslav Krizek, Jul 14 2010
EXTENSIONS
More terms from Harvey P. Dale, Aug 17 2017
STATUS
approved