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!)
A264778 Numbers k such that 6*k+1, 3*k+2, 6*k+7 are all odd semiprimes. 4

%I #35 Feb 24 2021 03:57:06

%S 113,157,193,209,211,223,231,235,251,259,307,319,345,401,415,437,463,

%T 489,521,563,567,581,599,663,673,677,701,719,731,733,771,789,811,855,

%U 857,875,883,923,935,951,961,983,993,995,997,1017,1023,1031,1047,1089,1097

%N Numbers k such that 6*k+1, 3*k+2, 6*k+7 are all odd semiprimes.

%C Or odd numbers k such that the arithmetic progression 6*k+1, 6*k+4, 6*k+7 consists of twice a semiprime sandwiched between two semiprimes.

%H Amiram Eldar, <a href="/A264778/b264778.txt">Table of n, a(n) for n = 1..10000</a>

%t fQ[n_] := And[OddQ@ n, PrimeOmega@ n == 2]; Select[Range@ 1100,

%t AllTrue[{6 # + 1, 3 # + 2, 6 # + 7}, fQ] &] (* _Michael De Vlieger_, Nov 24 2015, Version 10 *)

%o (PARI) for(n=1, 1e4, if(n%2==1 && bigomega(6*n+1)==2 && bigomega(3*n+2)==2 && bigomega(6*n+7)==2, print1(n, ", "))); \\ _Altug Alkan_, Nov 24 2015

%Y Cf. A001358, A263510, A264779.

%K nonn

%O 1,1

%A _Vladimir Shevelev_ and _Peter J. C. Moses_, Nov 24 2015

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 September 10 09:32 EDT 2024. Contains 375786 sequences. (Running on oeis4.)