chiark / gitweb /
Compute one more polynomial
authorSimon Tatham <anakin@pobox.com>
Sat, 12 Apr 2025 09:28:27 +0000 (10:28 +0100)
committerSimon Tatham <anakin@pobox.com>
Sat, 12 Apr 2025 09:28:52 +0000 (10:28 +0100)
This is the one I computed originally, and checked was primitive, but
was not able to include in the A382121 text file because of a line
length limit.

examples/a382121.rs

index cad2a15a1e8949f20cdb0f30dd67e37e4ac5ff2a..c5149474f159b2bc1f222f2e9a844e0b1a3b6c3f 100644 (file)
@@ -114,7 +114,7 @@ fn largest_nimber_in_subfield(level: usize) -> FiniteNimber {
 }
 
 fn main() {
-    for level in 0..12 {
+    for level in 0..13 {
         let n = largest_nimber_in_subfield(level);
         println!("{} -> {} -> {}", level, &n, minimal_polynomial(&n));
     }