my $Limit = 1000000;
my $HighestFactor = sqrt($Limit);
my $is_prime=''; # Sieve array.
# put in candidate primes: integers which have an odd number of repres
+entations by certain quadratic forms.
for $x ( 1..$HighestFactor){
my $x2 = $x*$x;
last if $x2*2 >= $Limit;
for $y ( 1..$HighestFactor ){
my $y2 = $y*$y;
next if ($n = 3*$x2 - $y2) > $Limit;
vec($is_prime,$n,1) ^= 1 if $x > $y && $n % 12 == 11;
next if ( $n = 3*$x2 + $y2 ) > $Limit;
vec($is_prime,$n,1) ^= 1 if $n % 12 == 7;
next if ( $n = 4*$x2 + $y2 ) > $Limit;
vec($is_prime,$n,1) ^= 1 if $n % 12 == 1 || $n % 12 == 5;
}
}
# eliminate composites by sieving
# if n is prime, omit all multiples of its square; this is sufficient
+because
# composites which managed to get on the list cannot be square-free
for $n (5..$HighestFactor ){
next unless vec($is_prime,$n,1);
for( $k=$n2=$n*$n; $k <= $Limit; $k += $n2 ){ vec($is_prime,$k,1)
+= 0 };
}
# Present the results.
$\="\n";
print for 2,3, grep vec($is_prime,$_,1), 5..$Limit;
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|