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!)
A079364 Composite numbers having two composite neighbors. 7
9, 15, 21, 25, 26, 27, 33, 34, 35, 39, 45, 49, 50, 51, 55, 56, 57, 63, 64, 65, 69, 75, 76, 77, 81, 85, 86, 87, 91, 92, 93, 94, 95, 99, 105, 111, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 129, 133, 134, 135, 141, 142, 143, 144, 145, 146, 147, 153, 154, 155 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
In other words, composite numbers that are not nearest-neighbors of primes. - Omar E. Pol, Jan 02 2009
Complement of A210940. - Omar E. Pol, Apr 18 2012
LINKS
MATHEMATICA
Select[Range[6! ], !PrimeQ[ # ]&&!PrimeQ[ #-1]&&!PrimeQ[ #+1]&] (* Vladimir Joseph Stephan Orlovsky, Apr 26 2010 *)
With[{r=Complement[Range[160], Prime[Range[PrimePi[160]]]]}, Transpose[ Select[ Partition[r, 3, 1], Differences[#]=={1, 1}&]][[2]]] (* Harvey P. Dale, Feb 05 2012 *)
PROG
(Haskell)
a079364 n = a079364_list !! (n-1)
a079364_list = filter
(\x -> a010051' (x - 1) == 0 && a010051' (x + 1) == 0) a002808_list
-- Reinhard Zumkeller, Jan 10 2013
CROSSREFS
Cf. A010051, A221309 (subsequence).
Sequence in context: A338599 A333312 A255763 * A160666 A039769 A270574
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Feb 15 2003
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 August 17 17:14 EDT 2024. Contains 375227 sequences. (Running on oeis4.)