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!)
A221865 The nonprimes k such that k + 2 is either a prime or a semiprime. 1

%I #28 May 05 2013 13:44:33

%S 0,1,4,8,9,12,15,20,21,24,27,32,33,35,36,39,44,45,49,51,55,56,57,60,

%T 63,65,69,72,75,77,80,81,84,85,87,91,92,93,95,99,104,105,111,116,117,

%U 119,120,121,125,129,132,135,140,141,143,144,147,153,155,156,159,161,164,165,171,175,176,177,183

%N The nonprimes k such that k + 2 is either a prime or a semiprime.

%C Chen primes A109611(n) such that A109611(n)-/+ a(n) are both prime: 2, 29, 53, 113, 139,...

%C Unrelated: Numbers n such that n + 2^bigomega(n) is either a prime or a semiprime: 1, 2, 3, 5, 6, 7, 9, 10, 11, 13, 15, 17, 18, 19, 21, 22, 23, 25, 27,...

%C A179384 is a subsequence. - _R. J. Mathar_, Apr 26 2013

%p A221865 := proc(n)

%p option remember;

%p if n =1 then

%p 0;

%p else

%p for a from procname(n-1)+1 do

%p if not isprime(a) then

%p if isprime(a+2) or numtheory[bigomega](a+2) = 2 then

%p return a;

%p end if;

%p end if;

%p end do:

%p end if;

%p end proc: # _R. J. Mathar_, Apr 26 2013

%t Select[Range[0,200],!PrimeQ[#]&&PrimeOmega[#+2]<3&] (* _Harvey P. Dale_, May 05 2013 *)

%Y Cf. A001358, A109611, A175634.

%K nonn

%O 1,3

%A _Gerasimov Sergey_, Apr 18 2013

%E Corrected by _R. J. Mathar_, Apr 26 2013

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 April 17 23:23 EDT 2024. Contains 371767 sequences. (Running on oeis4.)