Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
19
Task/Lucas-Lehmer-test/Pascal/lucas-lehmer-test.pas
Normal file
19
Task/Lucas-Lehmer-test/Pascal/lucas-lehmer-test.pas
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
Program LucasLehmer(output);
|
||||
var
|
||||
s, n: int64;
|
||||
i, exponent: integer;
|
||||
begin
|
||||
n := 1;
|
||||
for exponent := 2 to 31 do
|
||||
begin
|
||||
if exponent = 2 then
|
||||
s := 0
|
||||
else
|
||||
s := 4;
|
||||
n := (n + 1)*2 - 1; // This saves from needing the math unit for exponentiation
|
||||
for i := 1 to exponent-2 do
|
||||
s := (s*s - 2) mod n;
|
||||
if s = 0 then
|
||||
writeln('M', exponent, ' is PRIME!');
|
||||
end;
|
||||
end.
|
||||
Loading…
Add table
Add a link
Reference in a new issue