Odd squarefree semiprimes: Difference between revisions

Content added Content deleted
m (→‎{{header|REXX}}: added a foot separator, added whitespace, changes some comments.)
m (→‎{{header|REXX}}: elided a comment.)
Line 420: Line 420:
if j// 3==0 then iterate /*" " " 3? */
if j// 3==0 then iterate /*" " " 3? */
if j// 7==0 then iterate /*" " " 7? */
if j// 7==0 then iterate /*" " " 7? */
/* [↑] the above four lines saves time*/
do k=5 while s.k<=j /* [↓] divide by the known odd primes.*/
do k=5 while s.k<=j /* [↓] divide by the known odd primes.*/
if j//@.k==0 then iterate j /*Is J ÷ X? Then not prime. ___ */
if j//@.k==0 then iterate j /*Is J ÷ X? Then not prime. ___ */