Summarize primes: Difference between revisions

→‎{{header|Raku}}: Add a Raku example
(Add Factor)
(→‎{{header|Raku}}: Add a Raku example)
Line 37:
The sum of the first 162 primes is 70241 (which is prime).
</pre>
 
=={{header|Raku}}==
<lang perl6>my @primesums = ([\+] grep *.is-prime, ^Inf)[^1000];
say "Of the first {+@primesums} primes:";
printf "The sum of the first %*d is prime: %d\n", @primesums.end.chars, $_, @primesums[$_]
for grep { @primesums[$_].is-prime }, ^+@primesums;</lang>
{{out}}
<pre>Of the first 1000 primes:
The sum of the first 0 is prime: 2
The sum of the first 1 is prime: 5
The sum of the first 3 is prime: 17
The sum of the first 5 is prime: 41
The sum of the first 11 is prime: 197
The sum of the first 13 is prime: 281
The sum of the first 59 is prime: 7699
The sum of the first 63 is prime: 8893
The sum of the first 95 is prime: 22039
The sum of the first 99 is prime: 24133
The sum of the first 101 is prime: 25237
The sum of the first 107 is prime: 28697
The sum of the first 113 is prime: 32353
The sum of the first 121 is prime: 37561
The sum of the first 123 is prime: 38921
The sum of the first 129 is prime: 43201
The sum of the first 131 is prime: 44683
The sum of the first 145 is prime: 55837
The sum of the first 151 is prime: 61027
The sum of the first 157 is prime: 66463
The sum of the first 161 is prime: 70241
The sum of the first 177 is prime: 86453
The sum of the first 191 is prime: 102001
The sum of the first 197 is prime: 109147
The sum of the first 203 is prime: 116533
The sum of the first 205 is prime: 119069
The sum of the first 207 is prime: 121631
The sum of the first 213 is prime: 129419
The sum of the first 215 is prime: 132059
The sum of the first 295 is prime: 263171
The sum of the first 307 is prime: 287137
The sum of the first 325 is prime: 325019
The sum of the first 327 is prime: 329401
The sum of the first 329 is prime: 333821
The sum of the first 331 is prime: 338279
The sum of the first 333 is prime: 342761
The sum of the first 341 is prime: 360979
The sum of the first 349 is prime: 379667
The sum of the first 355 is prime: 393961
The sum of the first 357 is prime: 398771
The sum of the first 425 is prime: 581921
The sum of the first 445 is prime: 642869
The sum of the first 457 is prime: 681257
The sum of the first 459 is prime: 687767
The sum of the first 463 is prime: 700897
The sum of the first 479 is prime: 754573
The sum of the first 483 is prime: 768373
The sum of the first 487 is prime: 782263
The sum of the first 511 is prime: 868151
The sum of the first 529 is prime: 935507
The sum of the first 535 is prime: 958577
The sum of the first 547 is prime: 1005551
The sum of the first 567 is prime: 1086557
The sum of the first 619 is prime: 1313041
The sum of the first 629 is prime: 1359329
The sum of the first 675 is prime: 1583293
The sum of the first 679 is prime: 1603597
The sum of the first 695 is prime: 1686239
The sum of the first 707 is prime: 1749833
The sum of the first 733 is prime: 1891889
The sum of the first 761 is prime: 2051167
The sum of the first 767 is prime: 2086159
The sum of the first 775 is prime: 2133121
The sum of the first 779 is prime: 2156813
The sum of the first 783 is prime: 2180741
The sum of the first 807 is prime: 2327399
The sum of the first 813 is prime: 2364833
The sum of the first 819 is prime: 2402537
The sum of the first 835 is prime: 2504323
The sum of the first 843 is prime: 2556187
The sum of the first 847 is prime: 2582401
The sum of the first 851 is prime: 2608699
The sum of the first 925 is prime: 3120833
The sum of the first 941 is prime: 3238237
The sum of the first 983 is prime: 3557303
The sum of the first 991 is prime: 3619807</pre>
 
 
=={{header|Ring}}==
10,343

edits