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

A176875
Numbers that are the product of two distinct primes a and b, such that a+b are averages of twin prime pairs.
7
35, 65, 77, 161, 185, 209, 221, 335, 341, 371, 377, 437, 485, 515, 611, 671, 707, 731, 767, 779, 851, 899, 917, 965, 1007, 1067, 1115, 1157, 1211, 1247, 1271, 1337, 1385, 1397, 1529, 1535, 1577, 1631, 1691, 1781, 1817, 1841, 1991, 2117, 2171, 2201, 2285
OFFSET
1,1
LINKS
EXAMPLE
35 = 5*7 is a term since 5 + 7 +- 1 are twin primes.
MATHEMATICA
l[n_]:=Last/@FactorInteger[n]; f[n_]:=First/@FactorInteger[n]; lst={}; Do[If[l[n]=={1, 1}, a=f[n][[1]]; b=f[n][[2]]; If[PrimeQ[a+b-1]&&PrimeQ[a+b+1], AppendTo[lst, n]]], {n, 0, 7!}]; lst
With[{nn=100}, Take[Union[Times@@@Select[Subsets[Prime[Range[nn]], {2}], AllTrue[Total[#]+{1, -1}, PrimeQ]&]], nn/2]] (* The program uses the AllTrue function from Mathematica version 10 *) (* Harvey P. Dale, May 09 2015 *)
CROSSREFS
Sequence in context: A092256 A108172 A354502 * A292005 A338008 A331378
KEYWORD
nonn
AUTHOR
STATUS
approved