cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A087718 Semiprimes with greater factor less than twice the smaller factor.

This page as a plain text file.
%I A087718 #18 Feb 16 2025 08:32:51
%S A087718 4,6,9,15,25,35,49,77,91,121,143,169,187,209,221,247,289,299,323,361,
%T A087718 391,437,493,527,529,551,589,667,703,713,841,851,899,943,961,989,1073,
%U A087718 1147,1189,1247,1271,1333,1363,1369,1457,1517,1537,1591,1643,1681
%N A087718 Semiprimes with greater factor less than twice the smaller factor.
%C A087718 A084127(a(n)) < A084126(a(n))*2; subsequence of A001358; A001248 is a subsequence.
%C A087718 Odd composite integers which do not have a representation as the sum of an even number of consecutive integers. For instance, 27 is not in the sequence because it has a representation as the sum of an even number of consecutive integers (2+3+4+5+6+7). 35 is in the sequence because it does not have such a representation. - _Andrew S. Plewe_, May 14 2007
%C A087718 Decker & Moree prove that this sequence has (x log 4)/(log x)^2 + O(x/(log x)^3) members up to x. - _Charles R Greathouse IV_, Jul 07 2016
%H A087718 Charles R Greathouse IV, <a href="/A087718/b087718.txt">Table of n, a(n) for n = 1..10000</a>
%H A087718 Andreas Decker and Pieter Moree, <a href="http://arxiv.org/abs/0801.1451">Counting RSA-integers</a>, Results in Mathematics 52 (2008), pp. 35-39.
%H A087718 Eric Weisstein's World of Mathematics, <a href="https://mathworld.wolfram.com/Semiprime.html">Semiprime</a>
%F A087718 a(n) ~ kx log^2 x with k = 1/log 4 = 0.7213..., see Decker & Moree. - _Charles R Greathouse IV_, Jul 07 2016
%e A087718 35=5*7 is a term, as 7<5*2=10;
%e A087718 21=3*7 is not a term, as 7>3*2=6.
%t A087718 Select[Range[1700],PrimeOmega[#]==2&&(IntegerQ[Sqrt[#]]|| FactorInteger[ #] [[-1,1]] < 2*FactorInteger[#][[1,1]])&] (* _Harvey P. Dale_, Sep 12 2017 *)
%o A087718 (PARI) list(lim)=my(v=List()); forprime(p=2, sqrtint(lim\2), forprime(q=2, min(lim\p,2*p), listput(v,p*q))); Set(v) \\ _Charles R Greathouse IV_, Jul 07 2016
%Y A087718 Cf. A001358.
%K A087718 nonn
%O A087718 1,1
%A A087718 _Reinhard Zumkeller_, Sep 29 2003