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.

A320912 Numbers with an even number of prime factors (counted with multiplicity) that can be factored into distinct semiprimes.

This page as a plain text file.
%I A320912 #9 Feb 07 2021 06:26:10
%S A320912 1,4,6,9,10,14,15,21,22,24,25,26,33,34,35,36,38,39,40,46,49,51,54,55,
%T A320912 56,57,58,60,62,65,69,74,77,82,84,85,86,87,88,90,91,93,94,95,100,104,
%U A320912 106,111,115,118,119,121,122,123,126,129,132,133,134,135,136,140
%N A320912 Numbers with an even number of prime factors (counted with multiplicity) that can be factored into distinct semiprimes.
%C A320912 A semiprime (A001358) is a product of any two not necessarily distinct primes.
%H A320912 Amiram Eldar, <a href="/A320912/b320912.txt">Table of n, a(n) for n = 1..10000</a>
%e A320912 9000 is in the sequence and can be factored in either of two ways: (4*6*15*25) or (4*9*10*25).
%t A320912 strsemfacs[n_]:=If[n<=1,{{}},Join@@Table[Map[Prepend[#,d]&,Select[strsemfacs[n/d],Min@@#>d&]],{d,Select[Rest[Divisors[n]],PrimeOmega[#]==2&]}]];
%t A320912 Select[Range[100],And[EvenQ[PrimeOmega[#]],strsemfacs[#]!={}]&]
%Y A320912 Cf. A001055, A001222, A001358, A007717, A028260, A320655, A320892, A320893, A320894, A320911.
%K A320912 nonn
%O A320912 1,2
%A A320912 _Gus Wiseman_, Oct 23 2018