The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
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 (list; graph; refs; listen; history; text; internal format)
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

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 13 21:51 EDT 2024. Contains 372523 sequences. (Running on oeis4.)