Erdös-Selfridge categorization of primes: Difference between revisions

added RPL
(Functional implementation for Mathematica / Wolfram language)
(added RPL)
 
Line 1,095:
Category 10: first: 1,065,601 last: 15,472,321 count: 28
Category 11: first: 8,524,807 last: 8,524,807 count: 1</pre>
 
=={{header|RPL}}==
{{works with|RPL|HP49-C}}
« 5 { { 2 3 } } 0 → catg f
« 1 ROT '''START'''
DUP 1 + FACTORS 0.
1 PICK3 SIZE '''FOR''' j
OVER j GET
'''IF''' DUP 3 ≤ '''THEN''' NOT
'''ELSE'''
'f' STO
catg 1. « f POS » DOLIST 0. > 1. POS
'''END'''
MAX
2 '''STEP'''
NIP 1 +
'''IF''' DUP catg SIZE ≤
'''THEN''' catg SWAP DUP2 GET 4 PICK + PUT 'catg' STO
'''ELSE''' DROP 'catg' OVER 1. →LIST 1. →LIST STO+ '''END'''
NEXTPRIME
'''NEXT'''
DROP catg
» » '<span style="color:blue">→ESCLASS</span>' STO
 
200 <span style="color:blue">→ESCLASS</span>'
{{out}}
<pre>
1: { { 2 3 5 7 11 17 23 31 47 53 71 107 127 191 383 431 647 863 971 1151 } { 13 19 29 41 43 59 61 67 79 83 89 97 101 109 131 137 139 149 167 179 197 199 211 223 229 239 241 251 263 269 271 281 283 293 307 317 349 359 367 373 419 433 439 449 461 479 499 503 509 557 563 577 587 593 599 619 641 643 659 709 719 743 751 761 769 809 827 839 881 919 929 953 967 991 1019 1033 1049 1069 1087 1103 1187 1223 1231 } { 37 103 113 151 157 163 173 181 193 227 233 257 277 311 331 337 347 353 379 389 397 401 409 421 457 463 467 487 491 521 523 541 547 569 571 601 607 613 631 653 683 701 727 733 773 787 797 811 821 829 853 857 859 877 883 911 937 947 983 997 1009 1013 1031 1039 1051 1061 1063 1091 1097 1117 1123 1153 1163 1171 1181 1193 1217 1229 } { 73 313 443 617 661 673 677 691 739 757 823 887 907 941 977 1093 1109 1129 1201 1213 } { 1021 } }
</pre>
 
=={{header|Rust}}==
1,150

edits