Translating...

This commit is contained in:
danogentili 2016-06-27 16:52:28 +02:00
parent 11d367146a
commit b1b41205b6
3 changed files with 0 additions and 1 deletions

BIN
TL.php

Binary file not shown.

Binary file not shown.

View File

@ -72,7 +72,6 @@ function primesbelow($N) {
}
}
return ([2, 3] + array_map(function ($i, $sieve) { if($sieve[$i]) return (3 * $i + 1) | 1; }, pyjslib_range(1, (($N / 3) - $correction)), $sieve));
}
$smallprimeset = array_unique(primesbelow(100000));
$_smallprimeset = 100000;