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

A158019
Numbers such that (n-1)/2 and 10*n-1 are both prime.
2
11, 15, 23, 27, 35, 39, 83, 107, 123, 143, 167, 179, 195, 203, 207, 227, 255, 275, 279, 347, 399, 423, 455, 479, 567, 587, 623, 627, 695, 707, 735, 759, 767, 779, 795, 839, 843, 863, 867, 935, 975, 983, 1007, 1043, 1095, 1115, 1155, 1215, 1227, 1283, 1323
OFFSET
1,1
COMMENTS
Relating the two prime types:
(p-1)/2,(p-1)/4,(p-1)/6,(p-1)/8,(p-1)/10,(p-1)/12...
and
2*p-1,4*p-1,6*p-1,8*p-1,10*p-1...
where both contain 11,23 subsequence.
LINKS
MAPLE
filter:= proc(n) isprime((n-1)/2) and isprime(10*n-1) end proc:
select(filter, [seq(i, i=3..10000, 4)]); # Robert Israel, Dec 12 2024
MATHEMATICA
Flatten[Table[If[PrimeQ[(n - 1)/2] && PrimeQ[10*n - 1], n, {}], {n, 1, 10000}]]
Select[Range[1, 1500, 2], PrimeQ[(#-1)/2]&&PrimeQ[10#-1]&] (* Harvey P. Dale, Mar 10 2013 *)
CROSSREFS
Sequence in context: A045564 A285271 A087142 * A228205 A343416 A256498
KEYWORD
nonn
AUTHOR
Roger L. Bagula and Gary W. Adamson, Mar 11 2009, Mar 20 2009
STATUS
approved