commit 113f4c606a0f181a849690dc85a244f2fb1ee58c Author: Raphael Roberts Date: Sun Oct 20 22:42:18 2019 -0500 Made script to read in primitive roots diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a9ce055 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.dir-locals.el \ No newline at end of file diff --git a/primitive_roots.py b/primitive_roots.py new file mode 100644 index 0000000..797cbf4 --- /dev/null +++ b/primitive_roots.py @@ -0,0 +1,2 @@ +with open("primitive_roots.txt") as file: + primitive_roots = list(int(line) for line in filter(bool, file.read().split("\n"))) diff --git a/primitive_roots.txt b/primitive_roots.txt new file mode 100644 index 0000000..a9c007b --- /dev/null +++ b/primitive_roots.txt @@ -0,0 +1,128 @@ +3 +5 +6 +7 +10 +12 +14 +19 +20 +24 +27 +28 +33 +37 +38 +39 +40 +41 +43 +45 +47 +48 +51 +53 +54 +55 +56 +63 +65 +66 +69 +71 +74 +75 +76 +77 +78 +80 +82 +83 +85 +86 +87 +90 +91 +93 +94 +96 +97 +101 +102 +103 +105 +106 +107 +108 +109 +110 +112 +115 +119 +125 +126 +127 +130 +131 +132 +138 +142 +145 +147 +148 +149 +150 +151 +152 +154 +155 +156 +160 +161 +163 +164 +166 +167 +170 +171 +172 +174 +175 +177 +179 +180 +181 +182 +183 +186 +188 +191 +192 +194 +201 +202 +203 +204 +206 +209 +210 +212 +214 +216 +217 +218 +219 +220 +224 +229 +230 +233 +237 +238 +243 +245 +247 +250 +251 +252 +254