Erdős-primes: Difference between revisions

Line 1,548:
<syntaxhighlight lang="ring">
load "stdlibcore.ring"
see "working..." + nl
row = 0
limit = 2500
Line 1,579 ⟶ 1,580:
next
 
see nl + "Found " + row + " Erdos primes less than 2500" + nl
see "done..." + nl
</syntaxhighlight>
{{out}}
<pre>
working...
2 101 211 367 409
419 461 557 673 709
Line 1,588 ⟶ 1,591:
1259 1709 1831 1889 2141
2221 2309 2351 2411 2437
done...
 
Found 25 Erdos primes less than 2500
2,468

edits