Talk:Semiprime: Difference between revisions

m
→‎a graphic view of the first 10k semi-primes: added whitespace and highlighting to the talk section header.
m (→‎a graphic view of the first 10k semiprimes: reduced the size of the output font (75%), changed the semi-prime glyph, showed the options used in the output.)
m (→‎a graphic view of the first 10k semi-primes: added whitespace and highlighting to the talk section header.)
Line 28:
<lang rexx>$CALC translate{ isSemiPrime[ iota(10k) ], 'fefa'x, 10} ;;; Group 0 echoOptions</lang>
The terminal screen was 200 bytes wide.
<br>The &nbsp; '''isSemiPrime''' &nbsp; BIF outputs a &nbsp; '''0''' &nbsp; (zero) to indicate the number isn't semiprimesemi-prime, &nbsp; or a '''1''' &nbsp; (oneunity) to indicate a semiprimesemi-prime.
<br>The &nbsp; '''translate''' &nbsp; BIF converts (for easier perusing) ones and zeroes to &nbsp; ■ &nbsp; and &nbsp; · &nbsp; &nbsp; [the square bullets are the semi-primes].
<br>The &nbsp; '''iota''' &nbsp; BIF generates the numbers &nbsp; 1 ──► 10,000 &nbsp; which are passed to the &nbsp; '''isSemiPrime''' &nbsp; BIF.