Skip to content

Instantly share code, notes, and snippets.

@mizar
Last active January 9, 2023 07:02
Show Gist options
  • Save mizar/d925826884c2c8020ba7 to your computer and use it in GitHub Desktop.
Save mizar/d925826884c2c8020ba7 to your computer and use it in GitHub Desktop.
整数環FFT用素数探索 (PARI/GP script)
hex(n) =
{
return(if(n < 0, Strprintf("-0x%x", -n), Strprintf("0x%x", n)));
};
ban(n) =
{
local(b, c, v);
c = round(n);
v = "";
while(c != 0,
b = bitand(c, -c);
v = if(b > 2, Str(2 "^" length(binary(b - 1)) v), Str(b, v));
if(bitand(c, b + b) == 0,
c = c - b; v = Str(if(c != 0, " + ", ""), v),
c = c + b; v = Str(if(c != 0, " - ", "- "), v)
);
);
return(v);
};
fan(n, lim) =
{
local(f, v, k);
f = factor(round(n), lim);
v = "";
for(k = 1, length(f~), v = Str(v, if(k > 1, " * ", "") f[k, 1] if(f[k, 2] > 1, Str("^" f[k, 2]), if(isprime(f[k, 1]), "", "c"))));
return(v);
};
primescan(rv=[64], s=[2]) =
{
local(i, j, n, r, nv, nd, r2, sv, tv, uv, t, v, f);
for(j = 1, length(rv),
r = rv[j];
f = Strprintf("result_prime_%04d.yaml", r);
write(f, "- \"r\": " r);
write(f, " \"primes\":");
sv = vector(length(s), i, s[i]);
uv = vector(length(s), i, 1);
nv = vector(length(s), i, 2^r - ((2^r - 1) % s[i]));
for(i = 1, length(s), while(sv[i] > 0 && sv[i] % 2 == 0, sv[i] = sv[i] / 2; uv[i] = uv[i] * 2));
for(i = 1, length(s), while(nv[i] > 1 && !isprime(nv[i]), nv[i] = nv[i] - sv[i] * uv[i]));
while(1,
tv = vector(length(s), i, 1);
for(i = 1, length(s), while(nv[i] > 1 && nv[i] % 2^(tv[i]+1) == 1, tv[i] = tv[i] + 1));
v = 1; for(i = 1, length(s), if(nv[i] > 1 && (nv[v] < 2 || tv[v] > tv[i] || (tv[v] == tv[i] && nv[v] < nv[i])), v = i));
t = tv[v];
n = nv[v];
if(n < 2, break(),
for(i = 1, length(s), if(nv[i] == n, uv[i] = 2^tv[i]));
nd = lift(Mod(-1, 2^r) / n);
r2 = lift(Mod(4^r, n));
write(f, " - \"n\": " n);
write(f, " \"n_hex\": \"" hex(n) "\"");
write(f, " \"n_bit\": \"" ban(n) "\"");
write(f, " \"n_fac\": \"" fan(n - 1, 10000) " + 1\"");
write(f, " \"nd\": " nd);
write(f, " \"nd_hex\": \"" hex(nd) "\"");
write(f, " \"nd_bit\": \"" ban(nd) "\"");
write(f, " \"r2\": " r2);
write(f, " \"r2_hex\": \"" hex(r2) "\"");
write(f, " \"r2_bit\": \"" ban(r2) "\"");
if(n % 2^(max(r - 128, 1)) == 1,
write(f, " \"znprimroot\": " lift(znprimroot(n))));
for(i = 1, length(s), if(nv[i] == n,
nv[i] = nv[i] - sv[i] * uv[i];
uv[i] = uv[i] * 2;
while(nv[i] > 1 && !isprime(nv[i]), nv[i] = nv[i] - sv[i] * uv[i]);
));
);
);
);
};
allocatemem(2^25); \\ allocate memory 32MiB
primescan([14,15,16,22,23,24,25,26,30,31,32,46,47,48,49,50,51,52,58,59,60,61,62,63,64,94,95,96,100,101,102,103,104,126,127,128,190,191,192,254,255,256], [2, 2*3, 2*3*3, 2*3*5, 2*3*3*5, 2*3*5*7, 2*3*3*5*7]);
\\ primescan([384,512,768,1024], [2, 2*3, 2*3*3, 2*3*5, 2*3*3*5, 2*3*5*7, 2*3*3*5*7]); \\ heavy task
quit;

整数環FFT用素数探索 (PARI/GP Script)

出力要素

  • n: 素数
  • nd: -1 / n (mod 2^r)
  • r2: (2^r)^2 (mod n)
  • znprimroot: 原始根
  • _hex: 16進数表記
  • _bit: 2進bit加減算表記
  • _fac: (n-1)の素因数分解(抄)表記, 末尾'c'の因数は合成数を示す

実行コマンド例

rm result_prime_*.yaml; gp prime_scan.gp

参考

- "r": 14
"primes":
- "n": 16381
"n_hex": "0x3ffd"
"n_bit": "2^14 - 2^2 + 1"
"n_fac": "2^2 * 3^2 * 5 * 7 * 13 + 1"
"nd": 10923
"nd_hex": "0x2aab"
"nd_bit": "2^14 - 2^12 - 2^10 - 2^8 - 2^6 - 2^4 - 2^2 - 1"
"r2": 9
"r2_hex": "0x9"
"r2_bit": "2^3 + 1"
"znprimroot": 2
- "n": 16369
"n_hex": "0x3ff1"
"n_bit": "2^14 - 2^4 + 1"
"n_fac": "2^4 * 3 * 11 * 31 + 1"
"nd": 12015
"nd_hex": "0x2eef"
"nd_bit": "2^14 - 2^12 - 2^8 - 2^4 - 1"
"r2": 225
"r2_hex": "0xe1"
"r2_bit": "2^8 - 2^5 + 1"
"znprimroot": 7
- "n": 16273
"n_hex": "0x3f91"
"n_bit": "2^14 - 2^7 + 2^4 + 1"
"n_fac": "2^4 * 3^2 * 113 + 1"
"nd": 7823
"nd_hex": "0x1e8f"
"nd_bit": "2^13 - 2^9 + 2^7 + 2^4 - 1"
"r2": 12321
"r2_hex": "0x3021"
"r2_bit": "2^14 - 2^12 + 2^5 + 1"
"znprimroot": 7
- "n": 15601
"n_hex": "0x3cf1"
"n_bit": "2^14 - 2^10 + 2^8 - 2^4 + 1"
"n_fac": "2^4 * 3 * 5^2 * 13 + 1"
"nd": 3055
"nd_hex": "0xbef"
"nd_bit": "2^12 - 2^10 - 2^4 - 1"
"r2": 4650
"r2_hex": "0x122a"
"r2_bit": "2^12 + 2^9 + 2^5 + 2^3 + 2"
"znprimroot": 23
- "n": 15121
"n_hex": "0x3b11"
"n_bit": "2^14 - 2^10 - 2^8 + 2^4 + 1"
"n_fac": "2^4 * 3^3 * 5 * 7 + 1"
"nd": 10767
"nd_hex": "0x2a0f"
"nd_bit": "2^13 + 2^11 + 2^9 + 2^4 - 1"
"r2": 7464
"r2_hex": "0x1d28"
"r2_bit": "2^13 - 2^10 + 2^8 + 2^5 + 2^3"
"znprimroot": 11
- "n": 16033
"n_hex": "0x3ea1"
"n_bit": "2^14 - 2^9 + 2^7 + 2^5 + 1"
"n_fac": "2^5 * 3 * 167 + 1"
"nd": 6815
"nd_hex": "0x1a9f"
"nd_bit": "2^13 - 2^11 + 2^9 + 2^7 + 2^5 - 1"
"r2": 10970
"r2_hex": "0x2ada"
"r2_bit": "2^14 - 2^12 - 2^10 - 2^8 - 2^5 - 2^3 + 2"
"znprimroot": 5
- "n": 16193
"n_hex": "0x3f41"
"n_bit": "2^14 - 2^8 + 2^6 + 1"
"n_fac": "2^6 * 11 * 23 + 1"
"nd": 12095
"nd_hex": "0x2f3f"
"nd_bit": "2^14 - 2^12 - 2^8 + 2^6 - 1"
"r2": 4095
"r2_hex": "0xfff"
"r2_bit": "2^12 - 1"
"znprimroot": 5
- "n": 15937
"n_hex": "0x3e41"
"n_bit": "2^14 - 2^9 + 2^6 + 1"
"n_fac": "2^6 * 3 * 83 + 1"
"nd": 11839
"nd_hex": "0x2e3f"
"nd_bit": "2^14 - 2^12 - 2^9 + 2^6 - 1"
"r2": 8565
"r2_hex": "0x2175"
"r2_bit": "2^13 + 2^9 - 2^7 - 2^4 + 2^2 + 1"
"znprimroot": 7
- "n": 14401
"n_hex": "0x3841"
"n_bit": "2^14 - 2^11 + 2^6 + 1"
"n_fac": "2^6 * 3^2 * 5^2 + 1"
"nd": 10303
"nd_hex": "0x283f"
"nd_bit": "2^13 + 2^11 + 2^6 - 1"
"r2": 816
"r2_hex": "0x330"
"r2_bit": "2^10 - 2^8 + 2^6 - 2^4"
"znprimroot": 11
- "n": 16001
"n_hex": "0x3e81"
"n_bit": "2^14 - 2^9 + 2^7 + 1"
"n_fac": "2^7 * 5^3 + 1"
"nd": 15999
"nd_hex": "0x3e7f"
"nd_bit": "2^14 - 2^9 + 2^7 - 1"
"r2": 2680
"r2_hex": "0xa78"
"r2_bit": "2^11 + 2^9 + 2^7 - 2^3"
"znprimroot": 3
- "n": 13441
"n_hex": "0x3481"
"n_bit": "2^14 - 2^12 + 2^10 + 2^7 + 1"
"n_fac": "2^7 * 3 * 5 * 7 + 1"
"nd": 13439
"nd_hex": "0x347f"
"nd_bit": "2^14 - 2^12 + 2^10 + 2^7 - 1"
"r2": 5245
"r2_hex": "0x147d"
"r2_bit": "2^12 + 2^10 + 2^7 - 2^2 + 1"
"znprimroot": 11
- "n": 10369
"n_hex": "0x2881"
"n_bit": "2^13 + 2^11 + 2^7 + 1"
"n_fac": "2^7 * 3^4 + 1"
"nd": 10367
"nd_hex": "0x287f"
"nd_bit": "2^13 + 2^11 + 2^7 - 1"
"r2": 2784
"r2_hex": "0xae0"
"r2_bit": "2^12 - 2^10 - 2^8 - 2^5"
"znprimroot": 13
- "n": 15361
"n_hex": "0x3c01"
"n_bit": "2^14 - 2^10 + 1"
"n_fac": "2^10 * 3 * 5 + 1"
"nd": 15359
"nd_hex": "0x3bff"
"nd_bit": "2^14 - 2^10 - 1"
"r2": 1981
"r2_hex": "0x7bd"
"r2_bit": "2^11 - 2^6 - 2^2 + 1"
"znprimroot": 7
- "n": 12289
"n_hex": "0x3001"
"n_bit": "2^14 - 2^12 + 1"
"n_fac": "2^12 * 3 + 1"
"nd": 12287
"nd_hex": "0x2fff"
"nd_bit": "2^14 - 2^12 - 1"
"r2": 6829
"r2_hex": "0x1aad"
"r2_bit": "2^13 - 2^10 - 2^8 - 2^6 - 2^4 - 2^2 + 1"
"znprimroot": 11
- "r": 15
"primes":
- "n": 32707
"n_hex": "0x7fc3"
"n_bit": "2^15 - 2^6 + 2^2 - 1"
"n_fac": "2 * 3^2 * 23 * 79 + 1"
"nd": 5909
"nd_hex": "0x1715"
"nd_bit": "2^13 - 2^11 - 2^8 + 2^4 + 2^2 + 1"
"r2": 3721
"r2_hex": "0xe89"
"r2_bit": "2^12 - 2^9 + 2^7 + 2^3 + 1"
"znprimroot": 3
- "n": 32611
"n_hex": "0x7f63"
"n_bit": "2^15 - 2^7 - 2^5 + 2^2 - 1"
"n_fac": "2 * 3 * 5 * 1087 + 1"
"nd": 1461
"nd_hex": "0x5b5"
"nd_bit": "2^11 - 2^9 - 2^6 - 2^4 + 2^2 + 1"
"r2": 24649
"r2_hex": "0x6049"
"r2_bit": "2^15 - 2^13 + 2^6 + 2^3 + 1"
"znprimroot": 3
- "n": 32491
"n_hex": "0x7eeb"
"n_bit": "2^15 - 2^8 - 2^4 - 2^2 - 1"
"n_fac": "2 * 3^2 * 5 * 19^2 + 1"
"nd": 17981
"nd_hex": "0x463d"
"nd_bit": "2^14 + 2^11 - 2^9 + 2^6 - 2^2 + 1"
"r2": 11747
"r2_hex": "0x2de3"
"r2_bit": "2^14 - 2^12 - 2^9 - 2^5 + 2^2 - 1"
"znprimroot": 2
- "n": 30871
"n_hex": "0x7897"
"n_bit": "2^15 - 2^11 + 2^7 + 2^5 - 2^3 - 1"
"n_fac": "2 * 3^2 * 5 * 7^3 + 1"
"nd": 30937
"nd_hex": "0x78d9"
"nd_bit": "2^15 - 2^11 + 2^8 - 2^5 - 2^3 + 1"
"r2": 17573
"r2_hex": "0x44a5"
"r2_bit": "2^14 + 2^10 + 2^7 + 2^5 + 2^2 + 1"
"znprimroot": 3
- "n": 32749
"n_hex": "0x7fed"
"n_bit": "2^15 - 2^4 - 2^2 + 1"
"n_fac": "2^2 * 3 * 2729 + 1"
"nd": 18971
"nd_hex": "0x4a1b"
"nd_bit": "2^14 + 2^11 + 2^9 + 2^5 - 2^2 - 1"
"r2": 361
"r2_hex": "0x169"
"r2_bit": "2^9 - 2^7 - 2^5 + 2^3 + 1"
"znprimroot": 2
- "n": 32653
"n_hex": "0x7f8d"
"n_bit": "2^15 - 2^7 + 2^4 - 2^2 + 1"
"n_fac": "2^2 * 3^2 * 907 + 1"
"nd": 9403
"nd_hex": "0x24bb"
"nd_bit": "2^13 + 2^10 + 2^8 - 2^6 - 2^2 - 1"
"r2": 13225
"r2_hex": "0x33a9"
"r2_bit": "2^14 - 2^12 + 2^10 - 2^7 + 2^5 + 2^3 + 1"
"znprimroot": 2
- "n": 32341
"n_hex": "0x7e55"
"n_bit": "2^15 - 2^9 + 2^6 + 2^4 + 2^2 + 1"
"n_fac": "2^2 * 3 * 5 * 7^2 * 11 + 1"
"nd": 28931
"nd_hex": "0x7103"
"nd_bit": "2^15 - 2^12 + 2^8 + 2^2 - 1"
"r2": 20624
"r2_hex": "0x5090"
"r2_bit": "2^14 + 2^12 + 2^7 + 2^4"
"znprimroot": 2
- "n": 32713
"n_hex": "0x7fc9"
"n_bit": "2^15 - 2^6 + 2^3 + 1"
"n_fac": "2^3 * 3 * 29 * 47 + 1"
"nd": 13703
"nd_hex": "0x3587"
"nd_bit": "2^14 - 2^11 - 2^9 - 2^7 + 2^3 - 1"
"r2": 3025
"r2_hex": "0xbd1"
"r2_bit": "2^12 - 2^10 - 2^6 + 2^4 + 1"
"znprimroot": 5
- "n": 31081
"n_hex": "0x7969"
"n_bit": "2^15 - 2^11 + 2^9 - 2^7 - 2^5 + 2^3 + 1"
"n_fac": "2^3 * 3 * 5 * 7 * 37 + 1"
"nd": 22823
"nd_hex": "0x5927"
"nd_bit": "2^15 - 2^13 - 2^11 + 2^8 + 2^5 + 2^3 - 1"
"r2": 17598
"r2_hex": "0x44be"
"r2_bit": "2^14 + 2^10 + 2^8 - 2^6 - 2"
"znprimroot": 13
- "n": 32497
"n_hex": "0x7ef1"
"n_bit": "2^15 - 2^8 - 2^4 + 1"
"n_fac": "2^4 * 3 * 677 + 1"
"nd": 19951
"nd_hex": "0x4def"
"nd_bit": "2^14 + 2^12 - 2^9 - 2^4 - 1"
"r2": 8447
"r2_hex": "0x20ff"
"r2_bit": "2^13 + 2^8 - 1"
"znprimroot": 7
- "n": 32401
"n_hex": "0x7e91"
"n_bit": "2^15 - 2^9 + 2^7 + 2^4 + 1"
"n_fac": "2^4 * 3^4 * 5^2 + 1"
"nd": 32143
"nd_hex": "0x7d8f"
"nd_bit": "2^15 - 2^9 - 2^7 + 2^4 - 1"
"r2": 5085
"r2_hex": "0x13dd"
"r2_bit": "2^12 + 2^10 - 2^5 - 2^2 + 1"
"znprimroot": 7
- "n": 32609
"n_hex": "0x7f61"
"n_bit": "2^15 - 2^7 - 2^5 + 1"
"n_fac": "2^5 * 1019 + 1"
"nd": 7007
"nd_hex": "0x1b5f"
"nd_bit": "2^13 - 2^10 - 2^7 - 2^5 - 1"
"r2": 25281
"r2_hex": "0x62c1"
"r2_bit": "2^15 - 2^13 + 2^10 - 2^8 - 2^6 + 1"
"znprimroot": 3
- "n": 32353
"n_hex": "0x7e61"
"n_bit": "2^15 - 2^9 + 2^7 - 2^5 + 1"
"n_fac": "2^5 * 3 * 337 + 1"
"nd": 23135
"nd_hex": "0x5a5f"
"nd_bit": "2^15 - 2^13 - 2^11 + 2^9 + 2^7 - 2^5 - 1"
"r2": 10460
"r2_hex": "0x28dc"
"r2_bit": "2^13 + 2^11 + 2^8 - 2^5 - 2^2"
"znprimroot": 15
- "n": 30241
"n_hex": "0x7621"
"n_bit": "2^15 - 2^11 - 2^9 + 2^5 + 1"
"n_fac": "2^5 * 3^3 * 5 * 7 + 1"
"nd": 29215
"nd_hex": "0x721f"
"nd_bit": "2^15 - 2^12 + 2^9 + 2^5 - 1"
"r2": 4878
"r2_hex": "0x130e"
"r2_bit": "2^12 + 2^10 - 2^8 + 2^4 - 2"
"znprimroot": 11
- "n": 32321
"n_hex": "0x7e41"
"n_bit": "2^15 - 2^9 + 2^6 + 1"
"n_fac": "2^6 * 5 * 101 + 1"
"nd": 28223
"nd_hex": "0x6e3f"
"nd_bit": "2^15 - 2^12 - 2^9 + 2^6 - 1"
"r2": 5883
"r2_hex": "0x16fb"
"r2_bit": "2^13 - 2^11 - 2^8 - 2^2 - 1"
"znprimroot": 6
- "n": 29761
"n_hex": "0x7441"
"n_bit": "2^15 - 2^12 + 2^10 + 2^6 + 1"
"n_fac": "2^6 * 3 * 5 * 31 + 1"
"nd": 25663
"nd_hex": "0x643f"
"nd_bit": "2^15 - 2^13 + 2^10 + 2^6 - 1"
"r2": 24466
"r2_hex": "0x5f92"
"r2_bit": "2^15 - 2^13 - 2^7 + 2^4 + 2"
"znprimroot": 17
- "n": 20161
"n_hex": "0x4ec1"
"n_bit": "2^14 + 2^12 - 2^8 - 2^6 + 1"
"n_fac": "2^6 * 3^2 * 5 * 7 + 1"
"nd": 16063
"nd_hex": "0x3ebf"
"nd_bit": "2^14 - 2^8 - 2^6 - 1"
"r2": 7286
"r2_hex": "0x1c76"
"r2_bit": "2^13 - 2^10 + 2^7 - 2^3 - 2"
"znprimroot": 13
- "n": 26881
"n_hex": "0x6901"
"n_bit": "2^15 - 2^13 + 2^11 + 2^8 + 1"
"n_fac": "2^8 * 3 * 5 * 7 + 1"
"nd": 26879
"nd_hex": "0x68ff"
"nd_bit": "2^15 - 2^13 + 2^11 + 2^8 - 1"
"r2": 7160
"r2_hex": "0x1bf8"
"r2_bit": "2^13 - 2^10 - 2^3"
"znprimroot": 11
- "n": 32257
"n_hex": "0x7e01"
"n_bit": "2^15 - 2^9 + 1"
"n_fac": "2^9 * 3^2 * 7 + 1"
"nd": 32255
"nd_hex": "0x7dff"
"nd_bit": "2^15 - 2^9 - 1"
"r2": 3065
"r2_hex": "0xbf9"
"r2_bit": "2^12 - 2^10 - 2^3 + 1"
"znprimroot": 15
- "n": 23041
"n_hex": "0x5a01"
"n_bit": "2^15 - 2^13 - 2^11 + 2^9 + 1"
"n_fac": "2^9 * 3^2 * 5 + 1"
"nd": 23039
"nd_hex": "0x59ff"
"nd_bit": "2^15 - 2^13 - 2^11 + 2^9 - 1"
"r2": 8183
"r2_hex": "0x1ff7"
"r2_bit": "2^13 - 2^3 - 1"
"znprimroot": 11
- "n": 25601
"n_hex": "0x6401"
"n_bit": "2^15 - 2^13 + 2^10 + 1"
"n_fac": "2^10 * 5^2 + 1"
"nd": 25599
"nd_hex": "0x63ff"
"nd_bit": "2^15 - 2^13 + 2^10 - 1"
"r2": 10283
"r2_hex": "0x282b"
"r2_bit": "2^13 + 2^11 + 2^6 - 2^4 - 2^2 - 1"
"znprimroot": 3
- "n": 15361
"n_hex": "0x3c01"
"n_bit": "2^14 - 2^10 + 1"
"n_fac": "2^10 * 3 * 5 + 1"
"nd": 15359
"nd_hex": "0x3bff"
"nd_bit": "2^14 - 2^10 - 1"
"r2": 7924
"r2_hex": "0x1ef4"
"r2_bit": "2^13 - 2^8 - 2^4 + 2^2"
"znprimroot": 7
- "n": 18433
"n_hex": "0x4801"
"n_bit": "2^14 + 2^11 + 1"
"n_fac": "2^11 * 3^2 + 1"
"nd": 18431
"nd_hex": "0x47ff"
"nd_bit": "2^14 + 2^11 - 1"
"r2": 1141
"r2_hex": "0x475"
"r2_bit": "2^10 + 2^7 - 2^4 + 2^2 + 1"
"znprimroot": 5
- "n": 12289
"n_hex": "0x3001"
"n_bit": "2^14 - 2^12 + 1"
"n_fac": "2^12 * 3 + 1"
"nd": 12287
"nd_hex": "0x2fff"
"nd_bit": "2^14 - 2^12 - 1"
"r2": 2738
"r2_hex": "0xab2"
"r2_bit": "2^12 - 2^10 - 2^8 - 2^6 - 2^4 + 2"
"znprimroot": 11
- "r": 16
"primes":
- "n": 65521
"n_hex": "0xfff1"
"n_bit": "2^16 - 2^4 + 1"
"n_fac": "2^4 * 3^2 * 5 * 7 * 13 + 1"
"nd": 61167
"nd_hex": "0xeeef"
"nd_bit": "2^16 - 2^12 - 2^8 - 2^4 - 1"
"r2": 225
"r2_hex": "0xe1"
"r2_bit": "2^8 - 2^5 + 1"
"znprimroot": 17
- "n": 63841
"n_hex": "0xf961"
"n_bit": "2^16 - 2^11 + 2^9 - 2^7 - 2^5 + 1"
"n_fac": "2^5 * 3 * 5 * 7 * 19 + 1"
"nd": 38239
"nd_hex": "0x955f"
"nd_bit": "2^15 + 2^13 - 2^11 - 2^9 - 2^7 - 2^5 - 1"
"r2": 180
"r2_hex": "0xb4"
"r2_bit": "2^8 - 2^6 - 2^4 + 2^2"
"znprimroot": 17
- "n": 30241
"n_hex": "0x7621"
"n_bit": "2^15 - 2^11 - 2^9 + 2^5 + 1"
"n_fac": "2^5 * 3^3 * 5 * 7 + 1"
"nd": 29215
"nd_hex": "0x721f"
"nd_bit": "2^15 - 2^12 + 2^9 + 2^5 - 1"
"r2": 19512
"r2_hex": "0x4c38"
"r2_bit": "2^14 + 2^12 - 2^10 + 2^6 - 2^3"
"znprimroot": 11
- "n": 65089
"n_hex": "0xfe41"
"n_bit": "2^16 - 2^9 + 2^6 + 1"
"n_fac": "2^6 * 3^2 * 113 + 1"
"nd": 60991
"nd_hex": "0xee3f"
"nd_bit": "2^16 - 2^12 - 2^9 + 2^6 - 1"
"r2": 4542
"r2_hex": "0x11be"
"r2_bit": "2^12 + 2^9 - 2^6 - 2"
"znprimroot": 7
- "n": 47041
"n_hex": "0xb7c1"
"n_bit": "2^16 - 2^14 - 2^11 - 2^6 + 1"
"n_fac": "2^6 * 3 * 5 * 7^2 + 1"
"nd": 42943
"nd_hex": "0xa7bf"
"nd_bit": "2^15 + 2^13 + 2^11 - 2^6 - 1"
"r2": 29914
"r2_hex": "0x74da"
"r2_bit": "2^15 - 2^12 + 2^10 + 2^8 - 2^5 - 2^3 + 2"
"znprimroot": 29
- "n": 20161
"n_hex": "0x4ec1"
"n_bit": "2^14 + 2^12 - 2^8 - 2^6 + 1"
"n_fac": "2^6 * 3^2 * 5 * 7 + 1"
"nd": 48831
"nd_hex": "0xbebf"
"nd_bit": "2^16 - 2^14 - 2^8 - 2^6 - 1"
"r2": 8983
"r2_hex": "0x2317"
"r2_bit": "2^13 + 2^10 - 2^8 + 2^5 - 2^3 - 1"
"znprimroot": 13
- "n": 63361
"n_hex": "0xf781"
"n_bit": "2^16 - 2^11 - 2^7 + 1"
"n_fac": "2^7 * 3^2 * 5 * 11 + 1"
"nd": 46975
"nd_hex": "0xb77f"
"nd_bit": "2^16 - 2^14 - 2^11 - 2^7 - 1"
"r2": 41911
"r2_hex": "0xa3b7"
"r2_bit": "2^15 + 2^13 + 2^10 - 2^6 - 2^3 - 1"
"znprimroot": 37
- "n": 57601
"n_hex": "0xe101"
"n_bit": "2^16 - 2^13 + 2^8 + 1"
"n_fac": "2^8 * 3^2 * 5^2 + 1"
"nd": 57599
"nd_hex": "0xe0ff"
"nd_bit": "2^16 - 2^13 + 2^8 - 1"
"r2": 6332
"r2_hex": "0x18bc"
"r2_bit": "2^13 - 2^11 + 2^8 - 2^6 - 2^2"
"znprimroot": 7
- "n": 26881
"n_hex": "0x6901"
"n_bit": "2^15 - 2^13 + 2^11 + 2^8 + 1"
"n_fac": "2^8 * 3 * 5 * 7 + 1"
"nd": 26879
"nd_hex": "0x68ff"
"nd_bit": "2^15 - 2^13 + 2^11 + 2^8 - 1"
"r2": 1759
"r2_hex": "0x6df"
"r2_bit": "2^11 - 2^8 - 2^5 - 1"
"znprimroot": 11
- "n": 23041
"n_hex": "0x5a01"
"n_bit": "2^15 - 2^13 - 2^11 + 2^9 + 1"
"n_fac": "2^9 * 3^2 * 5 + 1"
"nd": 23039
"nd_hex": "0x59ff"
"nd_bit": "2^15 - 2^13 - 2^11 + 2^9 - 1"
"r2": 9691
"r2_hex": "0x25db"
"r2_bit": "2^13 + 2^11 - 2^9 - 2^5 - 2^2 - 1"
"znprimroot": 11
- "n": 64513
"n_hex": "0xfc01"
"n_bit": "2^16 - 2^10 + 1"
"n_fac": "2^10 * 3^2 * 7 + 1"
"nd": 64511
"nd_hex": "0xfbff"
"nd_bit": "2^16 - 2^10 - 1"
"r2": 14321
"r2_hex": "0x37f1"
"r2_bit": "2^14 - 2^11 - 2^4 + 1"
"znprimroot": 5
- "n": 18433
"n_hex": "0x4801"
"n_bit": "2^14 + 2^11 + 1"
"n_fac": "2^11 * 3^2 + 1"
"nd": 18431
"nd_hex": "0x47ff"
"nd_bit": "2^14 + 2^11 - 1"
"r2": 4564
"r2_hex": "0x11d4"
"r2_bit": "2^12 + 2^9 - 2^6 + 2^4 + 2^2"
"znprimroot": 5
- "n": 61441
"n_hex": "0xf001"
"n_bit": "2^16 - 2^12 + 1"
"n_fac": "2^12 * 3 * 5 + 1"
"nd": 61439
"nd_hex": "0xefff"
"nd_bit": "2^16 - 2^12 - 1"
"r2": 57073
"r2_hex": "0xdef1"
"r2_bit": "2^16 - 2^13 - 2^8 - 2^4 + 1"
"znprimroot": 17
- "n": 40961
"n_hex": "0xa001"
"n_bit": "2^15 + 2^13 + 1"
"n_fac": "2^13 * 5 + 1"
"nd": 40959
"nd_hex": "0x9fff"
"nd_bit": "2^15 + 2^13 - 1"
"r2": 1641
"r2_hex": "0x669"
"r2_bit": "2^11 - 2^9 + 2^7 - 2^5 + 2^3 + 1"
"znprimroot": 3
- "r": 22
"primes":
- "n": 4194271
"n_hex": "0x3fffdf"
"n_bit": "2^22 - 2^5 - 1"
"n_fac": "2 * 3^2 * 5 * 29 * 1607 + 1"
"nd": 1016801
"nd_hex": "0xf83e1"
"nd_bit": "2^20 - 2^15 + 2^10 - 2^5 + 1"
"r2": 1089
"r2_hex": "0x441"
"r2_bit": "2^10 + 2^6 + 1"
"znprimroot": 6
- "n": 4194301
"n_hex": "0x3ffffd"
"n_bit": "2^22 - 2^2 + 1"
"n_fac": "2^2 * 3 * 5^2 * 11 * 31 * 41 + 1"
"nd": 2796203
"nd_hex": "0x2aaaab"
"nd_bit": "2^22 - 2^20 - 2^18 - 2^16 - 2^14 - 2^12 - 2^10 - 2^8 - 2^6 - 2^4 - 2^2 - 1"
"r2": 9
"r2_hex": "0x9"
"r2_bit": "2^3 + 1"
"znprimroot": 7
- "n": 4194181
"n_hex": "0x3fff85"
"n_bit": "2^22 - 2^7 + 2^2 + 1"
"n_fac": "2^2 * 3^5 * 5 * 863 + 1"
"nd": 3137203
"nd_hex": "0x2fdeb3"
"nd_bit": "2^22 - 2^20 - 2^13 - 2^8 - 2^6 - 2^4 + 2^2 - 1"
"r2": 15129
"r2_hex": "0x3b19"
"r2_bit": "2^14 - 2^10 - 2^8 + 2^5 - 2^3 + 1"
"znprimroot": 7
- "n": 4193701
"n_hex": "0x3ffda5"
"n_bit": "2^22 - 2^9 - 2^7 + 2^5 + 2^2 + 1"
"n_fac": "2^2 * 3 * 5^2 * 7 * 1997 + 1"
"nd": 1662419
"nd_hex": "0x195dd3"
"nd_bit": "2^21 - 2^19 + 2^17 - 2^15 - 2^13 - 2^9 - 2^6 + 2^4 + 2^2 - 1"
"r2": 363609
"r2_hex": "0x58c59"
"r2_bit": "2^19 - 2^17 - 2^15 + 2^12 - 2^10 + 2^7 - 2^5 - 2^3 + 1"
"znprimroot": 2
- "n": 4192021
"n_hex": "0x3ff715"
"n_bit": "2^22 - 2^11 - 2^8 + 2^4 + 2^2 + 1"
"n_fac": "2^2 * 3^3 * 5 * 7 * 1109 + 1"
"nd": 4087747
"nd_hex": "0x3e5fc3"
"nd_bit": "2^22 - 2^17 + 2^15 - 2^13 - 2^6 + 2^2 - 1"
"r2": 1020068
"r2_hex": "0xf90a4"
"r2_bit": "2^20 - 2^15 + 2^12 + 2^7 + 2^5 + 2^2"
"znprimroot": 10
- "n": 4194217
"n_hex": "0x3fffa9"
"n_bit": "2^22 - 2^7 + 2^5 + 2^3 + 1"
"n_fac": "2^3 * 3^2 * 13 * 4481 + 1"
"nd": 1108839
"nd_hex": "0x10eb67"
"nd_bit": "2^20 + 2^16 - 2^12 - 2^10 - 2^7 - 2^5 + 2^3 - 1"
"r2": 7569
"r2_hex": "0x1d91"
"r2_bit": "2^13 - 2^9 - 2^7 + 2^4 + 1"
"znprimroot": 5
- "n": 4170601
"n_hex": "0x3fa369"
"n_bit": "2^22 - 2^15 + 2^13 + 2^10 - 2^7 - 2^5 + 2^3 + 1"
"n_fac": "2^3 * 3^2 * 5^2 * 7 * 331 + 1"
"nd": 2679591
"nd_hex": "0x28e327"
"nd_bit": "2^21 + 2^19 + 2^16 - 2^13 + 2^10 - 2^8 + 2^5 + 2^3 - 1"
"r2": 2971675
"r2_hex": "0x2d581b"
"r2_bit": "2^22 - 2^20 - 2^17 - 2^15 - 2^13 - 2^11 + 2^5 - 2^2 - 1"
"znprimroot": 13
- "n": 4193041
"n_hex": "0x3ffb11"
"n_bit": "2^22 - 2^10 - 2^8 + 2^4 + 1"
"n_fac": "2^4 * 3 * 5 * 17471 + 1"
"nd": 1550863
"nd_hex": "0x17aa0f"
"nd_bit": "2^21 - 2^19 - 2^15 + 2^13 + 2^11 + 2^9 + 2^4 - 1"
"r2": 1595169
"r2_hex": "0x185721"
"r2_bit": "2^21 - 2^19 + 2^15 - 2^13 - 2^11 - 2^8 + 2^5 + 1"
"znprimroot": 13
- "n": 4192561
"n_hex": "0x3ff931"
"n_bit": "2^22 - 2^11 + 2^8 + 2^6 - 2^4 + 1"
"n_fac": "2^4 * 3^4 * 5 * 647 + 1"
"nd": 344111
"nd_hex": "0x5402f"
"nd_bit": "2^18 + 2^16 + 2^14 + 2^6 - 2^4 - 1"
"r2": 3038049
"r2_hex": "0x2e5b61"
"r2_bit": "2^22 - 2^20 - 2^17 + 2^15 - 2^13 - 2^10 - 2^7 - 2^5 + 1"
"znprimroot": 19
- "n": 4184881
"n_hex": "0x3fdb31"
"n_bit": "2^22 - 2^13 - 2^10 - 2^8 + 2^6 - 2^4 + 1"
"n_fac": "2^4 * 3 * 5 * 7 * 47 * 53 + 1"
"nd": 4088367
"nd_hex": "0x3e622f"
"nd_bit": "2^22 - 2^17 + 2^15 - 2^13 + 2^9 + 2^6 - 2^4 - 1"
"r2": 910428
"r2_hex": "0xde45c"
"r2_bit": "2^20 - 2^17 - 2^13 + 2^10 + 2^7 - 2^5 - 2^2"
"znprimroot": 11
- "n": 4193633
"n_hex": "0x3ffd61"
"n_bit": "2^22 - 2^9 - 2^7 - 2^5 + 1"
"n_fac": "2^5 * 29 * 4519 + 1"
"nd": 1218911
"nd_hex": "0x12995f"
"nd_bit": "2^20 + 2^17 + 2^15 + 2^13 - 2^11 + 2^9 - 2^7 - 2^5 - 1"
"r2": 450241
"r2_hex": "0x6dec1"
"r2_bit": "2^19 - 2^16 - 2^13 - 2^8 - 2^6 + 1"
"znprimroot": 3
- "n": 4193569
"n_hex": "0x3ffd21"
"n_bit": "2^22 - 2^10 + 2^8 + 2^5 + 1"
"n_fac": "2^5 * 3^2 * 14561 + 1"
"nd": 2373919
"nd_hex": "0x24391f"
"nd_bit": "2^21 + 2^18 + 2^14 - 2^11 + 2^8 + 2^5 - 1"
"r2": 540225
"r2_hex": "0x83e41"
"r2_bit": "2^19 + 2^14 - 2^9 + 2^6 + 1"
"znprimroot": 11
- "n": 4185121
"n_hex": "0x3fdc21"
"n_bit": "2^22 - 2^13 - 2^10 + 2^5 + 1"
"n_fac": "2^5 * 3 * 5 * 8719 + 1"
"nd": 3758111
"nd_hex": "0x39581f"
"nd_bit": "2^22 - 2^19 + 2^17 - 2^15 - 2^13 - 2^11 + 2^5 - 1"
"r2": 625069
"r2_hex": "0x989ad"
"r2_bit": "2^19 + 2^17 - 2^15 + 2^11 + 2^9 - 2^6 - 2^4 - 2^2 + 1"
"znprimroot": 11
- "n": 4163041
"n_hex": "0x3f85e1"
"n_bit": "2^22 - 2^15 + 2^11 - 2^9 - 2^5 + 1"
"n_fac": "2^5 * 3^2 * 5 * 7^2 * 59 + 1"
"nd": 3441119
"nd_hex": "0x3481df"
"nd_bit": "2^22 - 2^20 + 2^18 + 2^15 + 2^9 - 2^5 - 1"
"r2": 3223575
"r2_hex": "0x313017"
"r2_bit": "2^22 - 2^20 + 2^16 + 2^14 - 2^12 + 2^5 - 2^3 - 1"
"znprimroot": 19
- "n": 4193089
"n_hex": "0x3ffb41"
"n_bit": "2^22 - 2^10 - 2^8 + 2^6 + 1"
"n_fac": "2^6 * 3 * 21839 + 1"
"nd": 4025151
"nd_hex": "0x3d6b3f"
"nd_bit": "2^22 - 2^17 - 2^15 - 2^12 - 2^10 - 2^8 + 2^6 - 1"
"r2": 1476225
"r2_hex": "0x168681"
"r2_bit": "2^21 - 2^19 - 2^17 + 2^15 + 2^11 - 2^9 + 2^7 + 1"
"znprimroot": 11
- "n": 4184641
"n_hex": "0x3fda41"
"n_bit": "2^22 - 2^13 - 2^11 + 2^9 + 2^6 + 1"
"n_fac": "2^6 * 3^2 * 5 * 1453 + 1"
"nd": 1231423
"nd_hex": "0x12ca3f"
"nd_bit": "2^20 + 2^18 - 2^16 - 2^14 + 2^11 + 2^9 + 2^6 - 1"
"r2": 1311467
"r2_hex": "0x1402eb"
"r2_bit": "2^20 + 2^18 + 2^10 - 2^8 - 2^4 - 2^2 - 1"
"znprimroot": 7
- "n": 4159681
"n_hex": "0x3f78c1"
"n_bit": "2^22 - 2^15 - 2^11 + 2^8 - 2^6 + 1"
"n_fac": "2^6 * 3 * 5 * 7 * 619 + 1"
"nd": 3598527
"nd_hex": "0x36e8bf"
"nd_bit": "2^22 - 2^19 - 2^16 - 2^13 + 2^11 + 2^8 - 2^6 - 1"
"r2": 764001
"r2_hex": "0xba861"
"r2_bit": "2^20 - 2^18 - 2^15 + 2^13 + 2^11 + 2^7 - 2^5 + 1"
"znprimroot": 13
- "n": 4192129
"n_hex": "0x3ff781"
"n_bit": "2^22 - 2^11 - 2^7 + 1"
"n_fac": "2^7 * 3^3 * 1213 + 1"
"nd": 1554303
"nd_hex": "0x17b77f"
"nd_bit": "2^21 - 2^19 - 2^14 - 2^11 - 2^7 - 1"
"r2": 538496
"r2_hex": "0x83780"
"r2_bit": "2^19 + 2^14 - 2^11 - 2^7"
"znprimroot": 17
- "n": 4126081
"n_hex": "0x3ef581"
"n_bit": "2^22 - 2^16 - 2^11 - 2^9 - 2^7 + 1"
"n_fac": "2^7 * 3 * 5 * 7 * 307 + 1"
"nd": 3192191
"nd_hex": "0x30b57f"
"nd_bit": "2^22 - 2^20 + 2^16 - 2^14 - 2^11 - 2^9 - 2^7 - 1"
"r2": 158361
"r2_hex": "0x26a99"
"r2_bit": "2^17 + 2^15 - 2^13 + 2^11 + 2^9 + 2^7 + 2^5 - 2^3 + 1"
"znprimroot": 13
- "n": 3991681
"n_hex": "0x3ce881"
"n_bit": "2^22 - 2^18 + 2^16 - 2^13 + 2^11 + 2^7 + 1"
"n_fac": "2^7 * 3^4 * 5 * 7 * 11 + 1"
"nd": 3451007
"nd_hex": "0x34a87f"
"nd_bit": "2^22 - 2^20 + 2^18 + 2^15 + 2^13 + 2^11 + 2^7 - 1"
"r2": 1641044
"r2_hex": "0x190a54"
"r2_bit": "2^21 - 2^19 + 2^16 + 2^11 + 2^9 + 2^6 + 2^4 + 2^2"
"znprimroot": 41
- "n": 4181761
"n_hex": "0x3fcf01"
"n_bit": "2^22 - 2^14 + 2^12 - 2^8 + 1"
"n_fac": "2^8 * 3^3 * 5 * 11^2 + 1"
"nd": 2019071
"nd_hex": "0x1eceff"
"nd_bit": "2^21 - 2^16 - 2^14 + 2^12 - 2^8 - 1"
"r2": 2601692
"r2_hex": "0x27b2dc"
"r2_bit": "2^21 + 2^19 - 2^14 - 2^12 + 2^10 - 2^8 - 2^5 - 2^2"
"znprimroot": 14
- "n": 4179457
"n_hex": "0x3fc601"
"n_bit": "2^22 - 2^14 + 2^11 - 2^9 + 1"
"n_fac": "2^9 * 3^2 * 907 + 1"
"nd": 1820159
"nd_hex": "0x1bc5ff"
"nd_bit": "2^21 - 2^18 - 2^14 + 2^11 - 2^9 - 1"
"r2": 3101645
"r2_hex": "0x2f53cd"
"r2_bit": "2^22 - 2^20 - 2^16 + 2^14 + 2^12 + 2^10 - 2^6 + 2^4 - 2^2 + 1"
"znprimroot": 5
- "n": 4108801
"n_hex": "0x3eb201"
"n_bit": "2^22 - 2^16 - 2^14 - 2^12 + 2^9 + 1"
"n_fac": "2^9 * 3 * 5^2 * 107 + 1"
"nd": 3846655
"nd_hex": "0x3ab1ff"
"nd_bit": "2^22 - 2^18 - 2^16 - 2^14 - 2^12 + 2^9 - 1"
"r2": 1206030
"r2_hex": "0x12670e"
"r2_bit": "2^20 + 2^17 + 2^15 - 2^13 + 2^11 - 2^8 + 2^4 - 2"
"znprimroot": 17
- "n": 3939841
"n_hex": "0x3c1e01"
"n_bit": "2^22 - 2^18 + 2^13 - 2^9 + 1"
"n_fac": "2^9 * 3^4 * 5 * 19 + 1"
"nd": 3677695
"nd_hex": "0x381dff"
"nd_bit": "2^22 - 2^19 + 2^13 - 2^9 - 1"
"r2": 131534
"r2_hex": "0x201ce"
"r2_bit": "2^17 + 2^9 - 2^6 + 2^4 - 2"
"znprimroot": 7
- "n": 4191233
"n_hex": "0x3ff401"
"n_bit": "2^22 - 2^12 + 2^10 + 1"
"n_fac": "2^10 * 4093 + 1"
"nd": 3142655
"nd_hex": "0x2ff3ff"
"nd_bit": "2^22 - 2^20 - 2^12 + 2^10 - 1"
"r2": 1048575
"r2_hex": "0xfffff"
"r2_bit": "2^20 - 1"
"znprimroot": 3
- "n": 4187137
"n_hex": "0x3fe401"
"n_bit": "2^22 - 2^13 + 2^10 + 1"
"n_fac": "2^10 * 3 * 29 * 47 + 1"
"nd": 3138559
"nd_hex": "0x2fe3ff"
"nd_bit": "2^22 - 2^20 - 2^13 + 2^10 - 1"
"r2": 1120245
"r2_hex": "0x1117f5"
"r2_bit": "2^20 + 2^16 + 2^13 - 2^11 - 2^4 + 2^2 + 1"
"znprimroot": 5
- "n": 4188161
"n_hex": "0x3fe801"
"n_bit": "2^22 - 2^13 + 2^11 + 1"
"n_fac": "2^11 * 5 * 409 + 1"
"nd": 4188159
"nd_hex": "0x3fe7ff"
"nd_bit": "2^22 - 2^13 + 2^11 - 1"
"r2": 43000
"r2_hex": "0xa7f8"
"r2_bit": "2^15 + 2^13 + 2^11 - 2^3"
"znprimroot": 3
- "n": 4171777
"n_hex": "0x3fa801"
"n_bit": "2^22 - 2^15 + 2^13 + 2^11 + 1"
"n_fac": "2^11 * 3 * 7 * 97 + 1"
"nd": 4171775
"nd_hex": "0x3fa7ff"
"nd_bit": "2^22 - 2^15 + 2^13 + 2^11 - 1"
"r2": 2680712
"r2_hex": "0x28e788"
"r2_bit": "2^21 + 2^19 + 2^16 - 2^13 + 2^11 - 2^7 + 2^3"
"znprimroot": 5
- "n": 4085761
"n_hex": "0x3e5801"
"n_bit": "2^22 - 2^17 + 2^15 - 2^13 - 2^11 + 1"
"n_fac": "2^11 * 3 * 5 * 7 * 19 + 1"
"nd": 4085759
"nd_hex": "0x3e57ff"
"nd_bit": "2^22 - 2^17 + 2^15 - 2^13 - 2^11 - 1"
"r2": 2333886
"r2_hex": "0x239cbe"
"r2_bit": "2^21 + 2^18 - 2^15 + 2^13 - 2^10 + 2^8 - 2^6 - 2"
"znprimroot": 41
- "n": 4165633
"n_hex": "0x3f9001"
"n_bit": "2^22 - 2^15 + 2^12 + 1"
"n_fac": "2^12 * 3^2 * 113 + 1"
"nd": 4165631
"nd_hex": "0x3f8fff"
"nd_bit": "2^22 - 2^15 + 2^12 - 1"
"r2": 1396540
"r2_hex": "0x154f3c"
"r2_bit": "2^20 + 2^18 + 2^16 + 2^14 + 2^12 - 2^8 + 2^6 - 2^2"
"znprimroot": 5
- "n": 3993601
"n_hex": "0x3cf001"
"n_bit": "2^22 - 2^18 + 2^16 - 2^12 + 1"
"n_fac": "2^12 * 3 * 5^2 * 13 + 1"
"nd": 3993599
"nd_hex": "0x3cefff"
"nd_bit": "2^22 - 2^18 + 2^16 - 2^12 - 1"
"r2": 2234523
"r2_hex": "0x22189b"
"r2_bit": "2^21 + 2^17 + 2^13 - 2^11 + 2^7 + 2^5 - 2^2 - 1"
"znprimroot": 11
- "n": 3870721
"n_hex": "0x3b1001"
"n_bit": "2^22 - 2^18 - 2^16 + 2^12 + 1"
"n_fac": "2^12 * 3^3 * 5 * 7 + 1"
"nd": 3870719
"nd_hex": "0x3b0fff"
"nd_bit": "2^22 - 2^18 - 2^16 + 2^12 - 1"
"r2": 2954839
"r2_hex": "0x2d1657"
"r2_bit": "2^22 - 2^20 - 2^18 + 2^16 + 2^13 - 2^11 - 2^9 + 2^7 - 2^5 - 2^3 - 1"
"znprimroot": 41
- "n": 4169729
"n_hex": "0x3fa001"
"n_bit": "2^22 - 2^15 + 2^13 + 1"
"n_fac": "2^13 * 509 + 1"
"nd": 4169727
"nd_hex": "0x3f9fff"
"nd_bit": "2^22 - 2^15 + 2^13 - 1"
"r2": 3489649
"r2_hex": "0x353f71"
"r2_bit": "2^22 - 2^20 + 2^18 + 2^16 + 2^14 - 2^7 - 2^4 + 1"
"znprimroot": 3
- "n": 4104193
"n_hex": "0x3ea001"
"n_bit": "2^22 - 2^17 + 2^15 + 2^13 + 1"
"n_fac": "2^13 * 3 * 167 + 1"
"nd": 4104191
"nd_hex": "0x3e9fff"
"nd_bit": "2^22 - 2^17 + 2^15 + 2^13 - 1"
"r2": 1898567
"r2_hex": "0x1cf847"
"r2_bit": "2^21 - 2^18 + 2^16 - 2^11 + 2^6 + 2^3 - 1"
"znprimroot": 5
- "n": 4079617
"n_hex": "0x3e4001"
"n_bit": "2^22 - 2^17 + 2^14 + 1"
"n_fac": "2^14 * 3 * 83 + 1"
"nd": 4079615
"nd_hex": "0x3e3fff"
"nd_bit": "2^22 - 2^17 + 2^14 - 1"
"r2": 422761
"r2_hex": "0x67369"
"r2_bit": "2^19 - 2^17 + 2^15 - 2^12 + 2^10 - 2^7 - 2^5 + 2^3 + 1"
"znprimroot": 5
- "n": 3686401
"n_hex": "0x384001"
"n_bit": "2^22 - 2^19 + 2^14 + 1"
"n_fac": "2^14 * 3^2 * 5^2 + 1"
"nd": 3686399
"nd_hex": "0x383fff"
"nd_bit": "2^22 - 2^19 + 2^14 - 1"
"r2": 2174632
"r2_hex": "0x212ea8"
"r2_bit": "2^21 + 2^16 + 2^14 - 2^12 - 2^9 + 2^7 + 2^5 + 2^3"
"znprimroot": 14
- "n": 1720321
"n_hex": "0x1a4001"
"n_bit": "2^21 - 2^19 + 2^17 + 2^14 + 1"
"n_fac": "2^14 * 3 * 5 * 7 + 1"
"nd": 1720319
"nd_hex": "0x1a3fff"
"nd_bit": "2^21 - 2^19 + 2^17 + 2^14 - 1"
"r2": 1144390
"r2_hex": "0x117646"
"r2_bit": "2^20 + 2^17 - 2^15 - 2^11 - 2^9 + 2^6 + 2^3 - 2"
"znprimroot": 17
- "n": 2654209
"n_hex": "0x288001"
"n_bit": "2^21 + 2^19 + 2^15 + 1"
"n_fac": "2^15 * 3^4 + 1"
"nd": 2654207
"nd_hex": "0x287fff"
"nd_bit": "2^21 + 2^19 + 2^15 - 1"
"r2": 1203519
"r2_hex": "0x125d3f"
"r2_bit": "2^20 + 2^17 + 2^15 - 2^13 - 2^10 + 2^8 + 2^6 - 1"
"znprimroot": 11
- "n": 3735553
"n_hex": "0x390001"
"n_bit": "2^22 - 2^19 + 2^16 + 1"
"n_fac": "2^16 * 3 * 19 + 1"
"nd": 3735551
"nd_hex": "0x38ffff"
"nd_bit": "2^22 - 2^19 + 2^16 - 1"
"r2": 2630640
"r2_hex": "0x2823f0"
"r2_bit": "2^21 + 2^19 + 2^13 + 2^10 - 2^4"
"znprimroot": 5
- "n": 1769473
"n_hex": "0x1b0001"
"n_bit": "2^21 - 2^18 - 2^16 + 1"
"n_fac": "2^16 * 3^3 + 1"
"nd": 1769471
"nd_hex": "0x1affff"
"nd_bit": "2^21 - 2^18 - 2^16 - 1"
"r2": 543712
"r2_hex": "0x84be0"
"r2_bit": "2^19 + 2^14 + 2^12 - 2^10 - 2^5"
"znprimroot": 5
- "n": 2752513
"n_hex": "0x2a0001"
"n_bit": "2^21 + 2^19 + 2^17 + 1"
"n_fac": "2^17 * 3 * 7 + 1"
"nd": 2752511
"nd_hex": "0x29ffff"
"nd_bit": "2^21 + 2^19 + 2^17 - 1"
"r2": 162282
"r2_hex": "0x279ea"
"r2_bit": "2^17 + 2^15 - 2^11 + 2^9 - 2^5 + 2^3 + 2"
"znprimroot": 20
- "n": 1179649
"n_hex": "0x120001"
"n_bit": "2^20 + 2^17 + 1"
"n_fac": "2^17 * 3^2 + 1"
"nd": 1179647
"nd_hex": "0x11ffff"
"nd_bit": "2^20 + 2^17 - 1"
"r2": 291284
"r2_hex": "0x471d4"
"r2_bit": "2^18 + 2^15 - 2^12 + 2^9 - 2^6 + 2^4 + 2^2"
"znprimroot": 19
- "n": 786433
"n_hex": "0xc0001"
"n_bit": "2^20 - 2^18 + 1"
"n_fac": "2^18 * 3 + 1"
"nd": 786431
"nd_hex": "0xbffff"
"nd_bit": "2^20 - 2^18 - 1"
"r2": 699080
"r2_hex": "0xaaac8"
"r2_bit": "2^20 - 2^18 - 2^16 - 2^14 - 2^12 - 2^10 - 2^8 - 2^6 + 2^3"
"znprimroot": 10
- "r": 23
"primes":
- "n": 8388571
"n_hex": "0x7fffdb"
"n_bit": "2^23 - 2^5 - 2^2 - 1"
"n_fac": "2 * 3 * 5 * 279619 + 1"
"nd": 4987821
"nd_hex": "0x4c1bad"
"nd_bit": "2^22 + 2^20 - 2^18 + 2^13 - 2^10 - 2^6 - 2^4 - 2^2 + 1"
"r2": 1369
"r2_hex": "0x559"
"r2_bit": "2^11 - 2^9 - 2^7 - 2^5 - 2^3 + 1"
"znprimroot": 3
- "n": 8388451
"n_hex": "0x7fff63"
"n_bit": "2^23 - 2^7 - 2^5 + 2^2 - 1"
"n_fac": "2 * 3^2 * 5^2 * 7 * 2663 + 1"
"nd": 427445
"nd_hex": "0x685b5"
"nd_bit": "2^19 - 2^17 + 2^15 + 2^11 - 2^9 - 2^6 - 2^4 + 2^2 + 1"
"r2": 24649
"r2_hex": "0x6049"
"r2_bit": "2^15 - 2^13 + 2^6 + 2^3 + 1"
"znprimroot": 3
- "n": 8388421
"n_hex": "0x7fff45"
"n_bit": "2^23 - 2^8 + 2^6 + 2^2 + 1"
"n_fac": "2^2 * 3 * 5 * 251 * 557 + 1"
"nd": 672883
"nd_hex": "0xa4473"
"nd_bit": "2^19 + 2^17 + 2^14 + 2^10 + 2^7 - 2^4 + 2^2 - 1"
"r2": 34969
"r2_hex": "0x8899"
"r2_bit": "2^15 + 2^11 + 2^7 + 2^5 - 2^3 + 1"
"znprimroot": 2
- "n": 8388109
"n_hex": "0x7ffe0d"
"n_bit": "2^23 - 2^9 + 2^4 - 2^2 + 1"
"n_fac": "2^2 * 3^2 * 41 * 5683 + 1"
"nd": 5799739
"nd_hex": "0x587f3b"
"nd_bit": "2^23 - 2^21 - 2^19 + 2^15 - 2^8 + 2^6 - 2^2 - 1"
"r2": 249001
"r2_hex": "0x3cca9"
"r2_bit": "2^18 - 2^14 + 2^12 - 2^10 + 2^7 + 2^5 + 2^3 + 1"
"znprimroot": 6
- "n": 8387101
"n_hex": "0x7ffa1d"
"n_bit": "2^23 - 2^11 + 2^9 + 2^5 - 2^2 + 1"
"n_fac": "2^2 * 3^2 * 5^2 * 9319 + 1"
"nd": 8349643
"nd_hex": "0x7f67cb"
"nd_bit": "2^23 - 2^15 - 2^13 + 2^11 - 2^6 + 2^4 - 2^2 - 1"
"r2": 2271049
"r2_hex": "0x22a749"
"r2_bit": "2^21 + 2^17 + 2^15 + 2^13 + 2^11 - 2^8 + 2^6 + 2^3 + 1"
"znprimroot": 6
- "n": 8386141
"n_hex": "0x7ff65d"
"n_bit": "2^23 - 2^11 - 2^9 + 2^7 - 2^5 - 2^2 + 1"
"n_fac": "2^2 * 3 * 5 * 7 * 41 * 487 + 1"
"nd": 4682251
"nd_hex": "0x47720b"
"nd_bit": "2^22 + 2^19 - 2^15 - 2^12 + 2^9 + 2^4 - 2^2 - 1"
"r2": 6086089
"r2_hex": "0x5cddc9"
"r2_bit": "2^23 - 2^21 - 2^18 + 2^16 - 2^13 - 2^9 - 2^6 + 2^3 + 1"
"znprimroot": 14
- "n": 8388409
"n_hex": "0x7fff39"
"n_bit": "2^23 - 2^8 + 2^6 - 2^3 + 1"
"n_fac": "2^3 * 3 * 7^3 * 1019 + 1"
"nd": 4636919
"nd_hex": "0x46c0f7"
"nd_bit": "2^22 + 2^19 - 2^16 - 2^14 + 2^8 - 2^3 - 1"
"r2": 39601
"r2_hex": "0x9ab1"
"r2_bit": "2^15 + 2^13 - 2^10 - 2^8 - 2^6 - 2^4 + 1"
"znprimroot": 11
- "n": 8386921
"n_hex": "0x7ff969"
"n_bit": "2^23 - 2^11 + 2^9 - 2^7 - 2^5 + 2^3 + 1"
"n_fac": "2^3 * 3^2 * 5 * 23297 + 1"
"nd": 8378663
"nd_hex": "0x7fd927"
"nd_bit": "2^23 - 2^13 - 2^11 + 2^8 + 2^5 + 2^3 - 1"
"r2": 2845969
"r2_hex": "0x2b6d11"
"r2_bit": "2^22 - 2^20 - 2^18 - 2^15 - 2^12 - 2^10 + 2^8 + 2^4 + 1"
"znprimroot": 17
- "n": 8385721
"n_hex": "0x7ff4b9"
"n_bit": "2^23 - 2^12 + 2^10 + 2^8 - 2^6 - 2^3 + 1"
"n_fac": "2^3 * 3 * 5 * 7 * 67 * 149 + 1"
"nd": 7089783
"nd_hex": "0x6c2e77"
"nd_bit": "2^23 - 2^20 - 2^18 + 2^14 - 2^12 - 2^9 + 2^7 - 2^3 - 1"
"r2": 8334769
"r2_hex": "0x7f2db1"
"r2_bit": "2^23 - 2^16 + 2^14 - 2^12 - 2^9 - 2^6 - 2^4 + 1"
"znprimroot": 19
- "n": 8384041
"n_hex": "0x7fee29"
"n_bit": "2^23 - 2^12 - 2^9 + 2^5 + 2^3 + 1"
"n_fac": "2^3 * 3^3 * 5 * 7 * 1109 + 1"
"nd": 7369191
"nd_hex": "0x7071e7"
"nd_bit": "2^23 - 2^20 + 2^15 - 2^12 + 2^9 - 2^5 + 2^3 - 1"
"r2": 4089407
"r2_hex": "0x3e663f"
"r2_bit": "2^22 - 2^17 + 2^15 - 2^13 + 2^11 - 2^9 + 2^6 - 1"
"znprimroot": 11
- "n": 8388593
"n_hex": "0x7ffff1"
"n_bit": "2^23 - 2^4 + 1"
"n_fac": "2^4 * 524287 + 1"
"nd": 7270127
"nd_hex": "0x6eeeef"
"nd_bit": "2^23 - 2^20 - 2^16 - 2^12 - 2^8 - 2^4 - 1"
"r2": 225
"r2_hex": "0xe1"
"r2_bit": "2^8 - 2^5 + 1"
"znprimroot": 3
- "n": 8387857
"n_hex": "0x7ffd11"
"n_bit": "2^23 - 2^10 + 2^8 + 2^4 + 1"
"n_fac": "2^4 * 3^2 * 31 * 1879 + 1"
"nd": 7171087
"nd_hex": "0x6d6c0f"
"nd_bit": "2^23 - 2^20 - 2^17 - 2^15 - 2^12 - 2^10 + 2^4 - 1"
"r2": 564001
"r2_hex": "0x89b21"
"r2_bit": "2^19 + 2^15 + 2^13 - 2^10 - 2^8 + 2^5 + 1"
"znprimroot": 5
- "n": 8384881
"n_hex": "0x7ff171"
"n_bit": "2^23 - 2^12 + 2^9 - 2^7 - 2^4 + 1"
"n_fac": "2^4 * 3 * 5 * 7^2 * 23 * 31 + 1"
"nd": 4411503
"nd_hex": "0x43506f"
"nd_bit": "2^22 + 2^18 - 2^16 + 2^14 + 2^12 + 2^7 - 2^4 - 1"
"r2": 5505648
"r2_hex": "0x540270"
"r2_bit": "2^22 + 2^20 + 2^18 + 2^9 + 2^7 - 2^4"
"znprimroot": 17
- "n": 8384401
"n_hex": "0x7fef91"
"n_bit": "2^23 - 2^12 - 2^7 + 2^4 + 1"
"n_fac": "2^4 * 3^2 * 5^2 * 17 * 137 + 1"
"nd": 5983887
"nd_hex": "0x5b4e8f"
"nd_bit": "2^23 - 2^21 - 2^18 - 2^16 + 2^14 + 2^12 - 2^9 + 2^7 + 2^4 - 1"
"r2": 930047
"r2_hex": "0xe30ff"
"r2_bit": "2^20 - 2^17 + 2^14 - 2^12 + 2^8 - 1"
"znprimroot": 31
- "n": 8388449
"n_hex": "0x7fff61"
"n_bit": "2^23 - 2^7 - 2^5 + 1"
"n_fac": "2^5 * 262139 + 1"
"nd": 3218271
"nd_hex": "0x311b5f"
"nd_bit": "2^22 - 2^20 + 2^16 + 2^13 - 2^10 - 2^7 - 2^5 - 1"
"r2": 25281
"r2_hex": "0x62c1"
"r2_bit": "2^15 - 2^13 + 2^10 - 2^8 - 2^6 + 1"
"znprimroot": 3
- "n": 8387809
"n_hex": "0x7ffce1"
"n_bit": "2^23 - 2^10 + 2^8 - 2^5 + 1"
"n_fac": "2^5 * 3 * 11 * 13^2 * 47 + 1"
"nd": 6404319
"nd_hex": "0x61b8df"
"nd_bit": "2^23 - 2^21 + 2^17 - 2^14 - 2^11 + 2^8 - 2^5 - 1"
"r2": 638401
"r2_hex": "0x9bdc1"
"r2_bit": "2^19 + 2^17 - 2^14 - 2^9 - 2^6 + 1"
"znprimroot": 7
- "n": 8382529
"n_hex": "0x7fe841"
"n_bit": "2^23 - 2^13 + 2^11 + 2^6 + 1"
"n_fac": "2^6 * 3^5 * 7^2 * 11 + 1"
"nd": 5232703
"nd_hex": "0x4fd83f"
"nd_bit": "2^22 + 2^20 - 2^13 - 2^11 + 2^6 - 1"
"r2": 3424125
"r2_hex": "0x343f7d"
"r2_bit": "2^22 - 2^20 + 2^18 + 2^14 - 2^7 - 2^2 + 1"
"znprimroot": 19
- "n": 8377921
"n_hex": "0x7fd641"
"n_bit": "2^23 - 2^13 - 2^11 - 2^9 + 2^6 + 1"
"n_fac": "2^6 * 3^2 * 5 * 2909 + 1"
"nd": 5555775
"nd_hex": "0x54c63f"
"nd_bit": "2^22 + 2^20 + 2^18 + 2^16 - 2^14 + 2^11 - 2^9 + 2^6 - 1"
"r2": 5298996
"r2_hex": "0x50db34"
"r2_bit": "2^22 + 2^20 + 2^16 - 2^13 - 2^10 - 2^8 + 2^6 - 2^4 + 2^2"
"znprimroot": 21
- "n": 8366401
"n_hex": "0x7fa941"
"n_bit": "2^23 - 2^15 + 2^13 + 2^11 + 2^8 + 2^6 + 1"
"n_fac": "2^6 * 3^2 * 5^2 * 7 * 83 + 1"
"nd": 923967
"nd_hex": "0xe193f"
"nd_bit": "2^20 - 2^17 + 2^13 - 2^11 + 2^8 + 2^6 - 1"
"r2": 7899591
"r2_hex": "0x7889c7"
"r2_bit": "2^23 - 2^19 + 2^15 + 2^11 + 2^9 - 2^6 + 2^3 - 1"
"znprimroot": 29
- "n": 8386177
"n_hex": "0x7ff681"
"n_bit": "2^23 - 2^11 - 2^9 + 2^7 + 1"
"n_fac": "2^7 * 3 * 21839 + 1"
"nd": 4568703
"nd_hex": "0x45b67f"
"nd_bit": "2^22 + 2^19 - 2^17 - 2^14 - 2^11 - 2^9 + 2^7 - 1"
"r2": 5909761
"r2_hex": "0x5a2d01"
"r2_bit": "2^23 - 2^21 - 2^19 + 2^17 + 2^14 - 2^12 - 2^10 + 2^8 + 1"
"znprimroot": 5
- "n": 8384641
"n_hex": "0x7ff081"
"n_bit": "2^23 - 2^12 + 2^7 + 1"
"n_fac": "2^7 * 3 * 5 * 11 * 397 + 1"
"nd": 3125375
"nd_hex": "0x2fb07f"
"nd_bit": "2^22 - 2^20 - 2^14 - 2^12 + 2^7 - 1"
"r2": 7352448
"r2_hex": "0x703080"
"r2_bit": "2^23 - 2^20 + 2^14 - 2^12 + 2^7"
"znprimroot": 7
- "n": 8346241
"n_hex": "0x7f5a81"
"n_bit": "2^23 - 2^15 - 2^13 - 2^11 + 2^9 + 2^7 + 1"
"n_fac": "2^7 * 3^4 * 5 * 7 * 23 + 1"
"nd": 2169471
"nd_hex": "0x211a7f"
"nd_bit": "2^21 + 2^16 + 2^13 - 2^11 + 2^9 + 2^7 - 1"
"r2": 520874
"r2_hex": "0x7f2aa"
"r2_bit": "2^19 - 2^12 + 2^9 + 2^7 + 2^5 + 2^3 + 2"
"znprimroot": 26
- "n": 8386817
"n_hex": "0x7ff901"
"n_bit": "2^23 - 2^11 + 2^8 + 1"
"n_fac": "2^8 * 181^2 + 1"
"nd": 5175551
"nd_hex": "0x4ef8ff"
"nd_bit": "2^22 + 2^20 - 2^16 - 2^11 + 2^8 - 1"
"r2": 3207681
"r2_hex": "0x30f201"
"r2_bit": "2^22 - 2^20 + 2^16 - 2^12 + 2^9 + 1"
"znprimroot": 3
- "n": 8375041
"n_hex": "0x7fcb01"
"n_bit": "2^23 - 2^14 + 2^12 - 2^10 - 2^8 + 1"
"n_fac": "2^8 * 3^2 * 5 * 727 + 1"
"nd": 445183
"nd_hex": "0x6caff"
"nd_bit": "2^19 - 2^16 - 2^14 + 2^12 - 2^10 - 2^8 - 1"
"r2": 8187628
"r2_hex": "0x7ceeec"
"r2_bit": "2^23 - 2^18 + 2^16 - 2^12 - 2^8 - 2^4 - 2^2"
"znprimroot": 19
- "n": 8144641
"n_hex": "0x7c4701"
"n_bit": "2^23 - 2^18 + 2^14 + 2^11 - 2^8 + 1"
"n_fac": "2^8 * 3^2 * 5 * 7 * 101 + 1"
"nd": 4933375
"nd_hex": "0x4b46ff"
"nd_bit": "2^22 + 2^20 - 2^18 - 2^16 + 2^14 + 2^11 - 2^8 - 1"
"r2": 7005302
"r2_hex": "0x6ae476"
"r2_bit": "2^23 - 2^20 - 2^18 - 2^16 - 2^13 + 2^10 + 2^7 - 2^3 - 2"
"znprimroot": 26
- "n": 8372737
"n_hex": "0x7fc201"
"n_bit": "2^23 - 2^14 + 2^9 + 1"
"n_fac": "2^9 * 3^2 * 23 * 79 + 1"
"nd": 8110591
"nd_hex": "0x7bc1ff"
"nd_bit": "2^23 - 2^18 - 2^14 + 2^9 - 1"
"r2": 706531
"r2_hex": "0xac7e3"
"r2_bit": "2^20 - 2^18 - 2^16 - 2^14 + 2^11 - 2^5 + 2^2 - 1"
"znprimroot": 5
- "n": 8117761
"n_hex": "0x7bde01"
"n_bit": "2^23 - 2^18 - 2^13 - 2^9 + 1"
"n_fac": "2^9 * 3 * 5 * 7 * 151 + 1"
"nd": 7855615
"nd_hex": "0x77ddff"
"nd_bit": "2^23 - 2^19 - 2^13 - 2^9 - 1"
"r2": 6009013
"r2_hex": "0x5bb0b5"
"r2_bit": "2^23 - 2^21 - 2^18 - 2^14 - 2^12 + 2^8 - 2^6 - 2^4 + 2^2 + 1"
"znprimroot": 26
- "n": 8383489
"n_hex": "0x7fec01"
"n_bit": "2^23 - 2^12 - 2^10 + 1"
"n_fac": "2^10 * 3 * 2729 + 1"
"nd": 7334911
"nd_hex": "0x6febff"
"nd_bit": "2^23 - 2^20 - 2^12 - 2^10 - 1"
"r2": 1053694
"r2_hex": "0x1013fe"
"r2_bit": "2^20 + 2^12 + 2^10 - 2"
"znprimroot": 17
- "n": 8309761
"n_hex": "0x7ecc01"
"n_bit": "2^23 - 2^16 - 2^14 + 2^12 - 2^10 + 1"
"n_fac": "2^10 * 3 * 5 * 541 + 1"
"nd": 7261183
"nd_hex": "0x6ecbff"
"nd_bit": "2^23 - 2^20 - 2^16 - 2^14 + 2^12 - 2^10 - 1"
"r2": 1148181
"r2_hex": "0x118515"
"r2_bit": "2^20 + 2^17 - 2^15 + 2^10 + 2^8 + 2^4 + 2^2 + 1"
"znprimroot": 13
- "n": 8248321
"n_hex": "0x7ddc01"
"n_bit": "2^23 - 2^17 - 2^13 - 2^10 + 1"
"n_fac": "2^10 * 3^2 * 5 * 179 + 1"
"nd": 7199743
"nd_hex": "0x6ddbff"
"nd_bit": "2^23 - 2^20 - 2^17 - 2^13 - 2^10 - 1"
"r2": 8196784
"r2_hex": "0x7d12b0"
"r2_bit": "2^23 - 2^18 + 2^16 + 2^12 + 2^10 - 2^8 - 2^6 - 2^4"
"znprimroot": 34
- "n": 7848961
"n_hex": "0x77c401"
"n_bit": "2^23 - 2^19 - 2^14 + 2^10 + 1"
"n_fac": "2^10 * 3 * 5 * 7 * 73 + 1"
"nd": 6800383
"nd_hex": "0x67c3ff"
"nd_bit": "2^23 - 2^21 + 2^19 - 2^14 + 2^10 - 1"
"r2": 6733587
"r2_hex": "0x66bf13"
"r2_bit": "2^23 - 2^21 + 2^19 - 2^16 - 2^14 - 2^8 + 2^4 + 2^2 - 1"
"znprimroot": 17
- "n": 7925761
"n_hex": "0x78f001"
"n_bit": "2^23 - 2^19 + 2^16 - 2^12 + 1"
"n_fac": "2^12 * 3^2 * 5 * 43 + 1"
"nd": 7925759
"nd_hex": "0x78efff"
"nd_bit": "2^23 - 2^19 + 2^16 - 2^12 - 1"
"r2": 1951340
"r2_hex": "0x1dc66c"
"r2_bit": "2^21 - 2^17 - 2^14 + 2^11 - 2^9 + 2^7 - 2^4 - 2^2"
"znprimroot": 11
- "n": 8380417
"n_hex": "0x7fe001"
"n_bit": "2^23 - 2^13 + 1"
"n_fac": "2^13 * 3 * 11 * 31 + 1"
"nd": 8380415
"nd_hex": "0x7fdfff"
"nd_bit": "2^23 - 2^13 - 1"
"r2": 49145
"r2_hex": "0xbff9"
"r2_bit": "2^16 - 2^14 - 2^3 + 1"
"znprimroot": 10
- "n": 7741441
"n_hex": "0x762001"
"n_bit": "2^23 - 2^19 - 2^17 + 2^13 + 1"
"n_fac": "2^13 * 3^3 * 5 * 7 + 1"
"nd": 7741439
"nd_hex": "0x761fff"
"nd_bit": "2^23 - 2^19 - 2^17 + 2^13 - 1"
"r2": 5426348
"r2_hex": "0x52ccac"
"r2_bit": "2^22 + 2^20 + 2^18 - 2^16 - 2^14 + 2^12 - 2^10 + 2^8 - 2^6 - 2^4 - 2^2"
"znprimroot": 26
- "n": 8273921
"n_hex": "0x7e4001"
"n_bit": "2^23 - 2^17 + 2^14 + 1"
"n_fac": "2^14 * 5 * 101 + 1"
"nd": 8273919
"nd_hex": "0x7e3fff"
"nd_bit": "2^23 - 2^17 + 2^14 - 1"
"r2": 5847500
"r2_hex": "0x5939cc"
"r2_bit": "2^23 - 2^21 - 2^19 + 2^16 + 2^14 - 2^11 + 2^9 - 2^6 + 2^4 - 2^2"
"znprimroot": 6
- "n": 6635521
"n_hex": "0x654001"
"n_bit": "2^23 - 2^21 + 2^18 + 2^16 + 2^14 + 1"
"n_fac": "2^14 * 3^4 * 5 + 1"
"nd": 6635519
"nd_hex": "0x653fff"
"nd_bit": "2^23 - 2^21 + 2^18 + 2^16 + 2^14 - 1"
"r2": 6123209
"r2_hex": "0x5d6ec9"
"r2_bit": "2^23 - 2^21 - 2^17 - 2^15 - 2^12 - 2^8 - 2^6 + 2^3 + 1"
"znprimroot": 19
- "n": 1720321
"n_hex": "0x1a4001"
"n_bit": "2^21 - 2^19 + 2^17 + 2^14 + 1"
"n_fac": "2^14 * 3 * 5 * 7 + 1"
"nd": 1720319
"nd_hex": "0x1a3fff"
"nd_bit": "2^21 - 2^19 + 2^17 + 2^14 - 1"
"r2": 1136918
"r2_hex": "0x115916"
"r2_bit": "2^20 + 2^17 - 2^15 - 2^13 - 2^11 + 2^8 + 2^5 - 2^3 - 2"
"znprimroot": 17
- "n": 4423681
"n_hex": "0x438001"
"n_bit": "2^22 + 2^18 - 2^15 + 1"
"n_fac": "2^15 * 3^3 * 5 + 1"
"nd": 4423679
"nd_hex": "0x437fff"
"nd_bit": "2^22 + 2^18 - 2^15 - 1"
"r2": 3032622
"r2_hex": "0x2e462e"
"r2_bit": "2^22 - 2^20 - 2^17 + 2^14 + 2^11 - 2^9 + 2^6 - 2^4 - 2"
"znprimroot": 14
- "n": 8257537
"n_hex": "0x7e0001"
"n_bit": "2^23 - 2^17 + 1"
"n_fac": "2^17 * 3^2 * 7 + 1"
"nd": 8257535
"nd_hex": "0x7dffff"
"nd_bit": "2^23 - 2^17 - 1"
"r2": 3930081
"r2_hex": "0x3bf7e1"
"r2_bit": "2^22 - 2^18 - 2^11 - 2^5 + 1"
"znprimroot": 5
- "n": 786433
"n_hex": "0xc0001"
"n_bit": "2^20 - 2^18 + 1"
"n_fac": "2^18 * 3 + 1"
"nd": 786431
"nd_hex": "0xbffff"
"nd_bit": "2^20 - 2^18 - 1"
"r2": 437021
"r2_hex": "0x6ab1d"
"r2_bit": "2^19 - 2^16 - 2^14 - 2^12 - 2^10 - 2^8 + 2^5 - 2^2 + 1"
"znprimroot": 10
- "n": 7340033
"n_hex": "0x700001"
"n_bit": "2^23 - 2^20 + 1"
"n_fac": "2^20 * 7 + 1"
"nd": 7340031
"nd_hex": "0x6fffff"
"nd_bit": "2^23 - 2^20 - 1"
"r2": 1947357
"r2_hex": "0x1db6dd"
"r2_bit": "2^21 - 2^17 - 2^14 - 2^11 - 2^8 - 2^5 - 2^2 + 1"
"znprimroot": 3
- "r": 24
"primes":
- "n": 16777213
"n_hex": "0xfffffd"
"n_bit": "2^24 - 2^2 + 1"
"n_fac": "2^2 * 3 * 23 * 89 * 683 + 1"
"nd": 11184811
"nd_hex": "0xaaaaab"
"nd_bit": "2^24 - 2^22 - 2^20 - 2^18 - 2^16 - 2^14 - 2^12 - 2^10 - 2^8 - 2^6 - 2^4 - 2^2 - 1"
"r2": 9
"r2_hex": "0x9"
"r2_bit": "2^3 + 1"
"znprimroot": 5
- "n": 16777141
"n_hex": "0xffffb5"
"n_bit": "2^24 - 2^6 - 2^4 + 2^2 + 1"
"n_fac": "2^2 * 3 * 5 * 279619 + 1"
"nd": 3131747
"nd_hex": "0x2fc963"
"nd_bit": "2^22 - 2^20 - 2^14 + 2^11 + 2^9 - 2^7 - 2^5 + 2^2 - 1"
"r2": 5625
"r2_hex": "0x15f9"
"r2_bit": "2^13 - 2^11 - 2^9 - 2^3 + 1"
"znprimroot": 6
- "n": 16776901
"n_hex": "0xfffec5"
"n_bit": "2^24 - 2^8 - 2^6 + 2^2 + 1"
"n_fac": "2^2 * 3^2 * 5^2 * 7 * 2663 + 1"
"nd": 16723955
"nd_hex": "0xff2ff3"
"nd_bit": "2^24 - 2^16 + 2^14 - 2^12 - 2^4 + 2^2 - 1"
"r2": 99225
"r2_hex": "0x18399"
"r2_bit": "2^17 - 2^15 + 2^10 - 2^7 + 2^5 - 2^3 + 1"
"znprimroot": 6
- "n": 16770601
"n_hex": "0xffe629"
"n_bit": "2^24 - 2^13 + 2^11 - 2^9 + 2^5 + 2^3 + 1"
"n_fac": "2^3 * 3^2 * 5^2 * 7 * 11^3 + 1"
"nd": 3992039
"nd_hex": "0x3ce9e7"
"nd_bit": "2^22 - 2^18 + 2^16 - 2^13 + 2^11 + 2^9 - 2^5 + 2^3 - 1"
"r2": 10217023
"r2_hex": "0x9be63f"
"r2_bit": "2^23 + 2^21 - 2^18 - 2^13 + 2^11 - 2^9 + 2^6 - 1"
"znprimroot": 58
- "n": 16775281
"n_hex": "0xfff871"
"n_bit": "2^24 - 2^11 + 2^7 - 2^4 + 1"
"n_fac": "2^4 * 3^2 * 5 * 23 * 1013 + 1"
"nd": 5453679
"nd_hex": "0x53376f"
"nd_bit": "2^22 + 2^20 + 2^18 - 2^16 + 2^14 - 2^11 - 2^7 - 2^4 - 1"
"r2": 3744225
"r2_hex": "0x3921e1"
"r2_bit": "2^22 - 2^19 + 2^16 + 2^13 + 2^9 - 2^5 + 1"
"znprimroot": 11
- "n": 16776481
"n_hex": "0xfffd21"
"n_bit": "2^24 - 2^10 + 2^8 + 2^5 + 1"
"n_fac": "2^5 * 3 * 5 * 7 * 4993 + 1"
"nd": 2373919
"nd_hex": "0x24391f"
"nd_bit": "2^21 + 2^18 + 2^14 - 2^11 + 2^8 + 2^5 - 1"
"r2": 540225
"r2_hex": "0x83e41"
"r2_bit": "2^19 + 2^14 - 2^9 + 2^6 + 1"
"znprimroot": 19
- "n": 16771681
"n_hex": "0xffea61"
"n_bit": "2^24 - 2^13 + 2^11 + 2^9 + 2^7 - 2^5 + 1"
"n_fac": "2^5 * 3^2 * 5 * 19 * 613 + 1"
"nd": 6407775
"nd_hex": "0x61c65f"
"nd_bit": "2^23 - 2^21 + 2^17 - 2^14 + 2^11 - 2^9 + 2^7 - 2^5 - 1"
"r2": 13864544
"r2_hex": "0xd38e60"
"r2_bit": "2^24 - 2^22 + 2^20 + 2^18 - 2^15 + 2^12 - 2^9 + 2^7 - 2^5"
"znprimroot": 7
- "n": 16763041
"n_hex": "0xffc8a1"
"n_bit": "2^24 - 2^14 + 2^11 + 2^7 + 2^5 + 1"
"n_fac": "2^5 * 3^2 * 5 * 7 * 1663 + 1"
"nd": 9692319
"nd_hex": "0x93e49f"
"nd_bit": "2^23 + 2^20 + 2^18 - 2^13 + 2^10 + 2^7 + 2^5 - 1"
"r2": 16537174
"r2_hex": "0xfc5656"
"r2_bit": "2^24 - 2^18 + 2^15 - 2^13 - 2^11 - 2^9 + 2^7 - 2^5 - 2^3 - 2"
"znprimroot": 23
- "n": 16777153
"n_hex": "0xffffc1"
"n_bit": "2^24 - 2^6 + 1"
"n_fac": "2^6 * 3^3 * 7 * 19 * 73 + 1"
"nd": 16510911
"nd_hex": "0xfbefbf"
"nd_bit": "2^24 - 2^18 - 2^12 - 2^6 - 1"
"r2": 3969
"r2_hex": "0xf81"
"r2_bit": "2^12 - 2^7 + 1"
"znprimroot": 5
- "n": 16764481
"n_hex": "0xffce41"
"n_bit": "2^24 - 2^14 + 2^12 - 2^9 + 2^6 + 1"
"n_fac": "2^6 * 3^2 * 5 * 5821 + 1"
"nd": 16301631
"nd_hex": "0xf8be3f"
"nd_bit": "2^24 - 2^19 + 2^16 - 2^14 - 2^9 + 2^6 - 1"
"r2": 11299896
"r2_hex": "0xac6c38"
"r2_bit": "2^24 - 2^22 - 2^20 - 2^18 + 2^15 - 2^12 - 2^10 + 2^6 - 2^3"
"znprimroot": 13
- "n": 16672321
"n_hex": "0xfe6641"
"n_bit": "2^24 - 2^17 + 2^15 - 2^13 + 2^11 - 2^9 + 2^6 + 1"
"n_fac": "2^6 * 3^2 * 5 * 7 * 827 + 1"
"nd": 4937279
"nd_hex": "0x4b563f"
"nd_bit": "2^22 + 2^20 - 2^18 - 2^15 - 2^13 - 2^11 - 2^9 + 2^6 - 1"
"r2": 15901486
"r2_hex": "0xf2a32e"
"r2_bit": "2^24 - 2^20 + 2^17 + 2^15 + 2^13 + 2^10 - 2^8 + 2^6 - 2^4 - 2"
"znprimroot": 22
- "n": 16774273
"n_hex": "0xfff481"
"n_bit": "2^24 - 2^12 + 2^10 + 2^7 + 1"
"n_fac": "2^7 * 3^2 * 14561 + 1"
"nd": 10204287
"nd_hex": "0x9bb47f"
"nd_bit": "2^23 + 2^21 - 2^18 - 2^14 - 2^12 + 2^10 + 2^7 - 1"
"r2": 8661249
"r2_hex": "0x842901"
"r2_bit": "2^23 + 2^18 + 2^13 + 2^11 + 2^8 + 1"
"znprimroot": 10
- "n": 16759681
"n_hex": "0xffbb81"
"n_bit": "2^24 - 2^14 - 2^10 - 2^7 + 1"
"n_fac": "2^7 * 3 * 5 * 7 * 29 * 43 + 1"
"nd": 9141119
"nd_hex": "0x8b7b7f"
"nd_bit": "2^23 + 2^20 - 2^18 - 2^15 - 2^10 - 2^7 - 1"
"r2": 5801967
"r2_hex": "0x5887ef"
"r2_bit": "2^23 - 2^21 - 2^19 + 2^15 + 2^11 - 2^4 - 1"
"znprimroot": 37
- "n": 16776961
"n_hex": "0xffff01"
"n_bit": "2^24 - 2^8 + 1"
"n_fac": "2^8 * 3 * 5 * 17 * 257 + 1"
"nd": 16711423
"nd_hex": "0xfefeff"
"nd_bit": "2^24 - 2^16 - 2^8 - 1"
"r2": 65025
"r2_hex": "0xfe01"
"r2_bit": "2^16 - 2^9 + 1"
"znprimroot": 7
- "n": 16768513
"n_hex": "0xffde01"
"n_bit": "2^24 - 2^13 - 2^9 + 1"
"n_fac": "2^9 * 3^3 * 1213 + 1"
"nd": 8117759
"nd_hex": "0x7bddff"
"nd_bit": "2^23 - 2^18 - 2^13 - 2^9 - 1"
"r2": 8668157
"r2_hex": "0x8443fd"
"r2_bit": "2^23 + 2^18 + 2^14 + 2^10 - 2^2 + 1"
"znprimroot": 7
- "n": 16611841
"n_hex": "0xfd7a01"
"n_bit": "2^24 - 2^17 - 2^15 - 2^11 + 2^9 + 1"
"n_fac": "2^9 * 3^2 * 5 * 7 * 103 + 1"
"nd": 14252543
"nd_hex": "0xd979ff"
"nd_bit": "2^24 - 2^21 - 2^19 + 2^17 - 2^15 - 2^11 + 2^9 - 1"
"r2": 5800339
"r2_hex": "0x588193"
"r2_bit": "2^23 - 2^21 - 2^19 + 2^15 + 2^9 - 2^7 + 2^4 + 2^2 - 1"
"znprimroot": 23
- "n": 16770049
"n_hex": "0xffe401"
"n_bit": "2^24 - 2^13 + 2^10 + 1"
"n_fac": "2^10 * 3 * 53 * 103 + 1"
"nd": 15721471
"nd_hex": "0xefe3ff"
"nd_bit": "2^24 - 2^20 - 2^13 + 2^10 - 1"
"r2": 1055742
"r2_hex": "0x101bfe"
"r2_bit": "2^20 + 2^13 - 2^10 - 2"
"znprimroot": 11
- "n": 16727041
"n_hex": "0xff3c01"
"n_bit": "2^24 - 2^16 + 2^14 - 2^10 + 1"
"n_fac": "2^10 * 3^3 * 5 * 11^2 + 1"
"nd": 15678463
"nd_hex": "0xef3bff"
"nd_bit": "2^24 - 2^20 - 2^16 + 2^14 - 2^10 - 1"
"r2": 8474475
"r2_hex": "0x814f6b"
"r2_bit": "2^23 + 2^16 + 2^14 + 2^12 - 2^7 - 2^4 - 2^2 - 1"
"znprimroot": 13
- "n": 16665601
"n_hex": "0xfe4c01"
"n_bit": "2^24 - 2^17 + 2^14 + 2^12 - 2^10 + 1"
"n_fac": "2^10 * 3 * 5^2 * 7 * 31 + 1"
"nd": 7228415
"nd_hex": "0x6e4bff"
"nd_bit": "2^23 - 2^20 - 2^17 + 2^14 + 2^12 - 2^10 - 1"
"r2": 8704278
"r2_hex": "0x84d116"
"r2_bit": "2^23 + 2^18 + 2^16 - 2^14 + 2^12 + 2^8 + 2^5 - 2^3 - 2"
"znprimroot": 22
- "n": 16128001
"n_hex": "0xf61801"
"n_bit": "2^24 - 2^19 - 2^17 + 2^13 - 2^11 + 1"
"n_fac": "2^11 * 3^2 * 5^3 * 7 + 1"
"nd": 11933695
"nd_hex": "0xb617ff"
"nd_bit": "2^24 - 2^22 - 2^19 - 2^17 + 2^13 - 2^11 - 1"
"r2": 7066092
"r2_hex": "0x6bd1ec"
"r2_bit": "2^23 - 2^20 - 2^18 - 2^14 + 2^12 + 2^9 - 2^4 - 2^2"
"znprimroot": 13
- "n": 16650241
"n_hex": "0xfe1001"
"n_bit": "2^24 - 2^17 + 2^12 + 1"
"n_fac": "2^12 * 3 * 5 * 271 + 1"
"nd": 16650239
"nd_hex": "0xfe0fff"
"nd_bit": "2^24 - 2^17 + 2^12 - 1"
"r2": 5217337
"r2_hex": "0x4f9c39"
"r2_bit": "2^22 + 2^20 - 2^15 + 2^13 - 2^10 + 2^6 - 2^3 + 1"
"znprimroot": 14
- "n": 15052801
"n_hex": "0xe5b001"
"n_bit": "2^24 - 2^21 + 2^19 - 2^17 - 2^14 - 2^12 + 1"
"n_fac": "2^12 * 3 * 5^2 * 7^2 + 1"
"nd": 15052799
"nd_hex": "0xe5afff"
"nd_bit": "2^24 - 2^21 + 2^19 - 2^17 - 2^14 - 2^12 - 1"
"r2": 1518680
"r2_hex": "0x172c58"
"r2_bit": "2^21 - 2^19 - 2^16 + 2^14 - 2^12 - 2^10 + 2^7 - 2^5 - 2^3"
"znprimroot": 29
- "n": 16736257
"n_hex": "0xff6001"
"n_bit": "2^24 - 2^15 - 2^13 + 1"
"n_fac": "2^13 * 3^2 * 227 + 1"
"nd": 16736255
"nd_hex": "0xff5fff"
"nd_bit": "2^24 - 2^15 - 2^13 - 1"
"r2": 4013981
"r2_hex": "0x3d3f9d"
"r2_bit": "2^22 - 2^18 + 2^16 + 2^14 - 2^7 + 2^5 - 2^2 + 1"
"znprimroot": 5
- "n": 16588801
"n_hex": "0xfd2001"
"n_bit": "2^24 - 2^18 + 2^16 + 2^13 + 1"
"n_fac": "2^13 * 3^4 * 5^2 + 1"
"nd": 16588799
"nd_hex": "0xfd1fff"
"nd_bit": "2^24 - 2^18 + 2^16 + 2^13 - 1"
"r2": 178085
"r2_hex": "0x2b7a5"
"r2_bit": "2^18 - 2^16 - 2^14 - 2^11 - 2^7 + 2^5 + 2^2 + 1"
"znprimroot": 19
- "n": 12902401
"n_hex": "0xc4e001"
"n_bit": "2^24 - 2^22 + 2^18 + 2^16 - 2^13 + 1"
"n_fac": "2^13 * 3^2 * 5^2 * 7 + 1"
"nd": 12902399
"nd_hex": "0xc4dfff"
"nd_bit": "2^24 - 2^22 + 2^18 + 2^16 - 2^13 - 1"
"r2": 2702951
"r2_hex": "0x293e67"
"r2_bit": "2^21 + 2^19 + 2^16 + 2^14 - 2^9 + 2^7 - 2^5 + 2^3 - 1"
"znprimroot": 11
- "n": 16760833
"n_hex": "0xffc001"
"n_bit": "2^24 - 2^14 + 1"
"n_fac": "2^14 * 3 * 11 * 31 + 1"
"nd": 16760831
"nd_hex": "0xffbfff"
"nd_bit": "2^24 - 2^14 - 1"
"r2": 229361
"r2_hex": "0x37ff1"
"r2_bit": "2^18 - 2^15 - 2^4 + 1"
"znprimroot": 7
- "n": 16465921
"n_hex": "0xfb4001"
"n_bit": "2^24 - 2^18 - 2^16 + 2^14 + 1"
"n_fac": "2^14 * 3 * 5 * 67 + 1"
"nd": 16465919
"nd_hex": "0xfb3fff"
"nd_bit": "2^24 - 2^18 - 2^16 + 2^14 - 1"
"r2": 2631940
"r2_hex": "0x282904"
"r2_bit": "2^21 + 2^19 + 2^13 + 2^11 + 2^8 + 2^2"
"znprimroot": 11
- "n": 12042241
"n_hex": "0xb7c001"
"n_bit": "2^24 - 2^22 - 2^19 - 2^14 + 1"
"n_fac": "2^14 * 3 * 5 * 7^2 + 1"
"nd": 12042239
"nd_hex": "0xb7bfff"
"nd_bit": "2^24 - 2^22 - 2^19 - 2^14 - 1"
"r2": 8886127
"r2_hex": "0x87976f"
"r2_bit": "2^23 + 2^19 - 2^15 + 2^13 - 2^11 - 2^7 - 2^4 - 1"
"znprimroot": 19
- "n": 11059201
"n_hex": "0xa8c001"
"n_bit": "2^23 + 2^21 + 2^19 + 2^16 - 2^14 + 1"
"n_fac": "2^14 * 3^3 * 5^2 + 1"
"nd": 11059199
"nd_hex": "0xa8bfff"
"nd_bit": "2^23 + 2^21 + 2^19 + 2^16 - 2^14 - 1"
"r2": 8283001
"r2_hex": "0x7e6379"
"r2_bit": "2^23 - 2^17 + 2^15 - 2^13 + 2^10 - 2^7 - 2^3 + 1"
"znprimroot": 7
- "n": 11304961
"n_hex": "0xac8001"
"n_bit": "2^24 - 2^22 - 2^20 - 2^18 + 2^15 + 1"
"n_fac": "2^15 * 3 * 5 * 23 + 1"
"nd": 11304959
"nd_hex": "0xac7fff"
"nd_bit": "2^24 - 2^22 - 2^20 - 2^18 + 2^15 - 1"
"r2": 10556618
"r2_hex": "0xa114ca"
"r2_bit": "2^23 + 2^21 + 2^16 + 2^12 + 2^10 + 2^8 - 2^6 + 2^3 + 2"
"znprimroot": 7
- "n": 4423681
"n_hex": "0x438001"
"n_bit": "2^22 + 2^18 - 2^15 + 1"
"n_fac": "2^15 * 3^3 * 5 + 1"
"nd": 4423679
"nd_hex": "0x437fff"
"nd_bit": "2^22 + 2^18 - 2^15 - 1"
"r2": 3283126
"r2_hex": "0x3218b6"
"r2_bit": "2^22 - 2^20 + 2^17 + 2^13 - 2^11 + 2^8 - 2^6 - 2^3 - 2"
"znprimroot": 14
- "n": 16580609
"n_hex": "0xfd0001"
"n_bit": "2^24 - 2^18 + 2^16 + 1"
"n_fac": "2^16 * 11 * 23 + 1"
"nd": 16580607
"nd_hex": "0xfcffff"
"nd_bit": "2^24 - 2^18 + 2^16 - 1"
"r2": 4912870
"r2_hex": "0x4af6e6"
"r2_bit": "2^22 + 2^20 - 2^18 - 2^16 - 2^11 - 2^8 - 2^5 + 2^3 - 2"
"znprimroot": 3
- "n": 16515073
"n_hex": "0xfc0001"
"n_bit": "2^24 - 2^18 + 1"
"n_fac": "2^18 * 3^2 * 7 + 1"
"nd": 16515071
"nd_hex": "0xfbffff"
"nd_bit": "2^24 - 2^18 - 1"
"r2": 16248769
"r2_hex": "0xf7efc1"
"r2_bit": "2^24 - 2^19 - 2^12 - 2^6 + 1"
"znprimroot": 5
- "n": 14155777
"n_hex": "0xd80001"
"n_bit": "2^24 - 2^21 - 2^19 + 1"
"n_fac": "2^19 * 3^3 + 1"
"nd": 14155775
"nd_hex": "0xd7ffff"
"nd_bit": "2^24 - 2^21 - 2^19 - 1"
"r2": 6330294
"r2_hex": "0x6097b6"
"r2_bit": "2^23 - 2^21 + 2^15 + 2^13 - 2^11 - 2^6 - 2^3 - 2"
"znprimroot": 7
- "n": 13631489
"n_hex": "0xd00001"
"n_bit": "2^24 - 2^22 + 2^20 + 1"
"n_fac": "2^20 * 13 + 1"
"nd": 13631487
"nd_hex": "0xcfffff"
"nd_bit": "2^24 - 2^22 + 2^20 - 1"
"r2": 9759825
"r2_hex": "0x94ec51"
"r2_bit": "2^23 + 2^20 + 2^18 + 2^16 - 2^12 - 2^10 + 2^6 + 2^4 + 1"
"znprimroot": 15
- "r": 25
"primes":
- "n": 33554383
"n_hex": "0x1ffffcf"
"n_bit": "2^25 - 2^6 + 2^4 - 1"
"n_fac": "2 * 3 * 1367 * 4091 + 1"
"nd": 2054353
"nd_hex": "0x1f58d1"
"nd_bit": "2^21 - 2^15 - 2^13 - 2^11 + 2^8 - 2^6 + 2^4 + 1"
"r2": 2401
"r2_hex": "0x961"
"r2_bit": "2^11 + 2^9 - 2^7 - 2^5 + 1"
"znprimroot": 3
- "n": 33554371
"n_hex": "0x1ffffc3"
"n_bit": "2^25 - 2^6 + 2^2 - 1"
"n_fac": "2 * 3 * 5 * 1118479 + 1"
"nd": 17602325
"nd_hex": "0x10c9715"
"nd_bit": "2^24 + 2^20 - 2^18 + 2^15 + 2^13 - 2^11 - 2^8 + 2^4 + 2^2 + 1"
"r2": 3721
"r2_hex": "0xe89"
"r2_bit": "2^12 - 2^9 + 2^7 + 2^3 + 1"
"znprimroot": 2
- "n": 33553171
"n_hex": "0x1fffb13"
"n_bit": "2^25 - 2^10 - 2^8 + 2^4 + 2^2 - 1"
"n_fac": "2 * 3^3 * 5 * 7 * 41 * 433 + 1"
"nd": 21952741
"nd_hex": "0x14ef8e5"
"nd_bit": "2^24 + 2^22 + 2^20 - 2^16 - 2^11 + 2^8 - 2^5 + 2^2 + 1"
"r2": 1590121
"r2_hex": "0x184369"
"r2_bit": "2^21 - 2^19 + 2^14 + 2^10 - 2^7 - 2^5 + 2^3 + 1"
"znprimroot": 7
- "n": 33554341
"n_hex": "0x1ffffa5"
"n_bit": "2^25 - 2^7 + 2^5 + 2^2 + 1"
"n_fac": "2^2 * 3^2 * 5 * 131 * 1423 + 1"
"nd": 16592851
"nd_hex": "0xfd2fd3"
"nd_bit": "2^24 - 2^18 + 2^16 + 2^14 - 2^12 - 2^6 + 2^4 + 2^2 - 1"
"r2": 8281
"r2_hex": "0x2059"
"r2_bit": "2^13 + 2^7 - 2^5 - 2^3 + 1"
"znprimroot": 6
- "n": 33554221
"n_hex": "0x1ffff2d"
"n_bit": "2^25 - 2^8 + 2^6 - 2^4 - 2^2 + 1"
"n_fac": "2^2 * 3 * 5 * 7^2 * 101 * 113 + 1"
"nd": 6838107
"nd_hex": "0x68575b"
"nd_bit": "2^23 - 2^21 + 2^19 + 2^15 - 2^13 - 2^11 - 2^7 - 2^5 - 2^2 - 1"
"r2": 44521
"r2_hex": "0xade9"
"r2_bit": "2^16 - 2^14 - 2^12 - 2^9 - 2^5 + 2^3 + 1"
"znprimroot": 2
- "n": 33550021
"n_hex": "0x1ffeec5"
"n_bit": "2^25 - 2^12 - 2^8 - 2^6 + 2^2 + 1"
"n_fac": "2^2 * 3^2 * 5 * 7 * 26627 + 1"
"nd": 32808947
"nd_hex": "0x1f49ff3"
"nd_bit": "2^25 - 2^20 + 2^18 + 2^15 + 2^13 - 2^4 + 2^2 - 1"
"r2": 19456921
"r2_hex": "0x128e399"
"r2_bit": "2^24 + 2^21 + 2^19 + 2^16 - 2^13 + 2^10 - 2^7 + 2^5 - 2^3 + 1"
"znprimroot": 2
- "n": 33554393
"n_hex": "0x1ffffd9"
"n_bit": "2^25 - 2^5 - 2^3 + 1"
"n_fac": "2^3 * 29 * 61 * 2371 + 1"
"nd": 16347031
"nd_hex": "0xf96f97"
"nd_bit": "2^24 - 2^19 + 2^17 - 2^15 - 2^12 - 2^7 + 2^5 - 2^3 - 1"
"r2": 1521
"r2_hex": "0x5f1"
"r2_bit": "2^11 - 2^9 - 2^4 + 1"
"znprimroot": 3
- "n": 33554137
"n_hex": "0x1fffed9"
"n_bit": "2^25 - 2^8 - 2^5 - 2^3 + 1"
"n_fac": "2^3 * 3 * 7 * 11 * 67 * 271 + 1"
"nd": 28663447
"nd_hex": "0x1b55e97"
"nd_bit": "2^25 - 2^22 - 2^19 - 2^17 - 2^15 - 2^13 - 2^9 + 2^7 + 2^5 - 2^3 - 1"
"r2": 87025
"r2_hex": "0x153f1"
"r2_bit": "2^16 + 2^14 + 2^12 + 2^10 - 2^4 + 1"
"znprimroot": 15
- "n": 33553657
"n_hex": "0x1fffcf9"
"n_bit": "2^25 - 2^10 + 2^8 - 2^3 + 1"
"n_fac": "2^3 * 3^3 * 31 * 5011 + 1"
"nd": 24115895
"nd_hex": "0x16ffab7"
"nd_bit": "2^25 - 2^23 - 2^20 - 2^10 - 2^8 - 2^6 - 2^3 - 1"
"r2": 600625
"r2_hex": "0x92a31"
"r2_bit": "2^19 + 2^16 + 2^13 + 2^11 + 2^9 + 2^6 - 2^4 + 1"
"znprimroot": 10
- "n": 33550441
"n_hex": "0x1fff069"
"n_bit": "2^25 - 2^12 + 2^7 - 2^5 + 2^3 + 1"
"n_fac": "2^3 * 3 * 5 * 7 * 11 * 3631 + 1"
"nd": 27484199
"nd_hex": "0x1a36027"
"nd_bit": "2^25 - 2^23 + 2^21 + 2^18 - 2^15 - 2^13 + 2^5 + 2^3 - 1"
"r2": 15928081
"r2_hex": "0xf30b11"
"r2_bit": "2^24 - 2^20 + 2^18 - 2^16 + 2^12 - 2^10 - 2^8 + 2^4 + 1"
"znprimroot": 19
- "n": 33553969
"n_hex": "0x1fffe31"
"n_bit": "2^25 - 2^9 + 2^6 - 2^4 + 1"
"n_fac": "2^4 * 3 * 7 * 37 * 2699 + 1"
"nd": 23553327
"nd_hex": "0x167652f"
"nd_bit": "2^25 - 2^23 - 2^21 + 2^19 - 2^15 - 2^13 + 2^10 + 2^8 + 2^6 - 2^4 - 1"
"r2": 214369
"r2_hex": "0x34561"
"r2_bit": "2^18 - 2^16 + 2^14 + 2^11 - 2^9 - 2^7 - 2^5 + 1"
"znprimroot": 29
- "n": 33552721
"n_hex": "0x1fff951"
"n_bit": "2^25 - 2^11 + 2^8 + 2^6 + 2^4 + 1"
"n_fac": "2^4 * 3^2 * 5 * 46601 + 1"
"nd": 6099023
"nd_hex": "0x5d104f"
"nd_bit": "2^23 - 2^21 - 2^18 + 2^16 + 2^12 + 2^6 + 2^4 - 1"
"r2": 2927521
"r2_hex": "0x2caba1"
"r2_bit": "2^22 - 2^20 - 2^18 + 2^16 - 2^14 - 2^12 - 2^10 - 2^7 + 2^5 + 1"
"znprimroot": 7
- "n": 33541201
"n_hex": "0x1ffcc51"
"n_bit": "2^25 - 2^14 + 2^12 - 2^10 + 2^6 + 2^4 + 1"
"n_fac": "2^4 * 3^2 * 5^2 * 7 * 11^3 + 1"
"nd": 3867471
"nd_hex": "0x3b034f"
"nd_bit": "2^22 - 2^18 - 2^16 + 2^10 - 2^8 + 2^6 + 2^4 - 1"
"r2": 7353356
"r2_hex": "0x70340c"
"r2_bit": "2^23 - 2^20 + 2^14 - 2^12 + 2^10 + 2^4 - 2^2"
"znprimroot": 13
- "n": 33554273
"n_hex": "0x1ffff61"
"n_bit": "2^25 - 2^7 - 2^5 + 1"
"n_fac": "2^5 * 1048571 + 1"
"nd": 11606879
"nd_hex": "0xb11b5f"
"nd_bit": "2^24 - 2^22 - 2^20 + 2^16 + 2^13 - 2^10 - 2^7 - 2^5 - 1"
"r2": 25281
"r2_hex": "0x62c1"
"r2_bit": "2^15 - 2^13 + 2^10 - 2^8 - 2^6 + 1"
"znprimroot": 3
- "n": 33553633
"n_hex": "0x1fffce1"
"n_bit": "2^25 - 2^10 + 2^8 - 2^5 + 1"
"n_fac": "2^5 * 3 * 7^3 * 1019 + 1"
"nd": 23181535
"nd_hex": "0x161b8df"
"nd_bit": "2^25 - 2^23 - 2^21 + 2^17 - 2^14 - 2^11 + 2^8 - 2^5 - 1"
"r2": 638401
"r2_hex": "0x9bdc1"
"r2_bit": "2^19 + 2^17 - 2^14 - 2^9 - 2^6 + 1"
"znprimroot": 15
- "n": 33552481
"n_hex": "0x1fff861"
"n_bit": "2^25 - 2^11 + 2^7 - 2^5 + 1"
"n_fac": "2^5 * 3 * 5 * 13 * 19 * 283 + 1"
"nd": 23286879
"nd_hex": "0x163545f"
"nd_bit": "2^25 - 2^23 - 2^21 + 2^18 - 2^16 + 2^14 + 2^12 + 2^10 + 2^7 - 2^5 - 1"
"r2": 3806401
"r2_hex": "0x3a14c1"
"r2_bit": "2^22 - 2^19 + 2^17 + 2^12 + 2^10 + 2^8 - 2^6 + 1"
"znprimroot": 11
- "n": 33549601
"n_hex": "0x1ffed21"
"n_bit": "2^25 - 2^12 - 2^10 + 2^8 + 2^5 + 1"
"n_fac": "2^5 * 3 * 5^2 * 7 * 1997 + 1"
"nd": 534815
"nd_hex": "0x8291f"
"nd_bit": "2^19 + 2^13 + 2^11 + 2^8 + 2^5 - 1"
"r2": 23338561
"r2_hex": "0x1641e41"
"r2_bit": "2^25 - 2^23 - 2^21 + 2^18 + 2^13 - 2^9 + 2^6 + 1"
"znprimroot": 13
- "n": 33536161
"n_hex": "0x1ffb8a1"
"n_bit": "2^25 - 2^14 - 2^11 + 2^7 + 2^5 + 1"
"n_fac": "2^5 * 3^3 * 5 * 7 * 1109 + 1"
"nd": 15193247
"nd_hex": "0xe7d49f"
"nd_bit": "2^24 - 2^21 + 2^19 - 2^14 + 2^12 + 2^10 + 2^7 + 2^5 - 1"
"r2": 32003992
"r2_hex": "0x1e85798"
"r2_bit": "2^25 - 2^21 + 2^19 + 2^15 - 2^13 - 2^11 - 2^7 + 2^5 - 2^3"
"znprimroot": 19
- "n": 33551041
"n_hex": "0x1fff2c1"
"n_bit": "2^25 - 2^12 + 2^10 - 2^8 - 2^6 + 1"
"n_fac": "2^6 * 3 * 5 * 34949 + 1"
"nd": 1860287
"nd_hex": "0x1c62bf"
"nd_bit": "2^21 - 2^18 + 2^15 - 2^13 + 2^10 - 2^8 - 2^6 - 1"
"r2": 11498881
"r2_hex": "0xaf7581"
"r2_bit": "2^24 - 2^22 - 2^20 - 2^15 - 2^11 - 2^9 - 2^7 + 1"
"znprimroot": 7
- "n": 33364801
"n_hex": "0x1fd1b41"
"n_bit": "2^25 - 2^18 + 2^16 + 2^13 - 2^10 - 2^8 + 2^6 + 1"
"n_fac": "2^6 * 3^2 * 5^2 * 7 * 331 + 1"
"nd": 6982463
"nd_hex": "0x6a8b3f"
"nd_bit": "2^23 - 2^21 + 2^19 + 2^17 + 2^15 + 2^12 - 2^10 - 2^8 + 2^6 - 1"
"r2": 26025484
"r2_hex": "0x18d1e0c"
"r2_bit": "2^25 - 2^23 + 2^20 - 2^18 + 2^16 + 2^13 - 2^9 + 2^4 - 2^2"
"znprimroot": 19
- "n": 33553537
"n_hex": "0x1fffc81"
"n_bit": "2^25 - 2^10 + 2^7 + 1"
"n_fac": "2^7 * 3 * 59 * 1481 + 1"
"nd": 18070655
"nd_hex": "0x113bc7f"
"nd_bit": "2^24 + 2^20 + 2^18 - 2^14 - 2^10 + 2^7 - 1"
"r2": 801025
"r2_hex": "0xc3901"
"r2_bit": "2^20 - 2^18 + 2^14 - 2^11 + 2^8 + 1"
"znprimroot": 7
- "n": 33532801
"n_hex": "0x1ffab81"
"n_bit": "2^25 - 2^14 - 2^12 - 2^10 - 2^7 + 1"
"n_fac": "2^7 * 3 * 5^2 * 7 * 499 + 1"
"nd": 16477055
"nd_hex": "0xfb6b7f"
"nd_bit": "2^24 - 2^18 - 2^15 - 2^12 - 2^10 - 2^7 - 1"
"r2": 31973748
"r2_hex": "0x1e7e174"
"r2_bit": "2^25 - 2^21 + 2^19 - 2^13 + 2^9 - 2^7 - 2^4 + 2^2"
"znprimroot": 17
- "n": 33528961
"n_hex": "0x1ff9c81"
"n_bit": "2^25 - 2^15 + 2^13 - 2^10 + 2^7 + 1"
"n_fac": "2^7 * 3^2 * 5 * 5821 + 1"
"nd": 7560319
"nd_hex": "0x735c7f"
"nd_bit": "2^23 - 2^20 + 2^18 - 2^15 - 2^13 - 2^10 + 2^7 - 1"
"r2": 11721582
"r2_hex": "0xb2db6e"
"r2_bit": "2^24 - 2^22 - 2^20 + 2^18 - 2^16 - 2^13 - 2^10 - 2^7 - 2^4 - 2"
"znprimroot": 13
- "n": 33264001
"n_hex": "0x1fb9181"
"n_bit": "2^25 - 2^18 - 2^15 + 2^12 + 2^9 - 2^7 + 1"
"n_fac": "2^7 * 3^3 * 5^3 * 7 * 11 + 1"
"nd": 27873663
"nd_hex": "0x1a9517f"
"nd_bit": "2^25 - 2^23 + 2^21 + 2^19 + 2^16 + 2^14 + 2^12 + 2^9 - 2^7 - 1"
"r2": 25923226
"r2_hex": "0x18b8e9a"
"r2_bit": "2^25 - 2^23 + 2^20 - 2^18 - 2^15 + 2^12 - 2^9 + 2^7 + 2^5 - 2^3 + 2"
"znprimroot": 46
- "n": 33553153
"n_hex": "0x1fffb01"
"n_bit": "2^25 - 2^10 - 2^8 + 1"
"n_fac": "2^8 * 3^2 * 14563 + 1"
"nd": 15137535
"nd_hex": "0xe6faff"
"nd_bit": "2^24 - 2^21 + 2^19 - 2^16 - 2^10 - 2^8 - 1"
"r2": 1635841
"r2_hex": "0x18f601"
"r2_bit": "2^21 - 2^19 + 2^16 - 2^11 - 2^9 + 1"
"znprimroot": 5
- "n": 33550081
"n_hex": "0x1ffef01"
"n_bit": "2^25 - 2^12 - 2^8 + 1"
"n_fac": "2^8 * 3 * 5 * 8737 + 1"
"nd": 31387391
"nd_hex": "0x1deeeff"
"nd_bit": "2^25 - 2^21 - 2^16 - 2^12 - 2^8 - 1"
"r2": 18931201
"r2_hex": "0x120de01"
"r2_bit": "2^24 + 2^21 + 2^16 - 2^13 - 2^9 + 1"
"znprimroot": 17
- "n": 33411841
"n_hex": "0x1fdd301"
"n_bit": "2^25 - 2^17 - 2^14 + 2^12 + 2^10 - 2^8 + 1"
"n_fac": "2^8 * 3 * 5 * 7 * 11 * 113 + 1"
"nd": 18141951
"nd_hex": "0x114d2ff"
"nd_bit": "2^24 + 2^20 + 2^18 + 2^16 - 2^14 + 2^12 + 2^10 - 2^8 - 1"
"r2": 17793953
"r2_hex": "0x10f83a1"
"r2_bit": "2^24 + 2^20 - 2^15 + 2^10 - 2^7 + 2^5 + 1"
"znprimroot": 17
- "n": 33396481
"n_hex": "0x1fd9701"
"n_bit": "2^25 - 2^17 - 2^15 + 2^13 - 2^11 - 2^8 + 1"
"n_fac": "2^8 * 3^2 * 5 * 13 * 223 + 1"
"nd": 32282367
"nd_hex": "0x1ec96ff"
"nd_bit": "2^25 - 2^20 - 2^18 + 2^15 + 2^13 - 2^11 - 2^8 - 1"
"r2": 1347094
"r2_hex": "0x148e16"
"r2_bit": "2^20 + 2^18 + 2^15 + 2^12 - 2^9 + 2^5 - 2^3 - 2"
"znprimroot": 11
- "n": 33551873
"n_hex": "0x1fff601"
"n_bit": "2^25 - 2^11 - 2^9 + 1"
"n_fac": "2^9 * 19 * 3449 + 1"
"nd": 26998271
"nd_hex": "0x19bf5ff"
"nd_bit": "2^25 - 2^23 + 2^21 - 2^18 - 2^11 - 2^9 - 1"
"r2": 6548481
"r2_hex": "0x63ec01"
"r2_bit": "2^23 - 2^21 + 2^18 - 2^12 - 2^10 + 1"
"znprimroot": 5
- "n": 33550849
"n_hex": "0x1fff201"
"n_bit": "2^25 - 2^12 + 2^9 + 1"
"n_fac": "2^9 * 3^4 * 809 + 1"
"nd": 20705791
"nd_hex": "0x13bf1ff"
"nd_bit": "2^24 + 2^22 - 2^18 - 2^12 + 2^9 - 1"
"r2": 12837889
"r2_hex": "0xc3e401"
"r2_bit": "2^24 - 2^22 + 2^18 - 2^13 + 2^10 + 1"
"znprimroot": 13
- "n": 33292801
"n_hex": "0x1fc0201"
"n_bit": "2^25 - 2^18 + 2^9 + 1"
"n_fac": "2^9 * 3^2 * 5^2 * 17^2 + 1"
"nd": 33030655
"nd_hex": "0x1f801ff"
"nd_bit": "2^25 - 2^19 + 2^9 - 1"
"r2": 781305
"r2_hex": "0xbebf9"
"r2_bit": "2^20 - 2^18 - 2^12 - 2^10 - 2^3 + 1"
"znprimroot": 7
- "n": 33481729
"n_hex": "0x1fee401"
"n_bit": "2^25 - 2^16 - 2^13 + 2^10 + 1"
"n_fac": "2^10 * 3^3 * 7 * 173 + 1"
"nd": 15655935
"nd_hex": "0xeee3ff"
"nd_bit": "2^24 - 2^20 - 2^16 - 2^13 + 2^10 - 1"
"r2": 29094756
"r2_hex": "0x1bbf364"
"r2_bit": "2^25 - 2^22 - 2^18 - 2^12 + 2^10 - 2^7 - 2^5 + 2^2"
"znprimroot": 11
- "n": 33469441
"n_hex": "0x1feb401"
"n_bit": "2^25 - 2^16 - 2^14 - 2^12 + 2^10 + 1"
"n_fac": "2^10 * 3 * 5 * 2179 + 1"
"nd": 24032255
"nd_hex": "0x16eb3ff"
"nd_bit": "2^25 - 2^23 - 2^20 - 2^16 - 2^14 - 2^12 + 2^10 - 1"
"r2": 27540266
"r2_hex": "0x1a43b2a"
"r2_bit": "2^25 - 2^23 + 2^21 + 2^18 + 2^14 - 2^10 - 2^8 + 2^5 + 2^3 + 2"
"znprimroot": 13
- "n": 33223681
"n_hex": "0x1faf401"
"n_bit": "2^25 - 2^18 - 2^16 - 2^12 + 2^10 + 1"
"n_fac": "2^10 * 3^2 * 5 * 7 * 103 + 1"
"nd": 23786495
"nd_hex": "0x16af3ff"
"nd_bit": "2^25 - 2^23 - 2^20 - 2^18 - 2^16 - 2^12 + 2^10 - 1"
"r2": 23866149
"r2_hex": "0x16c2b25"
"r2_bit": "2^25 - 2^23 - 2^20 - 2^18 + 2^14 - 2^12 - 2^10 - 2^8 + 2^5 + 2^2 + 1"
"znprimroot": 11
- "n": 33540097
"n_hex": "0x1ffc801"
"n_bit": "2^25 - 2^14 + 2^11 + 1"
"n_fac": "2^11 * 3 * 53 * 103 + 1"
"nd": 29345791
"nd_hex": "0x1bfc7ff"
"nd_bit": "2^25 - 2^22 - 2^14 + 2^11 - 1"
"r2": 4251643
"r2_hex": "0x40dffb"
"r2_bit": "2^22 + 2^16 - 2^13 - 2^2 - 1"
"znprimroot": 5
- "n": 33380353
"n_hex": "0x1fd5801"
"n_bit": "2^25 - 2^17 - 2^15 - 2^13 - 2^11 + 1"
"n_fac": "2^11 * 3^2 * 1811 + 1"
"nd": 29186047
"nd_hex": "0x1bd57ff"
"nd_bit": "2^25 - 2^22 - 2^17 - 2^15 - 2^13 - 2^11 - 1"
"r2": 27518070
"r2_hex": "0x1a3e476"
"r2_bit": "2^25 - 2^23 + 2^21 + 2^18 - 2^13 + 2^10 + 2^7 - 2^3 - 2"
"znprimroot": 5
- "n": 33331201
"n_hex": "0x1fc9801"
"n_bit": "2^25 - 2^18 + 2^15 + 2^13 - 2^11 + 1"
"n_fac": "2^11 * 3 * 5^2 * 7 * 31 + 1"
"nd": 29136895
"nd_hex": "0x1bc97ff"
"nd_bit": "2^25 - 2^22 - 2^18 + 2^15 + 2^13 - 2^11 - 1"
"r2": 1933866
"r2_hex": "0x1d822a"
"r2_bit": "2^21 - 2^17 - 2^15 + 2^9 + 2^5 + 2^3 + 2"
"znprimroot": 22
- "n": 33550337
"n_hex": "0x1fff001"
"n_bit": "2^25 - 2^12 + 1"
"n_fac": "2^12 * 8191 + 1"
"nd": 16773119
"nd_hex": "0xffefff"
"nd_bit": "2^24 - 2^12 - 1"
"r2": 16769025
"r2_hex": "0xffe001"
"r2_bit": "2^24 - 2^13 + 1"
"znprimroot": 3
- "n": 33533953
"n_hex": "0x1ffb001"
"n_bit": "2^25 - 2^14 - 2^12 + 1"
"n_fac": "2^12 * 3 * 2729 + 1"
"nd": 16756735
"nd_hex": "0xffafff"
"nd_bit": "2^24 - 2^14 - 2^12 - 1"
"r2": 16982005
"r2_hex": "0x1031ff5"
"r2_bit": "2^24 + 2^18 - 2^16 + 2^13 - 2^4 + 2^2 + 1"
"znprimroot": 5
- "n": 32256001
"n_hex": "0x1ec3001"
"n_bit": "2^25 - 2^20 - 2^18 + 2^14 - 2^12 + 1"
"n_fac": "2^12 * 3^2 * 5^3 * 7 + 1"
"nd": 15478783
"nd_hex": "0xec2fff"
"nd_bit": "2^24 - 2^20 - 2^18 + 2^14 - 2^12 - 1"
"r2": 30913495
"r2_hex": "0x1d7b3d7"
"r2_bit": "2^25 - 2^21 - 2^19 - 2^14 - 2^12 + 2^10 - 2^5 - 2^3 - 1"
"znprimroot": 11
- "n": 33349633
"n_hex": "0x1fce001"
"n_bit": "2^25 - 2^18 + 2^16 - 2^13 + 1"
"n_fac": "2^13 * 3 * 23 * 59 + 1"
"nd": 33349631
"nd_hex": "0x1fcdfff"
"nd_bit": "2^25 - 2^18 + 2^16 - 2^13 - 1"
"r2": 22141720
"r2_hex": "0x151db18"
"r2_bit": "2^24 + 2^22 + 2^20 + 2^17 - 2^13 - 2^10 - 2^8 + 2^5 - 2^3"
"znprimroot": 5
- "n": 33538049
"n_hex": "0x1ffc001"
"n_bit": "2^25 - 2^14 + 1"
"n_fac": "2^14 * 23 * 89 + 1"
"nd": 33538047
"nd_hex": "0x1ffbfff"
"nd_bit": "2^25 - 2^14 - 1"
"r2": 98297
"r2_hex": "0x17ff9"
"r2_bit": "2^17 - 2^15 - 2^3 + 1"
"znprimroot": 3
- "n": 33177601
"n_hex": "0x1fa4001"
"n_bit": "2^25 - 2^19 + 2^17 + 2^14 + 1"
"n_fac": "2^14 * 3^4 * 5^2 + 1"
"nd": 33177599
"nd_hex": "0x1fa3fff"
"nd_bit": "2^25 - 2^19 + 2^17 + 2^14 - 1"
"r2": 1470281
"r2_hex": "0x166f49"
"r2_bit": "2^21 - 2^19 - 2^17 + 2^15 - 2^12 - 2^8 + 2^6 + 2^3 + 1"
"znprimroot": 26
- "n": 32686081
"n_hex": "0x1f2c001"
"n_bit": "2^25 - 2^20 + 2^18 - 2^16 - 2^14 + 1"
"n_fac": "2^14 * 3 * 5 * 7 * 19 + 1"
"nd": 32686079
"nd_hex": "0x1f2bfff"
"nd_bit": "2^25 - 2^20 + 2^18 - 2^16 - 2^14 - 1"
"r2": 30942693
"r2_hex": "0x1d825e5"
"r2_bit": "2^25 - 2^21 - 2^19 + 2^13 + 2^11 - 2^9 - 2^5 + 2^2 + 1"
"znprimroot": 22
- "n": 33128449
"n_hex": "0x1f98001"
"n_bit": "2^25 - 2^19 + 2^17 - 2^15 + 1"
"n_fac": "2^15 * 3 * 337 + 1"
"nd": 33128447
"nd_hex": "0x1f97fff"
"nd_bit": "2^25 - 2^19 + 2^17 - 2^15 - 1"
"r2": 17001116
"r2_hex": "0x1036a9c"
"r2_bit": "2^24 + 2^18 - 2^15 - 2^13 + 2^11 + 2^9 + 2^7 + 2^5 - 2^2"
"znprimroot": 11
- "n": 32931841
"n_hex": "0x1f68001"
"n_bit": "2^25 - 2^19 - 2^17 + 2^15 + 1"
"n_fac": "2^15 * 3 * 5 * 67 + 1"
"nd": 32931839
"nd_hex": "0x1f67fff"
"nd_bit": "2^25 - 2^19 - 2^17 + 2^15 - 1"
"r2": 11784711
"r2_hex": "0xb3d207"
"r2_bit": "2^24 - 2^22 - 2^20 + 2^18 - 2^14 + 2^12 + 2^9 + 2^3 - 1"
"znprimroot": 14
- "n": 30965761
"n_hex": "0x1d88001"
"n_bit": "2^25 - 2^21 - 2^19 + 2^15 + 1"
"n_fac": "2^15 * 3^3 * 5 * 7 + 1"
"nd": 30965759
"nd_hex": "0x1d87fff"
"nd_bit": "2^25 - 2^21 - 2^19 + 2^15 - 1"
"r2": 10105514
"r2_hex": "0x9a32aa"
"r2_bit": "2^23 + 2^21 - 2^19 + 2^17 + 2^14 - 2^12 + 2^9 + 2^7 + 2^5 + 2^3 + 2"
"znprimroot": 39
- "n": 32440321
"n_hex": "0x1ef0001"
"n_bit": "2^25 - 2^20 - 2^16 + 1"
"n_fac": "2^16 * 3^2 * 5 * 11 + 1"
"nd": 32440319
"nd_hex": "0x1eeffff"
"nd_bit": "2^25 - 2^20 - 2^16 - 1"
"r2": 11758219
"r2_hex": "0xb36a8b"
"r2_bit": "2^24 - 2^22 - 2^20 + 2^18 - 2^15 - 2^13 + 2^11 + 2^9 + 2^7 + 2^4 - 2^2 - 1"
"znprimroot": 41
- "n": 21626881
"n_hex": "0x14a0001"
"n_bit": "2^24 + 2^22 + 2^19 + 2^17 + 1"
"n_fac": "2^17 * 3 * 5 * 11 + 1"
"nd": 21626879
"nd_hex": "0x149ffff"
"nd_bit": "2^24 + 2^22 + 2^19 + 2^17 - 1"
"r2": 5218257
"r2_hex": "0x4f9fd1"
"r2_bit": "2^22 + 2^20 - 2^15 + 2^13 - 2^6 + 2^4 + 1"
"znprimroot": 14
- "n": 33292289
"n_hex": "0x1fc0001"
"n_bit": "2^25 - 2^18 + 1"
"n_fac": "2^18 * 127 + 1"
"nd": 33292287
"nd_hex": "0x1fbffff"
"nd_bit": "2^25 - 2^18 - 1"
"r2": 3667953
"r2_hex": "0x37f7f1"
"r2_bit": "2^22 - 2^19 - 2^11 - 2^4 + 1"
"znprimroot": 3
- "n": 29884417
"n_hex": "0x1c80001"
"n_bit": "2^25 - 2^22 + 2^19 + 1"
"n_fac": "2^19 * 3 * 19 + 1"
"nd": 29884415
"nd_hex": "0x1c7ffff"
"nd_bit": "2^25 - 2^22 + 2^19 - 1"
"r2": 13705074
"r2_hex": "0xd11f72"
"r2_bit": "2^24 - 2^22 + 2^20 + 2^16 + 2^13 - 2^7 - 2^4 + 2"
"znprimroot": 5
- "n": 28311553
"n_hex": "0x1b00001"
"n_bit": "2^25 - 2^22 - 2^20 + 1"
"n_fac": "2^20 * 3^3 + 1"
"nd": 28311551
"nd_hex": "0x1afffff"
"nd_bit": "2^25 - 2^22 - 2^20 - 1"
"r2": 8466282
"r2_hex": "0x812f6a"
"r2_bit": "2^23 + 2^16 + 2^14 - 2^12 - 2^7 - 2^5 + 2^3 + 2"
"znprimroot": 5
- "n": 23068673
"n_hex": "0x1600001"
"n_bit": "2^25 - 2^23 - 2^21 + 1"
"n_fac": "2^21 * 11 + 1"
"nd": 23068671
"nd_hex": "0x15fffff"
"nd_bit": "2^25 - 2^23 - 2^21 - 1"
"r2": 9913812
"r2_hex": "0x9745d4"
"r2_bit": "2^23 + 2^21 - 2^19 - 2^16 + 2^14 + 2^11 - 2^9 - 2^6 + 2^4 + 2^2"
"znprimroot": 3
- "r": 26
"primes":
- "n": 67108859
"n_hex": "0x3fffffb"
"n_bit": "2^26 - 2^2 - 1"
"n_fac": "2 * 479 * 70051 + 1"
"nd": 13421773
"nd_hex": "0xcccccd"
"nd_bit": "2^24 - 2^22 + 2^20 - 2^18 + 2^16 - 2^14 + 2^12 - 2^10 + 2^8 - 2^6 + 2^4 - 2^2 + 1"
"r2": 25
"r2_hex": "0x19"
"r2_bit": "2^5 - 2^3 + 1"
"znprimroot": 2
- "n": 67108471
"n_hex": "0x3fffe77"
"n_bit": "2^26 - 2^9 + 2^7 - 2^3 - 1"
"n_fac": "2 * 3 * 5 * 11 * 13 * 15643 + 1"
"nd": 29541561
"nd_hex": "0x1c2c4b9"
"nd_bit": "2^25 - 2^22 + 2^18 - 2^16 - 2^14 + 2^10 + 2^8 - 2^6 - 2^3 + 1"
"r2": 154449
"r2_hex": "0x25b51"
"r2_bit": "2^17 + 2^15 - 2^13 - 2^10 - 2^8 + 2^6 + 2^4 + 1"
"znprimroot": 3
- "n": 67107871
"n_hex": "0x3fffc1f"
"n_bit": "2^26 - 2^10 + 2^5 - 1"
"n_fac": "2 * 3^2 * 5 * 31 * 67 * 359 + 1"
"nd": 66027553
"nd_hex": "0x3ef8021"
"nd_bit": "2^26 - 2^20 - 2^15 + 2^5 + 1"
"r2": 986049
"r2_hex": "0xf0bc1"
"r2_bit": "2^20 - 2^16 + 2^12 - 2^10 - 2^6 + 1"
"znprimroot": 3
- "n": 67105711
"n_hex": "0x3fff3af"
"n_bit": "2^26 - 2^12 + 2^10 - 2^6 - 2^4 - 1"
"n_fac": "2 * 3^2 * 5 * 7 * 29 * 3673 + 1"
"nd": 19709105
"nd_hex": "0x12cbcb1"
"nd_bit": "2^24 + 2^22 - 2^20 - 2^18 + 2^16 - 2^14 - 2^10 + 2^8 - 2^6 - 2^4 + 1"
"r2": 9941409
"r2_hex": "0x97b1a1"
"r2_bit": "2^23 + 2^21 - 2^19 - 2^14 - 2^12 + 2^9 - 2^7 + 2^5 + 1"
"znprimroot": 3
- "n": 67108837
"n_hex": "0x3ffffe5"
"n_bit": "2^26 - 2^5 + 2^2 + 1"
"n_fac": "2^2 * 3 * 19 * 294337 + 1"
"nd": 4971027
"nd_hex": "0x4bda13"
"nd_bit": "2^22 + 2^20 - 2^18 - 2^13 - 2^11 + 2^9 + 2^4 + 2^2 - 1"
"r2": 729
"r2_hex": "0x2d9"
"r2_bit": "2^10 - 2^8 - 2^5 - 2^3 + 1"
"znprimroot": 5
- "n": 67108777
"n_hex": "0x3ffffa9"
"n_bit": "2^26 - 2^7 + 2^5 + 2^3 + 1"
"n_fac": "2^3 * 3 * 7 * 173 * 2309 + 1"
"nd": 64023399
"nd_hex": "0x3d0eb67"
"nd_bit": "2^26 - 2^22 + 2^20 + 2^16 - 2^12 - 2^10 - 2^7 - 2^5 + 2^3 - 1"
"r2": 7569
"r2_hex": "0x1d91"
"r2_bit": "2^13 - 2^9 - 2^7 + 2^4 + 1"
"znprimroot": 5
- "n": 67108201
"n_hex": "0x3fffd69"
"n_bit": "2^26 - 2^9 - 2^7 - 2^5 + 2^3 + 1"
"n_fac": "2^3 * 3 * 5^2 * 111847 + 1"
"nd": 50306343
"nd_hex": "0x2ff9d27"
"nd_bit": "2^26 - 2^24 - 2^15 + 2^13 - 2^10 + 2^8 + 2^5 + 2^3 - 1"
"r2": 439569
"r2_hex": "0x6b511"
"r2_bit": "2^19 - 2^16 - 2^14 - 2^12 + 2^10 + 2^8 + 2^4 + 1"
"znprimroot": 7
- "n": 67107241
"n_hex": "0x3fff9a9"
"n_bit": "2^26 - 2^11 + 2^9 - 2^7 + 2^5 + 2^3 + 1"
"n_fac": "2^3 * 3^2 * 5 * 19 * 9811 + 1"
"nd": 49825127
"nd_hex": "0x2f84567"
"nd_bit": "2^26 - 2^24 - 2^19 + 2^14 + 2^11 - 2^9 - 2^7 - 2^5 + 2^3 - 1"
"r2": 2634129
"r2_hex": "0x283191"
"r2_bit": "2^21 + 2^19 + 2^14 - 2^12 + 2^9 - 2^7 + 2^4 + 1"
"znprimroot": 13
- "n": 67106761
"n_hex": "0x3fff7c9"
"n_bit": "2^26 - 2^11 - 2^6 + 2^3 + 1"
"n_fac": "2^3 * 3 * 5 * 7 * 79889 + 1"
"nd": 12987783
"nd_hex": "0xc62d87"
"nd_bit": "2^24 - 2^22 + 2^19 - 2^17 + 2^14 - 2^12 - 2^9 - 2^7 + 2^3 - 1"
"r2": 4422609
"r2_hex": "0x437bd1"
"r2_bit": "2^22 + 2^18 - 2^15 - 2^10 - 2^6 + 2^4 + 1"
"znprimroot": 11
- "n": 67105081
"n_hex": "0x3fff139"
"n_bit": "2^26 - 2^12 + 2^8 + 2^6 - 2^3 + 1"
"n_fac": "2^3 * 3^2 * 5 * 7 * 31 * 859 + 1"
"nd": 18502391
"nd_hex": "0x11a52f7"
"nd_bit": "2^24 + 2^21 - 2^19 + 2^17 + 2^14 + 2^12 + 2^10 - 2^8 - 2^3 - 1"
"r2": 14311089
"r2_hex": "0xda5eb1"
"r2_bit": "2^24 - 2^21 - 2^19 + 2^17 + 2^15 - 2^13 - 2^8 - 2^6 - 2^4 + 1"
"znprimroot": 33
- "n": 67108753
"n_hex": "0x3ffff91"
"n_bit": "2^26 - 2^7 + 2^4 + 1"
"n_fac": "2^4 * 3^2 * 466033 + 1"
"nd": 51994255
"nd_hex": "0x3195e8f"
"nd_bit": "2^26 - 2^24 + 2^21 - 2^19 + 2^17 - 2^15 - 2^13 - 2^9 + 2^7 + 2^4 - 1"
"r2": 12321
"r2_hex": "0x3021"
"r2_bit": "2^14 - 2^12 + 2^5 + 1"
"znprimroot": 5
- "n": 67108081
"n_hex": "0x3fffcf1"
"n_bit": "2^26 - 2^10 + 2^8 - 2^4 + 1"
"n_fac": "2^4 * 3 * 5 * 13 * 137 * 157 + 1"
"nd": 7113711
"nd_hex": "0x6c8bef"
"nd_bit": "2^23 - 2^20 - 2^18 + 2^15 + 2^12 - 2^10 - 2^4 - 1"
"r2": 613089
"r2_hex": "0x95ae1"
"r2_bit": "2^19 + 2^17 - 2^15 - 2^13 - 2^10 - 2^8 - 2^5 + 1"
"znprimroot": 7
- "n": 67102561
"n_hex": "0x3ffe761"
"n_bit": "2^26 - 2^13 + 2^11 - 2^7 - 2^5 + 1"
"n_fac": "2^5 * 3^3 * 5 * 7^2 * 317 + 1"
"nd": 3343199
"nd_hex": "0x33035f"
"nd_bit": "2^22 - 2^20 + 2^18 - 2^16 + 2^10 - 2^7 - 2^5 - 1"
"r2": 39727809
"r2_hex": "0x25e32c1"
"r2_bit": "2^25 + 2^23 - 2^21 - 2^17 + 2^14 - 2^12 + 2^10 - 2^8 - 2^6 + 1"
"znprimroot": 13
- "n": 67108289
"n_hex": "0x3fffdc1"
"n_bit": "2^26 - 2^9 - 2^6 + 1"
"n_fac": "2^6 * 13 * 79 * 1021 + 1"
"nd": 60222911
"nd_hex": "0x396edbf"
"nd_bit": "2^26 - 2^23 + 2^21 - 2^19 - 2^16 - 2^12 - 2^9 - 2^6 - 1"
"r2": 330625
"r2_hex": "0x50b81"
"r2_bit": "2^18 + 2^16 + 2^12 - 2^10 - 2^7 + 1"
"znprimroot": 6
- "n": 67108033
"n_hex": "0x3fffcc1"
"n_bit": "2^26 - 2^10 + 2^8 - 2^6 + 1"
"n_fac": "2^6 * 3^2 * 116507 + 1"
"nd": 10579135
"nd_hex": "0xa16cbf"
"nd_bit": "2^23 + 2^21 + 2^17 - 2^15 - 2^12 - 2^10 + 2^8 - 2^6 - 1"
"r2": 690561
"r2_hex": "0xa8981"
"r2_bit": "2^19 + 2^17 + 2^15 + 2^11 + 2^9 - 2^7 + 1"
"znprimroot": 5
- "n": 67097281
"n_hex": "0x3ffd2c1"
"n_bit": "2^26 - 2^14 + 2^12 + 2^10 - 2^8 - 2^6 + 1"
"n_fac": "2^6 * 3 * 5 * 37 * 1889 + 1"
"nd": 46940863
"nd_hex": "0x2cc42bf"
"nd_bit": "2^26 - 2^24 - 2^22 + 2^20 - 2^18 + 2^14 + 2^10 - 2^8 - 2^6 - 1"
"r2": 67068608
"r2_hex": "0x3ff62c0"
"r2_bit": "2^26 - 2^15 - 2^13 + 2^10 - 2^8 - 2^6"
"znprimroot": 7
- "n": 67085761
"n_hex": "0x3ffa5c1"
"n_bit": "2^26 - 2^15 + 2^13 + 2^11 - 2^9 - 2^6 + 1"
"n_fac": "2^6 * 3 * 5 * 7 * 67 * 149 + 1"
"nd": 55219647
"nd_hex": "0x34a95bf"
"nd_bit": "2^26 - 2^24 + 2^22 + 2^19 + 2^17 + 2^15 + 2^13 - 2^11 - 2^9 - 2^6 - 1"
"r2": 64148282
"r2_hex": "0x3d2d33a"
"r2_bit": "2^26 - 2^22 + 2^20 + 2^18 - 2^16 - 2^14 + 2^12 + 2^10 - 2^8 + 2^6 - 2^3 + 2"
"znprimroot": 19
- "n": 67107713
"n_hex": "0x3fffb81"
"n_bit": "2^26 - 2^10 - 2^7 + 1"
"n_fac": "2^7 * 7 * 74897 + 1"
"nd": 13351807
"nd_hex": "0xcbbb7f"
"nd_bit": "2^24 - 2^22 + 2^20 - 2^18 - 2^14 - 2^10 - 2^7 - 1"
"r2": 1324801
"r2_hex": "0x143701"
"r2_bit": "2^20 + 2^18 + 2^14 - 2^11 - 2^8 + 1"
"znprimroot": 3
- "n": 67107457
"n_hex": "0x3fffa81"
"n_bit": "2^26 - 2^11 + 2^9 + 2^7 + 1"
"n_fac": "2^7 * 3^2 * 13 * 4481 + 1"
"nd": 25279103
"nd_hex": "0x181ba7f"
"nd_bit": "2^25 - 2^23 + 2^17 - 2^14 - 2^11 + 2^9 + 2^7 - 1"
"r2": 1979649
"r2_hex": "0x1e3501"
"r2_bit": "2^21 - 2^17 + 2^14 - 2^12 + 2^10 + 2^8 + 1"
"znprimroot": 5
- "n": 67090561
"n_hex": "0x3ffb881"
"n_bit": "2^26 - 2^14 - 2^11 + 2^7 + 1"
"n_fac": "2^7 * 3 * 5 * 83 * 421 + 1"
"nd": 36141183
"nd_hex": "0x227787f"
"nd_bit": "2^25 + 2^21 + 2^19 - 2^15 - 2^11 + 2^7 - 1"
"r2": 66637565
"r2_hex": "0x3f8cefd"
"r2_bit": "2^26 - 2^19 + 2^16 - 2^14 + 2^12 - 2^8 - 2^2 + 1"
"znprimroot": 7
- "n": 67079041
"n_hex": "0x3ff8b81"
"n_bit": "2^26 - 2^15 + 2^12 - 2^10 - 2^7 + 1"
"n_fac": "2^7 * 3 * 5 * 7^2 * 23 * 31 + 1"
"nd": 64703359
"nd_hex": "0x3db4b7f"
"nd_bit": "2^26 - 2^21 - 2^18 - 2^16 + 2^14 + 2^12 - 2^10 - 2^7 - 1"
"r2": 17383796
"r2_hex": "0x1094174"
"r2_bit": "2^24 + 2^19 + 2^16 + 2^14 + 2^9 - 2^7 - 2^4 + 2^2"
"znprimroot": 22
- "n": 67106561
"n_hex": "0x3fff701"
"n_bit": "2^26 - 2^11 - 2^8 + 1"
"n_fac": "2^8 * 5 * 103 * 509 + 1"
"nd": 45020927
"nd_hex": "0x2aef6ff"
"nd_bit": "2^26 - 2^24 - 2^22 - 2^20 - 2^16 - 2^11 - 2^8 - 1"
"r2": 5303809
"r2_hex": "0x50ee01"
"r2_bit": "2^22 + 2^20 + 2^16 - 2^12 - 2^9 + 1"
"znprimroot": 3
- "n": 66850561
"n_hex": "0x3fc0f01"
"n_bit": "2^26 - 2^18 + 2^12 - 2^8 + 1"
"n_fac": "2^8 * 3^2 * 5 * 7 * 829 + 1"
"nd": 35327743
"nd_hex": "0x21b0eff"
"nd_bit": "2^25 + 2^21 - 2^18 - 2^16 + 2^12 - 2^8 - 1"
"r2": 3579931
"r2_hex": "0x36a01b"
"r2_bit": "2^22 - 2^19 - 2^17 + 2^15 + 2^13 + 2^5 - 2^2 - 1"
"znprimroot": 13
- "n": 67087873
"n_hex": "0x3ffae01"
"n_bit": "2^26 - 2^14 - 2^12 - 2^9 + 1"
"n_fac": "2^9 * 3^3 * 23 * 211 + 1"
"nd": 29076991
"nd_hex": "0x1bbadff"
"nd_bit": "2^25 - 2^22 - 2^18 - 2^14 - 2^12 - 2^9 - 1"
"r2": 38094843
"r2_hex": "0x24547fb"
"r2_bit": "2^25 + 2^22 + 2^18 + 2^16 + 2^14 + 2^11 - 2^2 - 1"
"znprimroot": 5
- "n": 67069441
"n_hex": "0x3ff6601"
"n_bit": "2^26 - 2^15 - 2^13 + 2^11 - 2^9 + 1"
"n_fac": "2^9 * 3^2 * 5 * 41 * 71 + 1"
"nd": 56321535
"nd_hex": "0x35b65ff"
"nd_bit": "2^26 - 2^23 - 2^21 - 2^18 - 2^15 - 2^13 + 2^11 - 2^9 - 1"
"r2": 11575786
"r2_hex": "0xb0a1ea"
"r2_bit": "2^24 - 2^22 - 2^20 + 2^15 + 2^13 + 2^9 - 2^5 + 2^3 + 2"
"znprimroot": 7
- "n": 66823681
"n_hex": "0x3fba601"
"n_bit": "2^26 - 2^18 - 2^15 + 2^13 + 2^11 - 2^9 + 1"
"n_fac": "2^9 * 3 * 5 * 7 * 11 * 113 + 1"
"nd": 5744127
"nd_hex": "0x57a5ff"
"nd_bit": "2^23 - 2^21 - 2^19 - 2^15 + 2^13 + 2^11 - 2^9 - 1"
"r2": 4923712
"r2_hex": "0x4b2140"
"r2_bit": "2^22 + 2^20 - 2^18 - 2^16 + 2^13 + 2^8 + 2^6"
"znprimroot": 13
- "n": 65318401
"n_hex": "0x3e4ae01"
"n_bit": "2^26 - 2^21 + 2^18 + 2^16 - 2^14 - 2^12 - 2^9 + 1"
"n_fac": "2^9 * 3^6 * 5^2 * 7 + 1"
"nd": 27307519
"nd_hex": "0x1a0adff"
"nd_bit": "2^25 - 2^23 + 2^21 + 2^16 - 2^14 - 2^12 - 2^9 - 1"
"r2": 61270091
"r2_hex": "0x3a6e84b"
"r2_bit": "2^26 - 2^23 + 2^21 + 2^19 - 2^16 - 2^13 + 2^11 + 2^6 + 2^4 - 2^2 - 1"
"znprimroot": 13
- "n": 67046401
"n_hex": "0x3ff0c01"
"n_bit": "2^26 - 2^16 + 2^12 - 2^10 + 1"
"n_fac": "2^10 * 3^3 * 5^2 * 97 + 1"
"nd": 57609215
"nd_hex": "0x36f0bff"
"nd_bit": "2^26 - 2^23 - 2^20 - 2^16 + 2^12 - 2^10 - 1"
"r2": 12935111
"r2_hex": "0xc55fc7"
"r2_bit": "2^24 - 2^22 + 2^19 - 2^17 - 2^15 - 2^13 - 2^6 + 2^3 - 1"
"znprimroot": 19
- "n": 65157121
"n_hex": "0x3e23801"
"n_bit": "2^26 - 2^21 + 2^17 + 2^14 - 2^11 + 1"
"n_fac": "2^11 * 3^2 * 5 * 7 * 101 + 1"
"nd": 60962815
"nd_hex": "0x3a237ff"
"nd_bit": "2^26 - 2^23 + 2^21 + 2^17 + 2^14 - 2^11 - 1"
"r2": 19973026
"r2_hex": "0x130c3a2"
"r2_bit": "2^24 + 2^22 - 2^20 + 2^16 - 2^14 + 2^10 - 2^7 + 2^5 + 2"
"znprimroot": 23
- "n": 67104769
"n_hex": "0x3fff001"
"n_bit": "2^26 - 2^12 + 1"
"n_fac": "2^12 * 3 * 43 * 127 + 1"
"nd": 50327551
"nd_hex": "0x2ffefff"
"nd_bit": "2^26 - 2^24 - 2^12 - 1"
"r2": 16769025
"r2_hex": "0xffe001"
"r2_bit": "2^24 - 2^13 + 1"
"znprimroot": 17
- "n": 66908161
"n_hex": "0x3fcf001"
"n_bit": "2^26 - 2^18 + 2^16 - 2^12 + 1"
"n_fac": "2^12 * 3^3 * 5 * 11^2 + 1"
"nd": 50130943
"nd_hex": "0x2fcefff"
"nd_bit": "2^26 - 2^24 - 2^18 + 2^16 - 2^12 - 1"
"r2": 2981287
"r2_hex": "0x2d7da7"
"r2_bit": "2^22 - 2^20 - 2^17 - 2^15 - 2^9 - 2^7 + 2^5 + 2^3 - 1"
"znprimroot": 7
- "n": 64942081
"n_hex": "0x3def001"
"n_bit": "2^26 - 2^21 - 2^16 - 2^12 + 1"
"n_fac": "2^12 * 3 * 5 * 7 * 151 + 1"
"nd": 48164863
"nd_hex": "0x2deefff"
"nd_bit": "2^26 - 2^24 - 2^21 - 2^16 - 2^12 - 1"
"r2": 25765275
"r2_hex": "0x189259b"
"r2_bit": "2^25 - 2^23 + 2^19 + 2^16 + 2^13 + 2^11 - 2^9 - 2^7 + 2^5 - 2^2 - 1"
"znprimroot": 11
- "n": 67084289
"n_hex": "0x3ffa001"
"n_bit": "2^26 - 2^15 + 2^13 + 1"
"n_fac": "2^13 * 19 * 431 + 1"
"nd": 67084287
"nd_hex": "0x3ff9fff"
"nd_bit": "2^26 - 2^15 + 2^13 - 1"
"r2": 172024
"r2_hex": "0x29ff8"
"r2_bit": "2^17 + 2^15 + 2^13 - 2^3"
"znprimroot": 3
- "n": 66969601
"n_hex": "0x3fde001"
"n_bit": "2^26 - 2^17 - 2^13 + 1"
"n_fac": "2^13 * 3 * 5^2 * 109 + 1"
"nd": 66969599
"nd_hex": "0x3fddfff"
"nd_bit": "2^26 - 2^17 - 2^13 - 1"
"r2": 39968480
"r2_hex": "0x261dee0"
"r2_bit": "2^25 + 2^23 - 2^21 + 2^17 - 2^13 - 2^8 - 2^5"
"znprimroot": 7
- "n": 66723841
"n_hex": "0x3fa2001"
"n_bit": "2^26 - 2^19 + 2^17 + 2^13 + 1"
"n_fac": "2^13 * 3^2 * 5 * 181 + 1"
"nd": 66723839
"nd_hex": "0x3fa1fff"
"nd_bit": "2^26 - 2^19 + 2^17 + 2^13 - 1"
"r2": 49059668
"r2_hex": "0x2ec9754"
"r2_bit": "2^26 - 2^24 - 2^20 - 2^18 + 2^15 + 2^13 - 2^11 - 2^8 + 2^6 + 2^4 + 2^2"
"znprimroot": 11
- "n": 64512001
"n_hex": "0x3d86001"
"n_bit": "2^26 - 2^21 - 2^19 + 2^15 - 2^13 + 1"
"n_fac": "2^13 * 3^2 * 5^3 * 7 + 1"
"nd": 64511999
"nd_hex": "0x3d85fff"
"nd_bit": "2^26 - 2^21 - 2^19 + 2^15 - 2^13 - 1"
"r2": 64440236
"r2_hex": "0x3d747ac"
"r2_bit": "2^26 - 2^21 - 2^19 - 2^16 + 2^14 + 2^11 - 2^6 - 2^4 - 2^2"
"znprimroot": 13
- "n": 65028097
"n_hex": "0x3e04001"
"n_bit": "2^26 - 2^21 + 2^14 + 1"
"n_fac": "2^14 * 3^4 * 7^2 + 1"
"nd": 65028095
"nd_hex": "0x3e03fff"
"nd_bit": "2^26 - 2^21 + 2^14 - 1"
"r2": 20610029
"r2_hex": "0x13a7bed"
"r2_bit": "2^24 + 2^22 - 2^19 + 2^17 + 2^15 - 2^10 - 2^4 - 2^2 + 1"
"znprimroot": 10
- "n": 60211201
"n_hex": "0x396c001"
"n_bit": "2^26 - 2^23 + 2^21 - 2^19 - 2^16 - 2^14 + 1"
"n_fac": "2^14 * 3 * 5^2 * 7^2 + 1"
"nd": 60211199
"nd_hex": "0x396bfff"
"nd_bit": "2^26 - 2^23 + 2^21 - 2^19 - 2^16 - 2^14 - 1"
"r2": 7844188
"r2_hex": "0x77b15c"
"r2_bit": "2^23 - 2^19 - 2^14 - 2^12 + 2^9 - 2^7 - 2^5 - 2^2"
"znprimroot": 13
- "n": 56770561
"n_hex": "0x3624001"
"n_bit": "2^26 - 2^23 - 2^21 + 2^17 + 2^14 + 1"
"n_fac": "2^14 * 3^2 * 5 * 7 * 11 + 1"
"nd": 56770559
"nd_hex": "0x3623fff"
"nd_bit": "2^26 - 2^23 - 2^21 + 2^17 + 2^14 - 1"
"r2": 49759695
"r2_hex": "0x2f745cf"
"r2_bit": "2^26 - 2^24 - 2^19 - 2^16 + 2^14 + 2^11 - 2^9 - 2^6 + 2^4 - 1"
"znprimroot": 31
- "n": 60456961
"n_hex": "0x39a8001"
"n_bit": "2^26 - 2^23 + 2^21 - 2^19 + 2^17 + 2^15 + 1"
"n_fac": "2^15 * 3^2 * 5 * 41 + 1"
"nd": 60456959
"nd_hex": "0x39a7fff"
"nd_bit": "2^26 - 2^23 + 2^21 - 2^19 + 2^17 + 2^15 - 1"
"r2": 28792080
"r2_hex": "0x1b75510"
"r2_bit": "2^25 - 2^22 - 2^19 - 2^16 + 2^14 + 2^12 + 2^10 + 2^8 + 2^4"
"znprimroot": 7
- "n": 58490881
"n_hex": "0x37c8001"
"n_bit": "2^26 - 2^23 - 2^18 + 2^15 + 1"
"n_fac": "2^15 * 3 * 5 * 7 * 17 + 1"
"nd": 58490879
"nd_hex": "0x37c7fff"
"nd_bit": "2^26 - 2^23 - 2^18 + 2^15 - 1"
"r2": 15966205
"r2_hex": "0xf39ffd"
"r2_bit": "2^24 - 2^20 + 2^18 - 2^15 + 2^13 - 2^2 + 1"
"znprimroot": 26
- "n": 30965761
"n_hex": "0x1d88001"
"n_bit": "2^25 - 2^21 - 2^19 + 2^15 + 1"
"n_fac": "2^15 * 3^3 * 5 * 7 + 1"
"nd": 30965759
"nd_hex": "0x1d87fff"
"nd_bit": "2^25 - 2^21 - 2^19 + 2^15 - 1"
"r2": 9456295
"r2_hex": "0x904aa7"
"r2_bit": "2^23 + 2^20 + 2^14 + 2^11 + 2^9 + 2^7 + 2^5 + 2^3 - 1"
"znprimroot": 39
- "n": 67043329
"n_hex": "0x3ff0001"
"n_bit": "2^26 - 2^16 + 1"
"n_fac": "2^16 * 3 * 11 * 31 + 1"
"nd": 67043327
"nd_hex": "0x3feffff"
"nd_bit": "2^26 - 2^16 - 1"
"r2": 4063169
"r2_hex": "0x3dffc1"
"r2_bit": "2^22 - 2^17 - 2^6 + 1"
"znprimroot": 7
- "n": 63897601
"n_hex": "0x3cf0001"
"n_bit": "2^26 - 2^22 + 2^20 - 2^16 + 1"
"n_fac": "2^16 * 3 * 5^2 * 13 + 1"
"nd": 63897599
"nd_hex": "0x3ceffff"
"nd_bit": "2^26 - 2^22 + 2^20 - 2^16 - 1"
"r2": 31820183
"r2_hex": "0x1e58997"
"r2_bit": "2^25 - 2^21 + 2^19 - 2^17 - 2^15 + 2^11 + 2^9 - 2^7 + 2^5 - 2^3 - 1"
"znprimroot": 7
- "n": 48168961
"n_hex": "0x2df0001"
"n_bit": "2^26 - 2^24 - 2^21 - 2^16 + 1"
"n_fac": "2^16 * 3 * 5 * 7^2 + 1"
"nd": 48168959
"nd_hex": "0x2deffff"
"nd_bit": "2^26 - 2^24 - 2^21 - 2^16 - 1"
"r2": 37313972
"r2_hex": "0x2395db4"
"r2_bit": "2^25 + 2^22 - 2^19 + 2^17 - 2^15 - 2^13 - 2^9 - 2^6 - 2^4 + 2^2"
"znprimroot": 17
- "n": 65929217
"n_hex": "0x3ee0001"
"n_bit": "2^26 - 2^20 - 2^17 + 1"
"n_fac": "2^17 * 503 + 1"
"nd": 65929215
"nd_hex": "0x3edffff"
"nd_bit": "2^26 - 2^20 - 2^17 - 1"
"r2": 64990607
"r2_hex": "0x3dfad8f"
"r2_bit": "2^26 - 2^21 - 2^14 - 2^12 - 2^9 - 2^7 + 2^4 - 1"
"znprimroot": 3
- "n": 49152001
"n_hex": "0x2ee0001"
"n_bit": "2^26 - 2^24 - 2^20 - 2^17 + 1"
"n_fac": "2^17 * 3 * 5^3 + 1"
"nd": 49151999
"nd_hex": "0x2edffff"
"nd_bit": "2^26 - 2^24 - 2^20 - 2^17 - 1"
"r2": 5760529
"r2_hex": "0x57e611"
"r2_bit": "2^23 - 2^21 - 2^19 - 2^13 + 2^11 - 2^9 + 2^4 + 1"
"znprimroot": 7
- "n": 64749569
"n_hex": "0x3dc0001"
"n_bit": "2^26 - 2^21 - 2^18 + 1"
"n_fac": "2^18 * 13 * 19 + 1"
"nd": 64749567
"nd_hex": "0x3dbffff"
"nd_bit": "2^26 - 2^21 - 2^18 - 1"
"r2": 11448371
"r2_hex": "0xaeb033"
"r2_bit": "2^24 - 2^22 - 2^20 - 2^16 - 2^14 - 2^12 + 2^6 - 2^4 + 2^2 - 1"
"znprimroot": 6
- "n": 63700993
"n_hex": "0x3cc0001"
"n_bit": "2^26 - 2^22 + 2^20 - 2^18 + 1"
"n_fac": "2^18 * 3^5 + 1"
"nd": 63700991
"nd_hex": "0x3cbffff"
"nd_bit": "2^26 - 2^22 + 2^20 - 2^18 - 1"
"r2": 1914839
"r2_hex": "0x1d37d7"
"r2_bit": "2^21 - 2^18 + 2^16 + 2^14 - 2^11 - 2^5 - 2^3 - 1"
"znprimroot": 5
- "n": 35389441
"n_hex": "0x21c0001"
"n_bit": "2^25 + 2^21 - 2^18 + 1"
"n_fac": "2^18 * 3^3 * 5 + 1"
"nd": 35389439
"nd_hex": "0x21bffff"
"nd_bit": "2^25 + 2^21 - 2^18 - 1"
"r2": 23212370
"r2_hex": "0x1623152"
"r2_bit": "2^25 - 2^23 - 2^21 + 2^17 + 2^14 - 2^12 + 2^8 + 2^6 + 2^4 + 2"
"znprimroot": 7
- "n": 40370177
"n_hex": "0x2680001"
"n_bit": "2^25 + 2^23 - 2^21 + 2^19 + 1"
"n_fac": "2^19 * 7 * 11 + 1"
"nd": 40370175
"nd_hex": "0x267ffff"
"nd_bit": "2^25 + 2^23 - 2^21 + 2^19 - 1"
"r2": 13747243
"r2_hex": "0xd1c42b"
"r2_bit": "2^24 - 2^22 + 2^20 + 2^17 - 2^14 + 2^10 + 2^6 - 2^4 - 2^2 - 1"
"znprimroot": 3
- "n": 36175873
"n_hex": "0x2280001"
"n_bit": "2^25 + 2^21 + 2^19 + 1"
"n_fac": "2^19 * 3 * 23 + 1"
"nd": 36175871
"nd_hex": "0x227ffff"
"nd_bit": "2^25 + 2^21 + 2^19 - 1"
"r2": 8677350
"r2_hex": "0x8467e6"
"r2_bit": "2^23 + 2^18 + 2^15 - 2^13 + 2^11 - 2^5 + 2^3 - 2"
"znprimroot": 7
- "n": 28311553
"n_hex": "0x1b00001"
"n_bit": "2^25 - 2^22 - 2^20 + 1"
"n_fac": "2^20 * 3^3 + 1"
"nd": 28311551
"nd_hex": "0x1afffff"
"nd_bit": "2^25 - 2^22 - 2^20 - 1"
"r2": 5553575
"r2_hex": "0x54bda7"
"r2_bit": "2^22 + 2^20 + 2^18 + 2^16 - 2^14 - 2^9 - 2^7 + 2^5 + 2^3 - 1"
"znprimroot": 5
- "n": 23068673
"n_hex": "0x1600001"
"n_bit": "2^25 - 2^23 - 2^21 + 1"
"n_fac": "2^21 * 11 + 1"
"nd": 23068671
"nd_hex": "0x15fffff"
"nd_bit": "2^25 - 2^23 - 2^21 - 1"
"r2": 16586575
"r2_hex": "0xfd174f"
"r2_bit": "2^24 - 2^18 + 2^16 + 2^13 - 2^11 - 2^8 + 2^6 + 2^4 - 1"
"znprimroot": 3
- "r": 30
"primes":
- "n": 1073741719
"n_hex": "0x3fffff97"
"n_bit": "2^30 - 2^7 + 2^5 - 2^3 - 1"
"n_fac": "2 * 3 * 7 * 19 * 1345541 + 1"
"nd": 419270617
"nd_hex": "0x18fd8fd9"
"nd_bit": "2^29 - 2^27 + 2^24 - 2^17 - 2^15 + 2^12 - 2^5 - 2^3 + 1"
"r2": 11025
"r2_hex": "0x2b11"
"r2_bit": "2^14 - 2^12 - 2^10 - 2^8 + 2^4 + 1"
"znprimroot": 6
- "n": 1073741671
"n_hex": "0x3fffff67"
"n_bit": "2^30 - 2^7 - 2^5 + 2^3 - 1"
"n_fac": "2 * 3^5 * 5 * 73 * 6053 + 1"
"nd": 687756201
"nd_hex": "0x28fe53a9"
"nd_bit": "2^29 + 2^27 + 2^24 - 2^17 + 2^14 + 2^12 + 2^10 - 2^7 + 2^5 + 2^3 + 1"
"r2": 23409
"r2_hex": "0x5b71"
"r2_bit": "2^15 - 2^13 - 2^10 - 2^7 - 2^4 + 1"
"znprimroot": 6
- "n": 1073741789
"n_hex": "0x3fffffdd"
"n_bit": "2^30 - 2^5 - 2^2 + 1"
"n_fac": "2^2 * 7 * 2341 * 16381 + 1"
"nd": 184070027
"nd_hex": "0xaf8af8b"
"nd_bit": "2^28 - 2^26 - 2^24 - 2^19 + 2^16 - 2^14 - 2^12 - 2^7 + 2^4 - 2^2 - 1"
"r2": 1225
"r2_hex": "0x4c9"
"r2_bit": "2^10 + 2^8 - 2^6 + 2^3 + 1"
"znprimroot": 2
- "n": 1073741101
"n_hex": "0x3ffffd2d"
"n_bit": "2^30 - 2^10 + 2^8 + 2^6 - 2^4 - 2^2 + 1"
"n_fac": "2^2 * 3 * 5^2 * 101 * 35437 + 1"
"nd": 452961627
"nd_hex": "0x1affa55b"
"nd_bit": "2^29 - 2^26 - 2^24 - 2^15 + 2^13 + 2^11 - 2^9 - 2^7 - 2^5 - 2^2 - 1"
"r2": 522729
"r2_hex": "0x7f9e9"
"r2_bit": "2^19 - 2^11 + 2^9 - 2^5 + 2^3 + 1"
"znprimroot": 10
- "n": 1073740501
"n_hex": "0x3ffffad5"
"n_bit": "2^30 - 2^10 - 2^8 - 2^6 + 2^4 + 2^2 + 1"
"n_fac": "2^2 * 3^2 * 5^3 * 7 * 89 * 383 + 1"
"nd": 254841219
"nd_hex": "0xf309183"
"nd_bit": "2^28 - 2^24 + 2^22 - 2^20 + 2^15 + 2^12 + 2^9 - 2^7 + 2^2 - 1"
"r2": 1750329
"r2_hex": "0x1ab539"
"r2_bit": "2^21 - 2^18 - 2^16 - 2^14 - 2^12 + 2^10 + 2^8 + 2^6 - 2^3 + 1"
"znprimroot": 6
- "n": 1073741689
"n_hex": "0x3fffff79"
"n_bit": "2^30 - 2^7 - 2^3 + 1"
"n_fac": "2^3 * 3^2 * 14913079 + 1"
"nd": 564708663
"nd_hex": "0x21a8c537"
"nd_bit": "2^29 + 2^25 - 2^23 + 2^21 + 2^19 + 2^16 - 2^14 + 2^10 + 2^8 + 2^6 - 2^3 - 1"
"r2": 18225
"r2_hex": "0x4731"
"r2_bit": "2^14 + 2^11 - 2^8 + 2^6 - 2^4 + 1"
"znprimroot": 13
- "n": 1073740201
"n_hex": "0x3ffff9a9"
"n_bit": "2^30 - 2^11 + 2^9 - 2^7 + 2^5 + 2^3 + 1"
"n_fac": "2^3 * 3 * 5^2 * 13 * 137659 + 1"
"nd": 922240359
"nd_hex": "0x36f84567"
"nd_bit": "2^30 - 2^27 - 2^24 - 2^19 + 2^14 + 2^11 - 2^9 - 2^7 - 2^5 + 2^3 - 1"
"r2": 2634129
"r2_hex": "0x283191"
"r2_bit": "2^21 + 2^19 + 2^14 - 2^12 + 2^9 - 2^7 + 2^4 + 1"
"znprimroot": 11
- "n": 1073738521
"n_hex": "0x3ffff319"
"n_bit": "2^30 - 2^12 + 2^10 - 2^8 + 2^5 - 2^3 + 1"
"n_fac": "2^3 * 3^2 * 5 * 37 * 80611 + 1"
"nd": 341984983
"nd_hex": "0x146246d7"
"nd_bit": "2^28 + 2^26 + 2^23 - 2^21 + 2^17 + 2^14 + 2^11 - 2^8 - 2^5 - 2^3 - 1"
"r2": 10909809
"r2_hex": "0xa67871"
"r2_bit": "2^23 + 2^21 + 2^19 - 2^17 + 2^15 - 2^11 + 2^7 - 2^4 + 1"
"znprimroot": 13
- "n": 1073734201
"n_hex": "0x3fffe239"
"n_bit": "2^30 - 2^13 + 2^9 + 2^6 - 2^3 + 1"
"n_fac": "2^3 * 3^2 * 5^2 * 7 * 11 * 61 * 127 + 1"
"nd": 585536503
"nd_hex": "0x22e693f7"
"nd_bit": "2^29 + 2^26 - 2^24 - 2^21 + 2^19 - 2^17 + 2^15 + 2^12 + 2^10 - 2^3 - 1"
"r2": 58110129
"r2_hex": "0x376b0b1"
"r2_bit": "2^26 - 2^23 - 2^19 - 2^16 - 2^14 - 2^12 + 2^8 - 2^6 - 2^4 + 1"
"znprimroot": 13
- "n": 1073741329
"n_hex": "0x3ffffe11"
"n_bit": "2^30 - 2^9 + 2^4 + 1"
"n_fac": "2^4 * 3^2 * 11 * 701 * 967 + 1"
"nd": 642075919
"nd_hex": "0x26454d0f"
"nd_bit": "2^29 + 2^27 - 2^25 + 2^22 + 2^18 + 2^16 + 2^14 + 2^12 - 2^10 + 2^8 + 2^4 - 1"
"r2": 245025
"r2_hex": "0x3bd21"
"r2_bit": "2^18 - 2^14 - 2^10 + 2^8 + 2^5 + 1"
"znprimroot": 7
- "n": 1073738161
"n_hex": "0x3ffff1b1"
"n_bit": "2^30 - 2^12 + 2^9 - 2^6 - 2^4 + 1"
"n_fac": "2^4 * 3^3 * 5 * 11 * 45191 + 1"
"nd": 957368495
"nd_hex": "0x391048af"
"nd_bit": "2^30 - 2^27 + 2^24 + 2^20 + 2^14 + 2^11 + 2^8 - 2^6 - 2^4 - 1"
"r2": 13417569
"r2_hex": "0xccbc61"
"r2_bit": "2^24 - 2^22 + 2^20 - 2^18 + 2^16 - 2^14 - 2^10 + 2^7 - 2^5 + 1"
"znprimroot": 7
- "n": 1073656081
"n_hex": "0x3ffeb111"
"n_bit": "2^30 - 2^16 - 2^14 - 2^12 + 2^8 + 2^4 + 1"
"n_fac": "2^4 * 3^3 * 5 * 7 * 17 * 4177 + 1"
"nd": 450469903
"nd_hex": "0x1ad9a00f"
"nd_bit": "2^29 - 2^26 - 2^24 - 2^21 - 2^19 + 2^17 - 2^15 + 2^13 + 2^4 - 1"
"r2": 909925563
"r2_hex": "0x363c5cbb"
"r2_bit": "2^30 - 2^27 - 2^25 + 2^22 - 2^18 + 2^15 - 2^13 - 2^10 + 2^8 - 2^6 - 2^2 - 1"
"znprimroot": 38
- "n": 1073739361
"n_hex": "0x3ffff661"
"n_bit": "2^30 - 2^11 - 2^9 + 2^7 - 2^5 + 1"
"n_fac": "2^5 * 3 * 5 * 23 * 97259 + 1"
"nd": 15258207
"nd_hex": "0xe8d25f"
"nd_bit": "2^24 - 2^21 + 2^19 + 2^16 - 2^14 + 2^12 + 2^9 + 2^7 - 2^5 - 1"
"r2": 6066369
"r2_hex": "0x5c90c1"
"r2_bit": "2^23 - 2^21 - 2^18 + 2^15 + 2^12 + 2^8 - 2^6 + 1"
"znprimroot": 11
- "n": 1073724961
"n_hex": "0x3fffbe21"
"n_bit": "2^30 - 2^14 - 2^9 + 2^5 + 1"
"n_fac": "2^5 * 3 * 5 * 7 * 11^2 * 19 * 139 + 1"
"nd": 191150623
"nd_hex": "0xb64ba1f"
"nd_bit": "2^28 - 2^26 - 2^23 - 2^21 + 2^18 + 2^16 - 2^14 - 2^11 + 2^9 + 2^5 - 1"
"r2": 284360769
"r2_hex": "0x10f30041"
"r2_bit": "2^28 + 2^24 - 2^20 + 2^18 - 2^16 + 2^6 + 1"
"znprimroot": 23
- "n": 1073590561
"n_hex": "0x3ffdb121"
"n_bit": "2^30 - 2^17 - 2^14 - 2^12 + 2^8 + 2^5 + 1"
"n_fac": "2^5 * 3^2 * 5 * 7 * 73 * 1459 + 1"
"nd": 499969311
"nd_hex": "0x1dcced1f"
"nd_bit": "2^29 - 2^25 - 2^22 + 2^20 - 2^18 + 2^16 - 2^12 - 2^10 + 2^8 + 2^5 - 1"
"r2": 335093388
"r2_hex": "0x13f91e8c"
"r2_bit": "2^28 + 2^26 - 2^19 + 2^16 + 2^13 - 2^9 + 2^7 + 2^4 - 2^2"
"znprimroot": 11
- "n": 1073740609
"n_hex": "0x3ffffb41"
"n_bit": "2^30 - 2^10 - 2^8 + 2^6 + 1"
"n_fac": "2^6 * 3^2 * 613 * 3041 + 1"
"nd": 62745407
"nd_hex": "0x3bd6b3f"
"nd_bit": "2^26 - 2^22 - 2^17 - 2^15 - 2^12 - 2^10 - 2^8 + 2^6 - 1"
"r2": 1476225
"r2_hex": "0x168681"
"r2_bit": "2^21 - 2^19 - 2^17 + 2^15 + 2^11 - 2^9 + 2^7 + 1"
"znprimroot": 13
- "n": 1073718721
"n_hex": "0x3fffa5c1"
"n_bit": "2^30 - 2^15 + 2^13 + 2^11 - 2^9 - 2^6 + 1"
"n_fac": "2^6 * 3^3 * 5 * 151 * 823 + 1"
"nd": 189437375
"nd_hex": "0xb4a95bf"
"nd_bit": "2^28 - 2^26 - 2^24 + 2^22 + 2^19 + 2^17 + 2^15 + 2^13 - 2^11 - 2^9 - 2^6 - 1"
"r2": 533748609
"r2_hex": "0x1fd05b81"
"r2_bit": "2^29 - 2^22 + 2^20 + 2^15 - 2^13 - 2^10 - 2^7 + 1"
"znprimroot": 19
- "n": 1073714881
"n_hex": "0x3fff96c1"
"n_bit": "2^30 - 2^15 + 2^13 - 2^11 - 2^8 - 2^6 + 1"
"n_fac": "2^6 * 3 * 5 * 7 * 159779 + 1"
"nd": 172361407
"nd_hex": "0xa4606bf"
"nd_bit": "2^27 + 2^25 + 2^22 + 2^19 - 2^17 + 2^11 - 2^8 - 2^6 - 1"
"r2": 725925249
"r2_hex": "0x2b44bd81"
"r2_bit": "2^30 - 2^28 - 2^26 - 2^24 + 2^22 + 2^18 + 2^16 - 2^14 - 2^9 - 2^7 + 1"
"znprimroot": 11
- "n": 1073499841
"n_hex": "0x3ffc4ec1"
"n_bit": "2^30 - 2^18 + 2^14 + 2^12 - 2^8 - 2^6 + 1"
"n_fac": "2^6 * 3^2 * 5 * 7^2 * 7607 + 1"
"nd": 567197375
"nd_hex": "0x21cebebf"
"nd_bit": "2^29 + 2^25 - 2^22 + 2^20 - 2^16 - 2^14 - 2^8 - 2^6 - 1"
"r2": 586780875
"r2_hex": "0x22f990cb"
"r2_bit": "2^29 + 2^26 - 2^24 - 2^19 + 2^17 - 2^15 + 2^12 + 2^8 - 2^6 + 2^4 - 2^2 - 1"
"znprimroot": 11
- "n": 1073741441
"n_hex": "0x3ffffe81"
"n_bit": "2^30 - 2^9 + 2^7 + 1"
"n_fac": "2^7 * 5 * 1677721 + 1"
"nd": 748535423
"nd_hex": "0x2c9dbe7f"
"nd_bit": "2^30 - 2^28 - 2^26 + 2^23 + 2^21 - 2^17 - 2^14 - 2^9 + 2^7 - 1"
"r2": 146689
"r2_hex": "0x23d01"
"r2_bit": "2^17 + 2^14 - 2^10 + 2^8 + 1"
"znprimroot": 3
- "n": 1073739649
"n_hex": "0x3ffff781"
"n_bit": "2^30 - 2^11 - 2^7 + 1"
"n_fac": "2^7 * 3 * 223 * 12539 + 1"
"nd": 160937855
"nd_hex": "0x997b77f"
"nd_bit": "2^27 + 2^25 - 2^23 + 2^21 - 2^19 - 2^14 - 2^11 - 2^7 - 1"
"r2": 4730625
"r2_hex": "0x482f01"
"r2_bit": "2^22 + 2^19 + 2^14 - 2^12 - 2^8 + 1"
"znprimroot": 13
- "n": 1073731201
"n_hex": "0x3fffd681"
"n_bit": "2^30 - 2^13 - 2^11 - 2^9 + 2^7 + 1"
"n_fac": "2^7 * 3 * 5^2 * 111847 + 1"
"nd": 937793151
"nd_hex": "0x37e5967f"
"nd_bit": "2^30 - 2^27 - 2^21 + 2^19 - 2^17 - 2^15 + 2^13 - 2^11 - 2^9 + 2^7 - 1"
"r2": 112848129
"r2_hex": "0x6b9ed01"
"r2_bit": "2^27 - 2^24 - 2^22 - 2^19 + 2^17 - 2^12 - 2^10 + 2^8 + 1"
"znprimroot": 43
- "n": 1073730817
"n_hex": "0x3fffd501"
"n_bit": "2^30 - 2^14 + 2^12 + 2^10 + 2^8 + 1"
"n_fac": "2^8 * 3^4 * 53 * 977 + 1"
"nd": 633787647
"nd_hex": "0x25c6d4ff"
"nd_bit": "2^29 + 2^27 - 2^25 - 2^22 + 2^19 - 2^16 - 2^14 + 2^12 + 2^10 + 2^8 - 1"
"r2": 121154049
"r2_hex": "0x738aa01"
"r2_bit": "2^27 - 2^24 + 2^22 - 2^19 + 2^15 + 2^13 + 2^11 + 2^9 + 1"
"znprimroot": 5
- "n": 1073675521
"n_hex": "0x3ffefd01"
"n_bit": "2^30 - 2^16 - 2^10 + 2^8 + 1"
"n_fac": "2^8 * 3^3 * 5 * 47 * 661 + 1"
"nd": 519437567
"nd_hex": "0x1ef5fcff"
"nd_bit": "2^29 - 2^24 - 2^19 - 2^17 - 2^10 + 2^8 - 1"
"r2": 101385725
"r2_hex": "0x60b05fd"
"r2_bit": "2^27 - 2^25 + 2^20 - 2^18 - 2^16 + 2^11 - 2^9 - 2^2 + 1"
"znprimroot": 17
- "n": 1073614081
"n_hex": "0x3ffe0d01"
"n_bit": "2^30 - 2^17 + 2^12 - 2^10 + 2^8 + 1"
"n_fac": "2^8 * 3 * 5 * 7 * 11 * 3631 + 1"
"nd": 139791615
"nd_hex": "0x8550cff"
"nd_bit": "2^27 + 2^22 + 2^20 + 2^18 + 2^16 + 2^12 - 2^10 + 2^8 - 1"
"r2": 214062834
"r2_hex": "0xcc256f2"
"r2_bit": "2^28 - 2^26 + 2^24 - 2^22 + 2^17 + 2^15 - 2^13 - 2^11 - 2^8 - 2^4 + 2"
"znprimroot": 26
- "n": 1073726977
"n_hex": "0x3fffc601"
"n_bit": "2^30 - 2^14 + 2^11 - 2^9 + 1"
"n_fac": "2^9 * 3 * 7 * 37 * 2699 + 1"
"nd": 182175231
"nd_hex": "0xadbc5ff"
"nd_bit": "2^28 - 2^26 - 2^24 - 2^21 - 2^18 - 2^14 + 2^11 - 2^9 - 1"
"r2": 220433409
"r2_hex": "0xd238c01"
"r2_bit": "2^28 - 2^26 + 2^24 + 2^21 + 2^18 - 2^15 + 2^12 - 2^10 + 1"
"znprimroot": 5
- "n": 1073702401
"n_hex": "0x3fff6601"
"n_bit": "2^30 - 2^15 - 2^13 + 2^11 - 2^9 + 1"
"n_fac": "2^9 * 3 * 5^2 * 27961 + 1"
"nd": 995845631
"nd_hex": "0x3b5b65ff"
"nd_bit": "2^30 - 2^26 - 2^23 - 2^21 - 2^18 - 2^15 - 2^13 + 2^11 - 2^9 - 1"
"r2": 480470528
"r2_hex": "0x1ca36600"
"r2_bit": "2^29 - 2^26 + 2^23 + 2^21 + 2^18 - 2^15 - 2^13 + 2^11 - 2^9"
"znprimroot": 19
- "n": 1073696257
"n_hex": "0x3fff4e01"
"n_bit": "2^30 - 2^16 + 2^14 + 2^12 - 2^9 + 1"
"n_fac": "2^9 * 3^3 * 101 * 769 + 1"
"nd": 1010519551
"nd_hex": "0x3c3b4dff"
"nd_bit": "2^30 - 2^26 + 2^22 - 2^18 - 2^16 + 2^14 + 2^12 - 2^9 - 1"
"r2": 1002655232
"r2_hex": "0x3bc34e00"
"r2_bit": "2^30 - 2^26 - 2^22 + 2^18 - 2^16 + 2^14 + 2^12 - 2^9"
"znprimroot": 10
- "n": 1073738753
"n_hex": "0x3ffff401"
"n_bit": "2^30 - 2^12 + 2^10 + 1"
"n_fac": "2^10 * 1048573 + 1"
"nd": 1064301567
"nd_hex": "0x3f6ff3ff"
"nd_bit": "2^30 - 2^23 - 2^20 - 2^12 + 2^10 - 1"
"r2": 9431041
"r2_hex": "0x8fe801"
"r2_bit": "2^23 + 2^20 - 2^13 + 2^11 + 1"
"znprimroot": 3
- "n": 1073707009
"n_hex": "0x3fff7801"
"n_bit": "2^30 - 2^15 - 2^11 + 1"
"n_fac": "2^11 * 3 * 11 * 15887 + 1"
"nd": 935294975
"nd_hex": "0x37bf77ff"
"nd_bit": "2^30 - 2^27 - 2^22 - 2^15 - 2^11 - 1"
"r2": 138377216
"r2_hex": "0x83f7800"
"r2_bit": "2^27 + 2^22 - 2^15 - 2^11"
"znprimroot": 23
- "n": 1073682433
"n_hex": "0x3fff1801"
"n_bit": "2^30 - 2^16 + 2^13 - 2^11 + 1"
"n_fac": "2^11 * 3^3 * 19417 + 1"
"nd": 767498239
"nd_hex": "0x2dbf17ff"
"nd_bit": "2^30 - 2^28 - 2^25 - 2^22 - 2^16 + 2^13 - 2^11 - 1"
"r2": 306243582
"r2_hex": "0x1240e7fe"
"r2_bit": "2^28 + 2^25 + 2^22 + 2^16 - 2^13 + 2^11 - 2"
"znprimroot": 5
- "n": 1073510401
"n_hex": "0x3ffc7801"
"n_bit": "2^30 - 2^18 + 2^15 - 2^11 + 1"
"n_fac": "2^11 * 3 * 5^2 * 29 * 241 + 1"
"nd": 129791999
"nd_hex": "0x7bc77ff"
"nd_bit": "2^27 - 2^22 - 2^18 + 2^15 - 2^11 - 1"
"r2": 954595280
"r2_hex": "0x38e5f7d0"
"r2_bit": "2^30 - 2^27 + 2^24 - 2^21 + 2^19 - 2^17 - 2^11 - 2^6 + 2^4"
"znprimroot": 11
- "n": 1073651713
"n_hex": "0x3ffea001"
"n_bit": "2^30 - 2^17 + 2^15 + 2^13 + 1"
"n_fac": "2^13 * 3 * 7 * 79^2 + 1"
"nd": 469671935
"nd_hex": "0x1bfe9fff"
"nd_bit": "2^29 - 2^26 - 2^17 + 2^15 + 2^13 - 1"
"r2": 604430330
"r2_hex": "0x2406dffa"
"r2_bit": "2^29 + 2^26 + 2^19 - 2^16 - 2^13 - 2^3 + 2"
"znprimroot": 10
- "n": 1073692673
"n_hex": "0x3fff4001"
"n_bit": "2^30 - 2^16 + 2^14 + 1"
"n_fac": "2^14 * 13 * 71^2 + 1"
"nd": 805257215
"nd_hex": "0x2fff3fff"
"nd_bit": "2^30 - 2^28 - 2^16 + 2^14 - 1"
"r2": 268435455
"r2_hex": "0xfffffff"
"r2_bit": "2^28 - 1"
"znprimroot": 3
- "n": 1073643521
"n_hex": "0x3ffe8001"
"n_bit": "2^30 - 2^17 + 2^15 + 1"
"n_fac": "2^15 * 5 * 6553 + 1"
"nd": 1073643519
"nd_hex": "0x3ffe7fff"
"nd_bit": "2^30 - 2^17 + 2^15 - 1"
"r2": 688120
"r2_hex": "0xa7ff8"
"r2_bit": "2^19 + 2^17 + 2^15 - 2^3"
"znprimroot": 6
- "n": 1073479681
"n_hex": "0x3ffc0001"
"n_bit": "2^30 - 2^18 + 1"
"n_fac": "2^18 * 3^2 * 5 * 7 * 13 + 1"
"nd": 1073479679
"nd_hex": "0x3ffbffff"
"nd_bit": "2^30 - 2^18 - 1"
"r2": 16252865
"r2_hex": "0xf7ffc1"
"r2_bit": "2^24 - 2^19 - 2^6 + 1"
"znprimroot": 11
- "n": 1056440321
"n_hex": "0x3ef80001"
"n_bit": "2^30 - 2^24 - 2^19 + 1"
"n_fac": "2^19 * 5 * 13 * 31 + 1"
"nd": 1056440319
"nd_hex": "0x3ef7ffff"
"nd_bit": "2^30 - 2^24 - 2^19 - 1"
"r2": 697543980
"r2_hex": "0x2993ad2c"
"r2_bit": "2^29 + 2^27 + 2^25 - 2^23 + 2^20 + 2^18 - 2^14 - 2^12 - 2^10 + 2^8 + 2^6 - 2^4 - 2^2"
"znprimroot": 3
- "n": 1005060097
"n_hex": "0x3be80001"
"n_bit": "2^30 - 2^26 - 2^21 + 2^19 + 1"
"n_fac": "2^19 * 3^3 * 71 + 1"
"nd": 1005060095
"nd_hex": "0x3be7ffff"
"nd_bit": "2^30 - 2^26 - 2^21 + 2^19 - 1"
"r2": 412639819
"r2_hex": "0x1898624b"
"r2_bit": "2^29 - 2^27 + 2^23 + 2^21 - 2^19 + 2^15 - 2^13 + 2^9 + 2^6 + 2^4 - 2^2 - 1"
"znprimroot": 5
- "n": 825753601
"n_hex": "0x31380001"
"n_bit": "2^30 - 2^28 + 2^24 + 2^22 - 2^19 + 1"
"n_fac": "2^19 * 3^2 * 5^2 * 7 + 1"
"nd": 825753599
"nd_hex": "0x3137ffff"
"nd_bit": "2^30 - 2^28 + 2^24 + 2^22 - 2^19 - 1"
"r2": 767531337
"r2_hex": "0x2dbf9949"
"r2_bit": "2^30 - 2^28 - 2^25 - 2^22 - 2^15 + 2^13 - 2^11 + 2^8 + 2^6 + 2^3 + 1"
"znprimroot": 23
- "n": 1053818881
"n_hex": "0x3ed00001"
"n_bit": "2^30 - 2^24 - 2^22 + 2^20 + 1"
"n_fac": "2^20 * 3 * 5 * 67 + 1"
"nd": 1053818879
"nd_hex": "0x3ecfffff"
"nd_bit": "2^30 - 2^24 - 2^22 + 2^20 - 1"
"r2": 668614837
"r2_hex": "0x27da40b5"
"r2_bit": "2^29 + 2^27 - 2^21 - 2^19 + 2^17 + 2^14 + 2^8 - 2^6 - 2^4 + 2^2 + 1"
"znprimroot": 7
- "n": 972029953
"n_hex": "0x39f00001"
"n_bit": "2^30 - 2^27 + 2^25 - 2^20 + 1"
"n_fac": "2^20 * 3^2 * 103 + 1"
"nd": 972029951
"nd_hex": "0x39efffff"
"nd_bit": "2^30 - 2^27 + 2^25 - 2^20 - 1"
"r2": 604871124
"r2_hex": "0x240d99d4"
"r2_bit": "2^29 + 2^26 + 2^20 - 2^17 - 2^15 + 2^13 - 2^11 + 2^9 - 2^6 + 2^4 + 2^2"
"znprimroot": 10
- "n": 330301441
"n_hex": "0x13b00001"
"n_bit": "2^28 + 2^26 - 2^22 - 2^20 + 1"
"n_fac": "2^20 * 3^2 * 5 * 7 + 1"
"nd": 330301439
"nd_hex": "0x13afffff"
"nd_bit": "2^28 + 2^26 - 2^22 - 2^20 - 1"
"r2": 159579963
"r2_hex": "0x982ff3b"
"r2_bit": "2^27 + 2^25 - 2^23 + 2^18 - 2^16 - 2^8 + 2^6 - 2^2 - 1"
"znprimroot": 22
- "n": 1012924417
"n_hex": "0x3c600001"
"n_bit": "2^30 - 2^26 + 2^23 - 2^21 + 1"
"n_fac": "2^21 * 3 * 7 * 23 + 1"
"nd": 1012924415
"nd_hex": "0x3c5fffff"
"nd_bit": "2^30 - 2^26 + 2^23 - 2^21 - 1"
"r2": 684214295
"r2_hex": "0x28c84817"
"r2_bit": "2^29 + 2^27 + 2^24 - 2^22 + 2^19 + 2^14 + 2^11 + 2^5 - 2^3 - 1"
"znprimroot": 5
- "n": 975175681
"n_hex": "0x3a200001"
"n_bit": "2^30 - 2^27 + 2^25 + 2^21 + 1"
"n_fac": "2^21 * 3 * 5 * 31 + 1"
"nd": 975175679
"nd_hex": "0x3a1fffff"
"nd_bit": "2^30 - 2^27 + 2^25 + 2^21 - 1"
"r2": 281541530
"r2_hex": "0x10c7fb9a"
"r2_bit": "2^28 + 2^24 - 2^22 + 2^19 - 2^10 - 2^7 + 2^5 - 2^3 + 2"
"znprimroot": 17
- "n": 962592769
"n_hex": "0x39600001"
"n_bit": "2^30 - 2^27 + 2^25 - 2^23 - 2^21 + 1"
"n_fac": "2^21 * 3^3 * 17 + 1"
"nd": 962592767
"nd_hex": "0x395fffff"
"nd_bit": "2^30 - 2^27 + 2^25 - 2^23 - 2^21 - 1"
"r2": 461122149
"r2_hex": "0x1b7c2a65"
"r2_bit": "2^29 - 2^26 - 2^23 - 2^18 + 2^13 + 2^11 + 2^9 + 2^7 - 2^5 + 2^2 + 1"
"znprimroot": 7
- "n": 943718401
"n_hex": "0x38400001"
"n_bit": "2^30 - 2^27 + 2^22 + 1"
"n_fac": "2^22 * 3^2 * 5^2 + 1"
"nd": 943718399
"nd_hex": "0x383fffff"
"nd_bit": "2^30 - 2^27 + 2^22 - 1"
"r2": 116303391
"r2_hex": "0x6eea61f"
"r2_bit": "2^27 - 2^24 - 2^20 - 2^17 + 2^15 + 2^13 + 2^11 - 2^9 + 2^5 - 1"
"znprimroot": 7
- "n": 998244353
"n_hex": "0x3b800001"
"n_bit": "2^30 - 2^26 - 2^23 + 1"
"n_fac": "2^23 * 7 * 17 + 1"
"nd": 998244351
"nd_hex": "0x3b7fffff"
"nd_bit": "2^30 - 2^26 - 2^23 - 1"
"r2": 682155965
"r2_hex": "0x28a8dfbd"
"r2_bit": "2^29 + 2^27 + 2^23 + 2^21 + 2^19 + 2^16 - 2^13 - 2^6 - 2^2 + 1"
"znprimroot": 3
- "n": 880803841
"n_hex": "0x34800001"
"n_bit": "2^30 - 2^28 + 2^26 + 2^23 + 1"
"n_fac": "2^23 * 3 * 5 * 7 + 1"
"nd": 880803839
"nd_hex": "0x347fffff"
"nd_bit": "2^30 - 2^28 + 2^26 + 2^23 - 1"
"r2": 469442484
"r2_hex": "0x1bfb1fb4"
"r2_bit": "2^29 - 2^26 - 2^18 - 2^16 + 2^13 - 2^6 - 2^4 + 2^2"
"znprimroot": 26
- "n": 754974721
"n_hex": "0x2d000001"
"n_bit": "2^30 - 2^28 - 2^26 + 2^24 + 1"
"n_fac": "2^24 * 3^2 * 5 + 1"
"nd": 754974719
"nd_hex": "0x2cffffff"
"nd_bit": "2^30 - 2^28 - 2^26 + 2^24 - 1"
"r2": 754601896
"r2_hex": "0x2cfa4fa8"
"r2_bit": "2^30 - 2^28 - 2^26 + 2^24 - 2^19 + 2^17 + 2^14 + 2^12 - 2^7 + 2^5 + 2^3"
"znprimroot": 11
- "n": 469762049
"n_hex": "0x1c000001"
"n_bit": "2^29 - 2^26 + 1"
"n_fac": "2^26 * 7 + 1"
"nd": 469762047
"nd_hex": "0x1bffffff"
"nd_bit": "2^29 - 2^26 - 1"
"r2": 28760947
"r2_hex": "0x1b6db73"
"r2_bit": "2^25 - 2^22 - 2^19 - 2^16 - 2^13 - 2^10 - 2^7 - 2^4 + 2^2 - 1"
"znprimroot": 3
- "r": 31
"primes":
- "n": 2147483647
"n_hex": "0x7fffffff"
"n_bit": "2^31 - 1"
"n_fac": "2 * 3^2 * 7 * 11 * 31 * 151 * 331 + 1"
"nd": 1
"nd_hex": "0x1"
"nd_bit": "1"
"r2": 1
"r2_hex": "0x1"
"r2_bit": "1"
"znprimroot": 7
- "n": 2147482951
"n_hex": "0x7ffffd47"
"n_bit": "2^31 - 2^10 + 2^8 + 2^6 + 2^3 - 1"
"n_fac": "2 * 3 * 5^2 * 14316553 + 1"
"nd": 569992073
"nd_hex": "0x21f96389"
"nd_bit": "2^29 + 2^25 - 2^19 + 2^17 - 2^15 - 2^13 + 2^10 - 2^7 + 2^3 + 1"
"r2": 485809
"r2_hex": "0x769b1"
"r2_bit": "2^19 - 2^15 - 2^13 + 2^11 + 2^9 - 2^6 - 2^4 + 1"
"znprimroot": 6
- "n": 2147483629
"n_hex": "0x7fffffed"
"n_bit": "2^31 - 2^4 - 2^2 + 1"
"n_fac": "2^2 * 3^2 * 59652323 + 1"
"nd": 678152731
"nd_hex": "0x286bca1b"
"nd_bit": "2^29 + 2^27 + 2^23 - 2^20 - 2^18 - 2^14 + 2^11 + 2^9 + 2^5 - 2^2 - 1"
"r2": 361
"r2_hex": "0x169"
"r2_bit": "2^9 - 2^7 - 2^5 + 2^3 + 1"
"znprimroot": 2
- "n": 2147483497
"n_hex": "0x7fffff69"
"n_bit": "2^31 - 2^7 - 2^5 + 2^3 + 1"
"n_fac": "2^3 * 3 * 277 * 323027 + 1"
"nd": 1066630951
"nd_hex": "0x3f937f27"
"nd_bit": "2^30 - 2^23 + 2^20 + 2^18 - 2^15 - 2^8 + 2^5 + 2^3 - 1"
"r2": 22801
"r2_hex": "0x5911"
"r2_bit": "2^15 - 2^13 - 2^11 + 2^8 + 2^4 + 1"
"znprimroot": 5
- "n": 2147482921
"n_hex": "0x7ffffd29"
"n_bit": "2^31 - 2^10 + 2^8 + 2^5 + 2^3 + 1"
"n_fac": "2^3 * 3 * 5 * 11 * 1626881 + 1"
"nd": 1420824807
"nd_hex": "0x54b010e7"
"nd_bit": "2^30 + 2^28 + 2^26 + 2^24 - 2^22 - 2^20 + 2^12 + 2^8 - 2^5 + 2^3 - 1"
"r2": 528529
"r2_hex": "0x81091"
"r2_bit": "2^19 + 2^12 + 2^7 + 2^4 + 1"
"znprimroot": 21
- "n": 2147482873
"n_hex": "0x7ffffcf9"
"n_bit": "2^31 - 2^10 + 2^8 - 2^3 + 1"
"n_fac": "2^3 * 3^2 * 4451 * 6701 + 1"
"nd": 728758967
"nd_hex": "0x2b6ffab7"
"nd_bit": "2^30 - 2^28 - 2^26 - 2^23 - 2^20 - 2^10 - 2^8 - 2^6 - 2^3 - 1"
"r2": 600625
"r2_hex": "0x92a31"
"r2_bit": "2^19 + 2^16 + 2^13 + 2^11 + 2^9 + 2^6 - 2^4 + 1"
"znprimroot": 11
- "n": 2147482681
"n_hex": "0x7ffffc39"
"n_bit": "2^31 - 2^10 + 2^6 - 2^3 + 1"
"n_fac": "2^3 * 3 * 5 * 7 * 1093 * 2339 + 1"
"nd": 257609207
"nd_hex": "0xf5acdf7"
"nd_bit": "2^28 - 2^23 - 2^21 - 2^18 - 2^16 - 2^14 + 2^12 - 2^9 - 2^3 - 1"
"r2": 935089
"r2_hex": "0xe44b1"
"r2_bit": "2^20 - 2^17 + 2^14 + 2^10 + 2^8 - 2^6 - 2^4 + 1"
"znprimroot": 13
- "n": 2147482801
"n_hex": "0x7ffffcb1"
"n_bit": "2^31 - 2^10 + 2^8 - 2^6 - 2^4 + 1"
"n_fac": "2^4 * 3^3 * 5^2 * 198841 + 1"
"nd": 2048603055
"nd_hex": "0x7a1b33af"
"nd_bit": "2^31 - 2^27 + 2^25 + 2^21 - 2^18 - 2^16 + 2^14 - 2^12 + 2^10 - 2^6 - 2^4 - 1"
"r2": 717409
"r2_hex": "0xaf261"
"r2_bit": "2^20 - 2^18 - 2^16 - 2^12 + 2^9 + 2^7 - 2^5 + 1"
"znprimroot": 22
- "n": 2147478481
"n_hex": "0x7fffebd1"
"n_bit": "2^31 - 2^12 - 2^10 - 2^6 + 2^4 + 1"
"n_fac": "2^4 * 3^5 * 5 * 7 * 43 * 367 + 1"
"nd": 935965391
"nd_hex": "0x37c9b2cf"
"nd_bit": "2^30 - 2^27 - 2^22 + 2^19 + 2^17 - 2^14 - 2^12 + 2^10 - 2^8 - 2^6 + 2^4 - 1"
"r2": 26697889
"r2_hex": "0x19760a1"
"r2_bit": "2^25 - 2^23 + 2^21 - 2^19 - 2^15 - 2^13 + 2^7 + 2^5 + 1"
"znprimroot": 13
- "n": 2147483489
"n_hex": "0x7fffff61"
"n_bit": "2^31 - 2^7 - 2^5 + 1"
"n_fac": "2^5 * 67108859 + 1"
"nd": 783358815
"nd_hex": "0x2eb11b5f"
"nd_bit": "2^30 - 2^28 - 2^24 - 2^22 - 2^20 + 2^16 + 2^13 - 2^10 - 2^7 - 2^5 - 1"
"r2": 25281
"r2_hex": "0x62c1"
"r2_bit": "2^15 - 2^13 + 2^10 - 2^8 - 2^6 + 1"
"znprimroot": 3
- "n": 2147482081
"n_hex": "0x7ffff9e1"
"n_bit": "2^31 - 2^11 + 2^9 - 2^5 + 1"
"n_fac": "2^5 * 3^2 * 5 * 911 * 1637 + 1"
"nd": 201455071
"nd_hex": "0xc01f5df"
"nd_bit": "2^28 - 2^26 + 2^17 - 2^11 - 2^9 - 2^5 - 1"
"r2": 2455489
"r2_hex": "0x2577c1"
"r2_bit": "2^21 + 2^19 - 2^17 - 2^15 - 2^11 - 2^6 + 1"
"znprimroot": 11
- "n": 2147480161
"n_hex": "0x7ffff261"
"n_bit": "2^31 - 2^12 + 2^9 + 2^7 - 2^5 + 1"
"n_fac": "2^5 * 3 * 5 * 7 * 29 * 22039 + 1"
"nd": 1927007839
"nd_hex": "0x72dbce5f"
"nd_bit": "2^31 - 2^28 + 2^26 - 2^24 - 2^21 - 2^18 - 2^14 + 2^12 - 2^9 + 2^7 - 2^5 - 1"
"r2": 12159169
"r2_hex": "0xb988c1"
"r2_bit": "2^24 - 2^22 - 2^19 + 2^17 - 2^15 + 2^11 + 2^8 - 2^6 + 1"
"znprimroot": 19
- "n": 2147481793
"n_hex": "0x7ffff8c1"
"n_bit": "2^31 - 2^11 + 2^8 - 2^6 + 1"
"n_fac": "2^6 * 3^2 * 3728267 + 1"
"nd": 1907845311
"nd_hex": "0x71b768bf"
"nd_bit": "2^31 - 2^28 + 2^25 - 2^22 - 2^19 - 2^15 - 2^13 + 2^11 + 2^8 - 2^6 - 1"
"r2": 3441025
"r2_hex": "0x348181"
"r2_bit": "2^22 - 2^20 + 2^18 + 2^15 + 2^9 - 2^7 + 1"
"znprimroot": 5
- "n": 2147480641
"n_hex": "0x7ffff441"
"n_bit": "2^31 - 2^12 + 2^10 + 2^6 + 1"
"n_fac": "2^6 * 3^3 * 5 * 199 * 1249 + 1"
"nd": 674882623
"nd_hex": "0x2839e43f"
"nd_bit": "2^29 + 2^27 + 2^22 - 2^19 + 2^17 - 2^13 + 2^10 + 2^6 - 1"
"r2": 9042049
"r2_hex": "0x89f881"
"r2_bit": "2^23 + 2^19 + 2^17 - 2^11 + 2^7 + 1"
"znprimroot": 7
- "n": 2147463361
"n_hex": "0x7fffb0c1"
"n_bit": "2^31 - 2^14 - 2^12 + 2^8 - 2^6 + 1"
"n_fac": "2^6 * 3^3 * 5 * 7 * 35507 + 1"
"nd": 266543295
"nd_hex": "0xfe320bf"
"nd_bit": "2^28 - 2^21 + 2^18 - 2^16 + 2^13 + 2^8 - 2^6 - 1"
"r2": 411562369
"r2_hex": "0x1887f181"
"r2_bit": "2^29 - 2^27 + 2^23 + 2^19 - 2^12 + 2^9 - 2^7 + 1"
"znprimroot": 22
- "n": 2147479681
"n_hex": "0x7ffff081"
"n_bit": "2^31 - 2^12 + 2^7 + 1"
"n_fac": "2^7 * 3 * 5 * 1118479 + 1"
"nd": 1664069759
"nd_hex": "0x632fb07f"
"nd_bit": "2^31 - 2^29 + 2^26 - 2^24 + 2^22 - 2^20 - 2^14 - 2^12 + 2^7 - 1"
"r2": 15737089
"r2_hex": "0xf02101"
"r2_bit": "2^24 - 2^20 + 2^13 + 2^8 + 1"
"znprimroot": 22
- "n": 2147467393
"n_hex": "0x7fffc081"
"n_bit": "2^31 - 2^14 + 2^7 + 1"
"n_fac": "2^7 * 3^2 * 7 * 283 * 941 + 1"
"nd": 811565183
"nd_hex": "0x305f807f"
"nd_bit": "2^30 - 2^28 + 2^23 - 2^21 - 2^15 + 2^7 - 1"
"r2": 264225025
"r2_hex": "0xfbfc101"
"r2_bit": "2^28 - 2^22 - 2^14 + 2^8 + 1"
"znprimroot": 10
- "n": 2147470081
"n_hex": "0x7fffcb01"
"n_bit": "2^31 - 2^14 + 2^12 - 2^10 - 2^8 + 1"
"n_fac": "2^8 * 3 * 5 * 7^2 * 101 * 113 + 1"
"nd": 1745275647
"nd_hex": "0x6806caff"
"nd_bit": "2^31 - 2^29 + 2^27 + 2^19 - 2^16 - 2^14 + 2^12 - 2^10 - 2^8 - 1"
"r2": 184063489
"r2_hex": "0xaf89601"
"r2_bit": "2^28 - 2^26 - 2^24 - 2^19 + 2^15 + 2^13 - 2^11 - 2^9 + 1"
"znprimroot": 19
- "n": 2147450113
"n_hex": "0x7fff7d01"
"n_bit": "2^31 - 2^15 - 2^10 + 2^8 + 1"
"n_fac": "2^8 * 3^2 * 41 * 127 * 179 + 1"
"nd": 569801983
"nd_hex": "0x21f67cff"
"nd_bit": "2^29 + 2^25 - 2^19 - 2^17 + 2^15 - 2^10 + 2^8 - 1"
"r2": 1124596225
"r2_hex": "0x4307fa01"
"r2_bit": "2^30 + 2^26 - 2^24 + 2^19 - 2^11 + 2^9 + 1"
"znprimroot": 5
- "n": 2147431681
"n_hex": "0x7fff3501"
"n_bit": "2^31 - 2^16 + 2^14 - 2^12 + 2^10 + 2^8 + 1"
"n_fac": "2^8 * 3^2 * 5 * 19 * 9811 + 1"
"nd": 1812346111
"nd_hex": "0x6c0634ff"
"nd_bit": "2^31 - 2^28 - 2^26 + 2^19 - 2^17 + 2^14 - 2^12 + 2^10 + 2^8 - 1"
"r2": 553137408
"r2_hex": "0x20f83500"
"r2_bit": "2^29 + 2^24 - 2^19 + 2^14 - 2^12 + 2^10 + 2^8"
"znprimroot": 7
- "n": 2147362561
"n_hex": "0x7ffe2701"
"n_bit": "2^31 - 2^17 + 2^13 + 2^11 - 2^8 + 1"
"n_fac": "2^8 * 3^2 * 5 * 7 * 31 * 859 + 1"
"nd": 1292707583
"nd_hex": "0x4d0d26ff"
"nd_bit": "2^30 + 2^28 - 2^26 + 2^24 + 2^20 - 2^18 + 2^16 + 2^13 + 2^11 - 2^8 - 1"
"r2": 1777886203
"r2_hex": "0x69f863fb"
"r2_bit": "2^31 - 2^29 + 2^27 + 2^25 - 2^19 + 2^15 - 2^13 + 2^10 - 2^2 - 1"
"znprimroot": 13
- "n": 2147483137
"n_hex": "0x7ffffe01"
"n_bit": "2^31 - 2^9 + 1"
"n_fac": "2^9 * 3 * 23 * 89 * 683 + 1"
"nd": 2013003263
"nd_hex": "0x77fbfdff"
"nd_bit": "2^31 - 2^27 - 2^18 - 2^9 - 1"
"r2": 261121
"r2_hex": "0x3fc01"
"r2_bit": "2^18 - 2^10 + 1"
"znprimroot": 10
- "n": 2147473921
"n_hex": "0x7fffda01"
"n_bit": "2^31 - 2^13 - 2^11 + 2^9 + 1"
"n_fac": "2^9 * 3 * 5 * 279619 + 1"
"nd": 576444927
"nd_hex": "0x225bd9ff"
"nd_bit": "2^29 + 2^25 + 2^23 - 2^21 - 2^18 - 2^13 - 2^11 + 2^9 - 1"
"r2": 94614529
"r2_hex": "0x5a3b401"
"r2_bit": "2^27 - 2^25 - 2^23 + 2^21 + 2^18 - 2^14 - 2^12 + 2^10 + 1"
"znprimroot": 11
- "n": 2147415553
"n_hex": "0x7ffef601"
"n_bit": "2^31 - 2^16 - 2^11 - 2^9 + 1"
"n_fac": "2^9 * 3^2 * 466019 + 1"
"nd": 60487167
"nd_hex": "0x39af5ff"
"nd_bit": "2^26 - 2^23 + 2^21 - 2^18 - 2^16 - 2^11 - 2^9 - 1"
"r2": 342097919
"r2_hex": "0x1463ffff"
"r2_bit": "2^28 + 2^26 + 2^23 - 2^21 + 2^18 - 1"
"znprimroot": 5
- "n": 2147304961
"n_hex": "0x7ffd4601"
"n_bit": "2^31 - 2^18 + 2^16 + 2^14 + 2^11 - 2^9 + 1"
"n_fac": "2^9 * 3^2 * 5 * 93199 + 1"
"nd": 1759069695
"nd_hex": "0x68d945ff"
"nd_bit": "2^31 - 2^29 + 2^27 + 2^24 - 2^21 - 2^19 + 2^16 + 2^14 + 2^11 - 2^9 - 1"
"r2": 1866774515
"r2_hex": "0x6f44b7f3"
"r2_bit": "2^31 - 2^28 - 2^24 + 2^22 + 2^18 + 2^16 - 2^14 - 2^11 - 2^4 + 2^2 - 1"
"znprimroot": 29
- "n": 2147355649
"n_hex": "0x7ffe0c01"
"n_bit": "2^31 - 2^17 + 2^12 - 2^10 + 1"
"n_fac": "2^10 * 3^2 * 41 * 5683 + 1"
"nd": 1869483007
"nd_hex": "0x6f6e0bff"
"nd_bit": "2^31 - 2^28 - 2^23 - 2^20 - 2^17 + 2^12 - 2^10 - 1"
"r2": 1352254458
"r2_hex": "0x5099c3fa"
"r2_bit": "2^30 + 2^28 + 2^23 + 2^21 - 2^19 + 2^17 - 2^14 + 2^10 - 2^3 + 2"
"znprimroot": 11
- "n": 2147281921
"n_hex": "0x7ffcec01"
"n_bit": "2^31 - 2^18 + 2^16 - 2^12 - 2^10 + 1"
"n_fac": "2^10 * 3^3 * 5 * 7^2 * 317 + 1"
"nd": 1181543423
"nd_hex": "0x466cebff"
"nd_bit": "2^30 + 2^27 - 2^25 + 2^23 - 2^20 - 2^18 + 2^16 - 2^12 - 2^10 - 1"
"r2": 2042707951
"r2_hex": "0x79c13fef"
"r2_bit": "2^31 - 2^27 + 2^25 - 2^22 + 2^16 + 2^14 - 2^4 - 1"
"znprimroot": 38
- "n": 2147473409
"n_hex": "0x7fffd801"
"n_bit": "2^31 - 2^13 - 2^11 + 1"
"n_fac": "2^11 * 1048571 + 1"
"nd": 2042615807
"nd_hex": "0x79bfd7ff"
"nd_bit": "2^31 - 2^27 + 2^25 - 2^22 - 2^13 - 2^11 - 1"
"r2": 104837121
"r2_hex": "0x63fb001"
"r2_bit": "2^27 - 2^25 + 2^22 - 2^14 - 2^12 + 1"
"znprimroot": 3
- "n": 2147346433
"n_hex": "0x7ffde801"
"n_bit": "2^31 - 2^17 - 2^13 + 2^11 + 1"
"n_fac": "2^11 * 3^2 * 7 * 11 * 17 * 89 + 1"
"nd": 498984959
"nd_hex": "0x1dbde7ff"
"nd_bit": "2^29 - 2^25 - 2^22 - 2^17 - 2^13 + 2^11 - 1"
"r2": 1649184761
"r2_hex": "0x624c8ff9"
"r2_bit": "2^31 - 2^29 + 2^25 + 2^22 + 2^20 - 2^18 + 2^15 + 2^12 - 2^3 + 1"
"znprimroot": 10
- "n": 2147235841
"n_hex": "0x7ffc3801"
"n_bit": "2^31 - 2^18 + 2^14 - 2^11 + 1"
"n_fac": "2^11 * 3^2 * 5 * 23 * 1013 + 1"
"nd": 867973119
"nd_hex": "0x33bc37ff"
"nd_bit": "2^30 - 2^28 + 2^26 - 2^22 - 2^18 + 2^14 - 2^11 - 1"
"r2": 1285705701
"r2_hex": "0x4ca24fe5"
"r2_bit": "2^30 + 2^28 - 2^26 + 2^23 + 2^21 + 2^17 + 2^14 + 2^12 - 2^5 + 2^2 + 1"
"znprimroot": 17
- "n": 2147389441
"n_hex": "0x7ffe9001"
"n_bit": "2^31 - 2^17 + 2^15 + 2^12 + 1"
"n_fac": "2^12 * 3 * 5 * 7 * 4993 + 1"
"nd": 1862176767
"nd_hex": "0x6efe8fff"
"nd_bit": "2^31 - 2^28 - 2^24 - 2^17 + 2^15 + 2^12 - 1"
"r2": 285401085
"r2_hex": "0x1102dffd"
"r2_bit": "2^28 + 2^24 + 2^18 - 2^16 - 2^13 - 2^2 + 1"
"znprimroot": 11
- "n": 2147217409
"n_hex": "0x7ffbf001"
"n_bit": "2^31 - 2^18 - 2^12 + 1"
"n_fac": "2^12 * 3^2 * 7 * 53 * 157 + 1"
"nd": 2130440191
"nd_hex": "0x7efbefff"
"nd_bit": "2^31 - 2^24 - 2^18 - 2^12 - 1"
"r2": 25030624
"r2_hex": "0x17defe0"
"r2_bit": "2^25 - 2^23 - 2^17 - 2^12 - 2^5"
"znprimroot": 22
- "n": 2147377153
"n_hex": "0x7ffe6001"
"n_bit": "2^31 - 2^17 + 2^15 - 2^13 + 1"
"n_fac": "2^13 * 3 * 23 * 29 * 131 + 1"
"nd": 1543397375
"nd_hex": "0x5bfe5fff"
"nd_bit": "2^31 - 2^29 - 2^26 - 2^17 + 2^15 - 2^13 - 1"
"r2": 604299260
"r2_hex": "0x2404dffc"
"r2_bit": "2^29 + 2^26 + 2^18 + 2^16 - 2^13 - 2^2"
"znprimroot": 5
- "n": 2147205121
"n_hex": "0x7ffbc001"
"n_bit": "2^31 - 2^18 - 2^14 + 1"
"n_fac": "2^14 * 3 * 5 * 8737 + 1"
"nd": 1878769663
"nd_hex": "0x6ffbbfff"
"nd_bit": "2^31 - 2^28 - 2^18 - 2^14 - 1"
"r2": 277905373
"r2_hex": "0x10907fdd"
"r2_bit": "2^28 + 2^23 + 2^20 + 2^15 - 2^5 - 2^2 + 1"
"znprimroot": 7
- "n": 2147352577
"n_hex": "0x7ffe0001"
"n_bit": "2^31 - 2^17 + 1"
"n_fac": "2^17 * 3 * 43 * 127 + 1"
"nd": 2147352575
"nd_hex": "0x7ffdffff"
"nd_bit": "2^31 - 2^17 - 1"
"r2": 786425
"r2_hex": "0xbfff9"
"r2_bit": "2^20 - 2^18 - 2^3 + 1"
"znprimroot": 5
- "n": 2146959361
"n_hex": "0x7ff80001"
"n_bit": "2^31 - 2^19 + 1"
"n_fac": "2^19 * 3^2 * 5 * 7 * 13 + 1"
"nd": 2146959359
"nd_hex": "0x7ff7ffff"
"nd_bit": "2^31 - 2^19 - 1"
"r2": 66060161
"r2_hex": "0x3efff81"
"r2_bit": "2^26 - 2^20 - 2^7 + 1"
"znprimroot": 19
- "n": 1651507201
"n_hex": "0x62700001"
"n_bit": "2^31 - 2^29 + 2^25 + 2^23 - 2^20 + 1"
"n_fac": "2^20 * 3^2 * 5^2 * 7 + 1"
"nd": 1651507199
"nd_hex": "0x626fffff"
"nd_bit": "2^31 - 2^29 + 2^25 + 2^23 - 2^20 - 1"
"r2": 908014223
"r2_hex": "0x361f328f"
"r2_bit": "2^30 - 2^27 - 2^25 + 2^21 - 2^16 + 2^14 - 2^12 + 2^9 + 2^7 + 2^4 - 1"
"znprimroot": 19
- "n": 1541406721
"n_hex": "0x5be00001"
"n_bit": "2^31 - 2^29 - 2^26 - 2^21 + 1"
"n_fac": "2^21 * 3 * 5 * 7^2 + 1"
"nd": 1541406719
"nd_hex": "0x5bdfffff"
"nd_bit": "2^31 - 2^29 - 2^26 - 2^21 - 1"
"r2": 1479259692
"r2_hex": "0x582bb62c"
"r2_bit": "2^31 - 2^29 - 2^27 + 2^22 - 2^20 - 2^18 - 2^14 - 2^11 - 2^9 + 2^6 - 2^4 - 2^2"
"znprimroot": 17
- "n": 1415577601
"n_hex": "0x54600001"
"n_bit": "2^30 + 2^28 + 2^26 + 2^23 - 2^21 + 1"
"n_fac": "2^21 * 3^3 * 5^2 + 1"
"nd": 1415577599
"nd_hex": "0x545fffff"
"nd_bit": "2^30 + 2^28 + 2^26 + 2^23 - 2^21 - 1"
"r2": 206682876
"r2_hex": "0xc51bafc"
"r2_bit": "2^28 - 2^26 + 2^22 + 2^20 + 2^17 - 2^14 - 2^10 - 2^8 - 2^2"
"znprimroot": 17
- "n": 1321205761
"n_hex": "0x4ec00001"
"n_bit": "2^30 + 2^28 - 2^24 - 2^22 + 1"
"n_fac": "2^22 * 3^2 * 5 * 7 + 1"
"nd": 1321205759
"nd_hex": "0x4ebfffff"
"nd_bit": "2^30 + 2^28 - 2^24 - 2^22 - 1"
"r2": 540213043
"r2_hex": "0x2032ff33"
"r2_bit": "2^29 + 2^22 - 2^20 + 2^18 - 2^16 - 2^8 + 2^6 - 2^4 + 2^2 - 1"
"znprimroot": 11
- "n": 880803841
"n_hex": "0x34800001"
"n_bit": "2^30 - 2^28 + 2^26 + 2^23 + 1"
"n_fac": "2^23 * 3 * 5 * 7 + 1"
"nd": 880803839
"nd_hex": "0x347fffff"
"nd_bit": "2^30 - 2^28 + 2^26 + 2^23 - 1"
"r2": 116162254
"r2_hex": "0x6ec7ece"
"r2_bit": "2^27 - 2^24 - 2^20 - 2^18 + 2^15 - 2^8 - 2^6 + 2^4 - 2"
"znprimroot": 26
- "n": 2130706433
"n_hex": "0x7f000001"
"n_bit": "2^31 - 2^24 + 1"
"n_fac": "2^24 * 127 + 1"
"nd": 2130706431
"nd_hex": "0x7effffff"
"nd_bit": "2^31 - 2^24 - 1"
"r2": 100531193
"r2_hex": "0x5fdfbf9"
"r2_bit": "2^27 - 2^25 - 2^17 - 2^10 - 2^3 + 1"
"znprimroot": 3
- "n": 754974721
"n_hex": "0x2d000001"
"n_bit": "2^30 - 2^28 - 2^26 + 2^24 + 1"
"n_fac": "2^24 * 3^2 * 5 + 1"
"nd": 754974719
"nd_hex": "0x2cffffff"
"nd_bit": "2^30 - 2^28 - 2^26 + 2^24 - 1"
"r2": 753483421
"r2_hex": "0x2ce93e9d"
"r2_bit": "2^30 - 2^28 - 2^26 + 2^24 - 2^21 + 2^19 + 2^16 + 2^14 - 2^9 + 2^7 + 2^5 - 2^2 + 1"
"znprimroot": 11
- "n": 2113929217
"n_hex": "0x7e000001"
"n_bit": "2^31 - 2^25 + 1"
"n_fac": "2^25 * 3^2 * 7 + 1"
"nd": 2113929215
"nd_hex": "0x7dffffff"
"nd_bit": "2^31 - 2^25 - 1"
"r2": 2113396608
"r2_hex": "0x7df7df80"
"r2_bit": "2^31 - 2^25 - 2^19 - 2^13 - 2^7"
"znprimroot": 5
- "n": 1811939329
"n_hex": "0x6c000001"
"n_bit": "2^31 - 2^28 - 2^26 + 1"
"n_fac": "2^26 * 3^3 + 1"
"nd": 1811939327
"nd_hex": "0x6bffffff"
"nd_bit": "2^31 - 2^28 - 2^26 - 1"
"r2": 1145821717
"r2_hex": "0x444bda15"
"r2_bit": "2^30 + 2^26 + 2^22 + 2^20 - 2^18 - 2^13 - 2^11 + 2^9 + 2^4 + 2^2 + 1"
"znprimroot": 13
- "n": 2013265921
"n_hex": "0x78000001"
"n_bit": "2^31 - 2^27 + 1"
"n_fac": "2^27 * 3 * 5 + 1"
"nd": 2013265919
"nd_hex": "0x77ffffff"
"nd_bit": "2^31 - 2^27 - 1"
"r2": 796358521
"r2_hex": "0x2f777779"
"r2_bit": "2^30 - 2^28 - 2^23 - 2^19 - 2^15 - 2^11 - 2^7 - 2^3 + 1"
"znprimroot": 31
- "r": 32
"primes":
- "n": 4294967291
"n_hex": "0xfffffffb"
"n_bit": "2^32 - 2^2 - 1"
"n_fac": "2 * 5 * 19 * 22605091 + 1"
"nd": 3435973837
"nd_hex": "0xcccccccd"
"nd_bit": "2^32 - 2^30 + 2^28 - 2^26 + 2^24 - 2^22 + 2^20 - 2^18 + 2^16 - 2^14 + 2^12 - 2^10 + 2^8 - 2^6 + 2^4 - 2^2 + 1"
"r2": 25
"r2_hex": "0x19"
"r2_bit": "2^5 - 2^3 + 1"
"znprimroot": 2
- "n": 4294966591
"n_hex": "0xfffffd3f"
"n_bit": "2^32 - 2^10 + 2^8 + 2^6 - 1"
"n_fac": "2 * 3^2 * 5 * 47721851 + 1"
"nd": 1547406657
"nd_hex": "0x5c3b8d41"
"nd_bit": "2^31 - 2^29 - 2^26 + 2^22 - 2^18 - 2^15 + 2^12 - 2^10 + 2^8 + 2^6 + 1"
"r2": 497025
"r2_hex": "0x79581"
"r2_bit": "2^19 - 2^15 + 2^13 - 2^11 - 2^9 - 2^7 + 1"
"znprimroot": 3
- "n": 4294965151
"n_hex": "0xfffff79f"
"n_bit": "2^32 - 2^11 - 2^7 + 2^5 - 1"
"n_fac": "2 * 3^2 * 5^2 * 7^2 * 109 * 1787 + 1"
"nd": 1139317665
"nd_hex": "0x43e89ba1"
"nd_bit": "2^30 + 2^26 - 2^21 + 2^19 + 2^15 + 2^13 - 2^10 - 2^7 + 2^5 + 1"
"r2": 4601025
"r2_hex": "0x4634c1"
"r2_bit": "2^22 + 2^19 - 2^17 + 2^14 - 2^12 + 2^10 + 2^8 - 2^6 + 1"
"znprimroot": 6
- "n": 4294967197
"n_hex": "0xffffff9d"
"n_bit": "2^32 - 2^7 + 2^5 - 2^2 + 1"
"n_fac": "2^2 * 3 * 13 * 67 * 163 * 2521 + 1"
"nd": 3210379595
"nd_hex": "0xbf5a814b"
"nd_bit": "2^32 - 2^30 - 2^23 - 2^21 - 2^19 + 2^17 + 2^15 + 2^8 + 2^6 + 2^4 - 2^2 - 1"
"r2": 9801
"r2_hex": "0x2649"
"r2_bit": "2^13 + 2^11 - 2^9 + 2^6 + 2^3 + 1"
"znprimroot": 6
- "n": 4294967161
"n_hex": "0xffffff79"
"n_bit": "2^32 - 2^7 - 2^3 + 1"
"n_fac": "2^3 * 3 * 5 * 11 * 47 * 107 * 647 + 1"
"nd": 3785934135
"nd_hex": "0xe1a8c537"
"nd_bit": "2^32 - 2^29 + 2^25 - 2^23 + 2^21 + 2^19 + 2^16 - 2^14 + 2^10 + 2^8 + 2^6 - 2^3 - 1"
"r2": 18225
"r2_hex": "0x4731"
"r2_bit": "2^14 + 2^11 - 2^8 + 2^6 - 2^4 + 1"
"znprimroot": 58
- "n": 4294964521
"n_hex": "0xfffff529"
"n_bit": "2^32 - 2^12 + 2^10 + 2^8 + 2^5 + 2^3 + 1"
"n_fac": "2^3 * 3^3 * 5 * 7 * 11 * 51647 + 1"
"nd": 1693223143
"nd_hex": "0x64ec88e7"
"nd_bit": "2^31 - 2^29 + 2^26 + 2^24 - 2^20 - 2^18 + 2^15 + 2^11 + 2^8 - 2^5 + 2^3 - 1"
"r2": 7700625
"r2_hex": "0x758091"
"r2_bit": "2^23 - 2^19 - 2^17 - 2^15 + 2^7 + 2^4 + 1"
"znprimroot": 17
- "n": 4294966769
"n_hex": "0xfffffdf1"
"n_bit": "2^32 - 2^9 - 2^4 + 1"
"n_fac": "2^4 * 17 * 569 * 27751 + 1"
"nd": 2208607471
"nd_hex": "0x83a4acef"
"nd_bit": "2^31 + 2^26 - 2^23 + 2^21 + 2^18 + 2^16 - 2^14 - 2^12 - 2^10 + 2^8 - 2^4 - 1"
"r2": 277729
"r2_hex": "0x43ce1"
"r2_bit": "2^18 + 2^14 - 2^10 + 2^8 - 2^5 + 1"
"znprimroot": 3
- "n": 4294965841
"n_hex": "0xfffffa51"
"n_bit": "2^32 - 2^11 + 2^9 + 2^6 + 2^4 + 1"
"n_fac": "2^4 * 3 * 5 * 11 * 1626881 + 1"
"nd": 4114903375
"nd_hex": "0xf544714f"
"nd_bit": "2^32 - 2^28 + 2^26 + 2^24 + 2^22 + 2^18 + 2^15 - 2^12 + 2^8 + 2^6 + 2^4 - 1"
"r2": 2117025
"r2_hex": "0x204da1"
"r2_bit": "2^21 + 2^14 + 2^12 - 2^9 - 2^7 + 2^5 + 1"
"znprimroot": 7
- "n": 4294965361
"n_hex": "0xfffff871"
"n_bit": "2^32 - 2^11 + 2^7 - 2^4 + 1"
"n_fac": "2^4 * 3 * 5 * 7 * 1093 * 2339 + 1"
"nd": 1163081583
"nd_hex": "0x4553376f"
"nd_bit": "2^30 + 2^26 + 2^24 + 2^22 + 2^20 + 2^18 - 2^16 + 2^14 - 2^11 - 2^7 - 2^4 - 1"
"r2": 3744225
"r2_hex": "0x3921e1"
"r2_bit": "2^22 - 2^19 + 2^16 + 2^13 + 2^9 - 2^5 + 1"
"znprimroot": 13
- "n": 4294966177
"n_hex": "0xfffffba1"
"n_bit": "2^32 - 2^10 - 2^7 + 2^5 + 1"
"n_fac": "2^5 * 3^2 * 31 * 481067 + 1"
"nd": 3911145375
"nd_hex": "0xe91f579f"
"nd_bit": "2^32 - 2^29 + 2^27 + 2^24 + 2^21 - 2^15 - 2^13 - 2^11 - 2^7 + 2^5 - 1"
"r2": 1252161
"r2_hex": "0x131b41"
"r2_bit": "2^20 + 2^18 - 2^16 + 2^13 - 2^10 - 2^8 + 2^6 + 1"
"znprimroot": 5
- "n": 4294965601
"n_hex": "0xfffff961"
"n_bit": "2^32 - 2^11 + 2^9 - 2^7 - 2^5 + 1"
"n_fac": "2^5 * 3^3 * 5^2 * 198841 + 1"
"nd": 4026373471
"nd_hex": "0xeffd955f"
"nd_bit": "2^32 - 2^28 - 2^17 - 2^15 + 2^13 - 2^11 - 2^9 - 2^7 - 2^5 - 1"
"r2": 2873025
"r2_hex": "0x2bd6c1"
"r2_bit": "2^22 - 2^20 - 2^18 - 2^13 - 2^11 - 2^8 - 2^6 + 1"
"znprimroot": 7
- "n": 4294963681
"n_hex": "0xfffff1e1"
"n_bit": "2^32 - 2^12 + 2^9 - 2^5 + 1"
"n_fac": "2^5 * 3 * 5 * 7^3 * 19 * 1373 + 1"
"nd": 3741314527
"nd_hex": "0xdeffeddf"
"nd_bit": "2^32 - 2^29 - 2^24 - 2^12 - 2^9 - 2^5 - 1"
"r2": 13068225
"r2_hex": "0xc767c1"
"r2_bit": "2^24 - 2^22 + 2^19 - 2^15 - 2^13 + 2^11 - 2^6 + 1"
"znprimroot": 44
- "n": 4294965313
"n_hex": "0xfffff841"
"n_bit": "2^32 - 2^11 + 2^6 + 1"
"n_fac": "2^6 * 3^2 * 11 * 701 * 967 + 1"
"nd": 3980912703
"nd_hex": "0xed47e83f"
"nd_bit": "2^32 - 2^28 - 2^26 + 2^24 + 2^22 + 2^19 - 2^13 + 2^11 + 2^6 - 1"
"r2": 3932289
"r2_hex": "0x3c0081"
"r2_bit": "2^22 - 2^18 + 2^7 + 1"
"znprimroot": 5
- "n": 4294960321
"n_hex": "0xffffe4c1"
"n_bit": "2^32 - 2^13 + 2^10 + 2^8 - 2^6 + 1"
"n_fac": "2^6 * 3 * 5 * 7 * 29 * 22039 + 1"
"nd": 2705675455
"nd_hex": "0xa14554bf"
"nd_bit": "2^31 + 2^29 + 2^24 + 2^22 + 2^18 + 2^16 + 2^14 + 2^12 + 2^10 + 2^8 - 2^6 - 1"
"r2": 48650625
"r2_hex": "0x2e65981"
"r2_bit": "2^26 - 2^24 - 2^21 + 2^19 - 2^17 + 2^15 - 2^13 - 2^11 + 2^9 - 2^7 + 1"
"znprimroot": 13
- "n": 4294958401
"n_hex": "0xffffdd41"
"n_bit": "2^32 - 2^13 - 2^10 + 2^8 + 2^6 + 1"
"n_fac": "2^6 * 3^2 * 5^2 * 298261 + 1"
"nd": 528239935
"nd_hex": "0x1f7c4d3f"
"nd_bit": "2^29 - 2^23 - 2^18 + 2^14 + 2^12 - 2^10 + 2^8 + 2^6 - 1"
"r2": 79121025
"r2_hex": "0x4b74a81"
"r2_bit": "2^26 + 2^24 - 2^22 - 2^19 - 2^16 + 2^14 + 2^11 + 2^9 + 2^7 + 1"
"znprimroot": 13
- "n": 4294946881
"n_hex": "0xffffb041"
"n_bit": "2^32 - 2^14 - 2^12 + 2^6 + 1"
"n_fac": "2^6 * 3^2 * 5 * 7 * 213043 + 1"
"nd": 3609960511
"nd_hex": "0xd72ba03f"
"nd_bit": "2^32 - 2^29 - 2^27 - 2^24 + 2^22 - 2^20 - 2^18 - 2^15 + 2^13 + 2^6 - 1"
"r2": 416772225
"r2_hex": "0x18d77081"
"r2_bit": "2^29 - 2^27 + 2^24 - 2^21 - 2^19 - 2^15 - 2^12 + 2^7 + 1"
"znprimroot": 17
- "n": 4294966657
"n_hex": "0xfffffd81"
"n_bit": "2^32 - 2^9 - 2^7 + 1"
"n_fac": "2^7 * 3 * 641 * 17449 + 1"
"nd": 3763977599
"nd_hex": "0xe059bd7f"
"nd_bit": "2^32 - 2^29 + 2^23 - 2^21 - 2^19 + 2^17 - 2^14 - 2^9 - 2^7 - 1"
"r2": 408321
"r2_hex": "0x63b01"
"r2_bit": "2^19 - 2^17 + 2^14 - 2^10 - 2^8 + 1"
"znprimroot": 5
- "n": 4294953601
"n_hex": "0xffffca81"
"n_bit": "2^32 - 2^14 + 2^11 + 2^9 + 2^7 + 1"
"n_fac": "2^7 * 3 * 5^2 * 7 * 63913 + 1"
"nd": 3128003199
"nd_hex": "0xba718a7f"
"nd_bit": "2^32 - 2^30 - 2^27 + 2^25 + 2^23 - 2^20 + 2^17 - 2^15 + 2^11 + 2^9 + 2^7 - 1"
"r2": 187553025
"r2_hex": "0xb2dd501"
"r2_bit": "2^28 - 2^26 - 2^24 + 2^22 - 2^20 - 2^17 - 2^14 + 2^12 + 2^10 + 2^8 + 1"
"znprimroot": 37
- "n": 4294800001
"n_hex": "0xfffd7281"
"n_bit": "2^32 - 2^17 - 2^15 - 2^12 + 2^9 + 2^7 + 1"
"n_fac": "2^7 * 3^2 * 5^5 * 1193 + 1"
"nd": 4016517759
"nd_hex": "0xef67327f"
"nd_bit": "2^32 - 2^28 - 2^23 - 2^21 + 2^19 - 2^16 + 2^14 - 2^12 + 2^9 + 2^7 - 1"
"r2": 2218817019
"r2_hex": "0x844075fb"
"r2_bit": "2^31 + 2^26 + 2^22 + 2^15 - 2^11 - 2^9 - 2^2 - 1"
"znprimroot": 11
- "n": 4294604161
"n_hex": "0xfffa7581"
"n_bit": "2^32 - 2^19 + 2^17 + 2^15 - 2^11 - 2^9 - 2^7 + 1"
"n_fac": "2^7 * 3^2 * 5 * 7 * 11 * 23 * 421 + 1"
"nd": 2523673983
"nd_hex": "0x966c357f"
"nd_bit": "2^31 + 2^29 - 2^27 - 2^25 + 2^23 - 2^20 - 2^18 + 2^14 - 2^11 - 2^9 - 2^7 - 1"
"r2": 3028903395
"r2_hex": "0xb48965e3"
"r2_bit": "2^32 - 2^30 - 2^28 + 2^26 + 2^23 + 2^19 + 2^17 - 2^15 - 2^13 + 2^11 - 2^9 - 2^5 + 2^2 - 1"
"znprimroot": 29
- "n": 4294953217
"n_hex": "0xffffc901"
"n_bit": "2^32 - 2^14 + 2^11 + 2^8 + 1"
"n_fac": "2^8 * 3^2 * 139 * 13411 + 1"
"nd": 221169919
"nd_hex": "0xd2ec8ff"
"nd_bit": "2^28 - 2^26 + 2^24 + 2^22 - 2^20 - 2^16 - 2^14 + 2^11 + 2^8 - 1"
"r2": 198218241
"r2_hex": "0xbd09201"
"r2_bit": "2^28 - 2^26 - 2^22 + 2^20 + 2^15 + 2^12 + 2^9 + 1"
"znprimroot": 5
- "n": 4294928641
"n_hex": "0xffff6901"
"n_bit": "2^32 - 2^15 - 2^13 + 2^11 + 2^8 + 1"
"n_fac": "2^8 * 3 * 5 * 107 * 10453 + 1"
"nd": 2683201791
"nd_hex": "0x9fee68ff"
"nd_bit": "2^31 + 2^29 - 2^20 - 2^17 + 2^15 - 2^13 + 2^11 + 2^8 - 1"
"r2": 1494209025
"r2_hex": "0x590fd201"
"r2_bit": "2^31 - 2^29 - 2^27 + 2^24 + 2^20 - 2^14 + 2^12 + 2^9 + 1"
"znprimroot": 21
- "n": 4294913281
"n_hex": "0xffff2d01"
"n_bit": "2^32 - 2^16 + 2^14 - 2^12 - 2^10 + 2^8 + 1"
"n_fac": "2^8 * 3 * 5 * 7 * 23 * 6947 + 1"
"nd": 1192635647
"nd_hex": "0x47162cff"
"nd_bit": "2^30 + 2^27 - 2^24 + 2^21 - 2^19 - 2^17 + 2^14 - 2^12 - 2^10 + 2^8 - 1"
"r2": 2917620225
"r2_hex": "0xade75a01"
"r2_bit": "2^32 - 2^30 - 2^28 - 2^25 - 2^21 + 2^19 - 2^15 - 2^13 - 2^11 + 2^9 + 1"
"znprimroot": 11
- "n": 4294321921
"n_hex": "0xfff62701"
"n_bit": "2^32 - 2^19 - 2^17 + 2^13 + 2^11 - 2^8 + 1"
"n_fac": "2^8 * 3^4 * 5 * 7 * 61 * 97 + 1"
"nd": 3171231487
"nd_hex": "0xbd0526ff"
"nd_bit": "2^32 - 2^30 - 2^26 + 2^24 + 2^18 + 2^16 + 2^13 + 2^11 - 2^8 - 1"
"r2": 4253986209
"r2_hex": "0xfd8eada1"
"r2_bit": "2^32 - 2^25 - 2^23 + 2^20 - 2^16 - 2^14 - 2^12 - 2^9 - 2^7 + 2^5 + 1"
"znprimroot": 13
- "n": 4294962689
"n_hex": "0xffffee01"
"n_bit": "2^32 - 2^12 - 2^9 + 1"
"n_fac": "2^9 * 17 * 493447 + 1"
"nd": 918285823
"nd_hex": "0x36bbedff"
"nd_bit": "2^30 - 2^27 - 2^24 - 2^22 - 2^18 - 2^12 - 2^9 - 1"
"r2": 21224449
"r2_hex": "0x143dc01"
"r2_bit": "2^24 + 2^22 + 2^18 - 2^13 - 2^10 + 1"
"znprimroot": 3
- "n": 4294937089
"n_hex": "0xffff8a01"
"n_bit": "2^32 - 2^15 + 2^11 + 2^9 + 1"
"n_fac": "2^9 * 3^3 * 13 * 23899 + 1"
"nd": 2979760639
"nd_hex": "0xb19b89ff"
"nd_bit": "2^32 - 2^30 - 2^28 + 2^25 - 2^23 + 2^21 - 2^18 - 2^15 + 2^11 + 2^9 - 1"
"r2": 912462849
"r2_hex": "0x36631401"
"r2_bit": "2^30 - 2^27 - 2^25 + 2^23 - 2^21 + 2^18 - 2^16 + 2^12 + 2^10 + 1"
"znprimroot": 17
- "n": 4294510081
"n_hex": "0xfff90601"
"n_bit": "2^32 - 2^19 + 2^16 + 2^11 - 2^9 + 1"
"n_fac": "2^9 * 3 * 5 * 7 * 17 * 37 * 127 + 1"
"nd": 735380991
"nd_hex": "0x2bd505ff"
"nd_bit": "2^30 - 2^28 - 2^26 - 2^22 + 2^20 + 2^18 + 2^16 + 2^11 - 2^9 - 1"
"r2": 2909072337
"r2_hex": "0xad64ebd1"
"r2_bit": "2^32 - 2^30 - 2^28 - 2^25 - 2^23 - 2^21 + 2^18 + 2^16 - 2^12 - 2^10 - 2^6 + 2^4 + 1"
"znprimroot": 29
- "n": 4294080001
"n_hex": "0xfff27601"
"n_bit": "2^32 - 2^20 + 2^17 + 2^15 - 2^11 - 2^9 + 1"
"n_fac": "2^9 * 3^3 * 5^4 * 7 * 71 + 1"
"nd": 3381556735
"nd_hex": "0xc98e75ff"
"nd_bit": "2^32 - 2^30 + 2^27 + 2^25 - 2^23 + 2^20 - 2^17 + 2^15 - 2^11 - 2^9 - 1"
"r2": 1475776842
"r2_hex": "0x57f6914a"
"r2_bit": "2^31 - 2^29 - 2^27 - 2^19 - 2^17 + 2^15 + 2^12 + 2^8 + 2^6 + 2^3 + 2"
"znprimroot": 23
- "n": 4294702081
"n_hex": "0xfffbf401"
"n_bit": "2^32 - 2^18 - 2^12 + 2^10 + 1"
"n_fac": "2^10 * 3^3 * 5 * 47 * 661 + 1"
"nd": 3748393983
"nd_hex": "0xdf6bf3ff"
"nd_bit": "2^32 - 2^29 - 2^23 - 2^20 - 2^18 - 2^12 + 2^10 - 1"
"r2": 1623762929
"r2_hex": "0x60c8a7f1"
"r2_bit": "2^31 - 2^29 + 2^24 - 2^22 + 2^19 + 2^15 + 2^13 + 2^11 - 2^4 + 1"
"znprimroot": 7
- "n": 4294957057
"n_hex": "0xffffd801"
"n_bit": "2^32 - 2^13 - 2^11 + 1"
"n_fac": "2^11 * 3 * 13 * 53773 + 1"
"nd": 4190099455
"nd_hex": "0xf9bfd7ff"
"nd_bit": "2^32 - 2^27 + 2^25 - 2^22 - 2^13 - 2^11 - 1"
"r2": 104837121
"r2_hex": "0x63fb001"
"r2_bit": "2^27 - 2^25 + 2^22 - 2^14 - 2^12 + 1"
"znprimroot": 10
- "n": 4294809601
"n_hex": "0xfffd9801"
"n_bit": "2^32 - 2^17 - 2^15 + 2^13 - 2^11 + 1"
"n_fac": "2^11 * 3 * 5^2 * 27961 + 1"
"nd": 901617663
"nd_hex": "0x35bd97ff"
"nd_bit": "2^30 - 2^27 - 2^25 - 2^22 - 2^17 - 2^15 + 2^13 - 2^11 - 1"
"r2": 3393665020
"r2_hex": "0xca4737fc"
"r2_bit": "2^32 - 2^30 + 2^27 + 2^25 + 2^22 + 2^19 - 2^16 + 2^14 - 2^11 - 2^2"
"znprimroot": 14
- "n": 4294133761
"n_hex": "0xfff34801"
"n_bit": "2^32 - 2^20 + 2^18 - 2^16 + 2^14 + 2^11 + 1"
"n_fac": "2^11 * 3 * 5 * 7 * 19 * 1051 + 1"
"nd": 1001605119
"nd_hex": "0x3bb347ff"
"nd_bit": "2^30 - 2^26 - 2^22 - 2^20 + 2^18 - 2^16 + 2^14 + 2^11 - 1"
"r2": 3425060704
"r2_hex": "0xcc264760"
"r2_bit": "2^32 - 2^30 + 2^28 - 2^26 + 2^21 + 2^19 - 2^17 + 2^14 + 2^11 - 2^7 - 2^5"
"znprimroot": 17
- "n": 4294955009
"n_hex": "0xffffd001"
"n_bit": "2^32 - 2^14 + 2^12 + 1"
"n_fac": "2^12 * 1048573 + 1"
"nd": 4143960063
"nd_hex": "0xf6ffcfff"
"nd_bit": "2^32 - 2^27 - 2^24 - 2^14 + 2^12 - 1"
"r2": 150970369
"r2_hex": "0x8ffa001"
"r2_bit": "2^27 + 2^24 - 2^15 + 2^13 + 1"
"znprimroot": 3
- "n": 4294914049
"n_hex": "0xffff3001"
"n_bit": "2^32 - 2^16 + 2^14 - 2^12 + 1"
"n_fac": "2^12 * 3^2 * 116507 + 1"
"nd": 1459564543
"nd_hex": "0x56ff2fff"
"nd_bit": "2^31 - 2^29 - 2^27 - 2^24 - 2^16 + 2^14 - 2^12 - 1"
"r2": 2835243009
"r2_hex": "0xa8fe6001"
"r2_bit": "2^31 + 2^29 + 2^27 + 2^24 - 2^17 + 2^15 - 2^13 + 1"
"znprimroot": 7
- "n": 4294103041
"n_hex": "0xfff2d001"
"n_bit": "2^32 - 2^20 + 2^18 - 2^16 - 2^14 + 2^12 + 1"
"n_fac": "2^12 * 3^2 * 5 * 23297 + 1"
"nd": 385011711
"nd_hex": "0x16f2cfff"
"nd_bit": "2^29 - 2^27 - 2^24 - 2^20 + 2^18 - 2^16 - 2^14 + 2^12 - 1"
"r2": 4056878932
"r2_hex": "0xf1cf0f54"
"r2_bit": "2^32 - 2^28 + 2^25 - 2^22 + 2^20 - 2^16 + 2^12 - 2^8 + 2^6 + 2^4 + 2^2"
"znprimroot": 23
- "n": 4294828033
"n_hex": "0xfffde001"
"n_bit": "2^32 - 2^17 - 2^13 + 1"
"n_fac": "2^13 * 3 * 11 * 15887 + 1"
"nd": 2080235519
"nd_hex": "0x7bfddfff"
"nd_bit": "2^31 - 2^26 - 2^17 - 2^13 - 1"
"r2": 2214871037
"r2_hex": "0x84043ffd"
"r2_bit": "2^31 + 2^26 + 2^18 + 2^14 - 2^2 + 1"
"znprimroot": 10
- "n": 4294729729
"n_hex": "0xfffc6001"
"n_bit": "2^32 - 2^18 + 2^15 - 2^13 + 1"
"n_fac": "2^13 * 3^3 * 19417 + 1"
"nd": 3690749951
"nd_hex": "0xdbfc5fff"
"nd_bit": "2^32 - 2^29 - 2^26 - 2^18 + 2^15 - 2^13 - 1"
"r2": 606593012
"r2_hex": "0x2427dff4"
"r2_bit": "2^29 + 2^26 + 2^21 + 2^19 - 2^13 - 2^4 + 2^2"
"znprimroot": 21
- "n": 4294475777
"n_hex": "0xfff88001"
"n_bit": "2^32 - 2^19 + 2^15 + 1"
"n_fac": "2^15 * 83 * 1579 + 1"
"nd": 3220733951
"nd_hex": "0xbff87fff"
"nd_bit": "2^32 - 2^30 - 2^19 + 2^15 - 1"
"r2": 1100283849
"r2_hex": "0x4194ffc9"
"r2_bit": "2^30 + 2^25 - 2^23 + 2^20 + 2^18 + 2^16 - 2^6 + 2^3 + 1"
"znprimroot": 5
- "n": 4293918721
"n_hex": "0xfff00001"
"n_bit": "2^32 - 2^20 + 1"
"n_fac": "2^20 * 3^2 * 5 * 7 * 13 + 1"
"nd": 4293918719
"nd_hex": "0xffefffff"
"nd_bit": "2^32 - 2^20 - 1"
"r2": 266338049
"r2_hex": "0xfdfff01"
"r2_bit": "2^28 - 2^21 - 2^8 + 1"
"znprimroot": 19
- "n": 4276092929
"n_hex": "0xfee00001"
"n_bit": "2^32 - 2^24 - 2^21 + 1"
"n_fac": "2^21 * 2039 + 1"
"nd": 4276092927
"nd_hex": "0xfedfffff"
"nd_bit": "2^32 - 2^24 - 2^21 - 1"
"r2": 427735699
"r2_hex": "0x197eba93"
"r2_bit": "2^29 - 2^27 + 2^25 - 2^23 - 2^16 - 2^14 - 2^11 + 2^9 + 2^7 + 2^4 + 2^2 - 1"
"znprimroot": 3
- "n": 4183818241
"n_hex": "0xf9600001"
"n_bit": "2^32 - 2^27 + 2^25 - 2^23 - 2^21 + 1"
"n_fac": "2^21 * 3 * 5 * 7 * 19 + 1"
"nd": 4183818239
"nd_hex": "0xf95fffff"
"nd_bit": "2^32 - 2^27 + 2^25 - 2^23 - 2^21 - 1"
"r2": 43184513
"r2_hex": "0x292f181"
"r2_bit": "2^25 + 2^23 + 2^20 + 2^18 - 2^16 - 2^12 + 2^9 - 2^7 + 1"
"znprimroot": 13
- "n": 3837788161
"n_hex": "0xe4c00001"
"n_bit": "2^32 - 2^29 + 2^26 + 2^24 - 2^22 + 1"
"n_fac": "2^22 * 3 * 5 * 61 + 1"
"nd": 3837788159
"nd_hex": "0xe4bfffff"
"nd_bit": "2^32 - 2^29 + 2^26 + 2^24 - 2^22 - 1"
"r2": 2319514289
"r2_hex": "0x8a40fab1"
"r2_bit": "2^31 + 2^27 + 2^25 + 2^22 + 2^16 - 2^10 - 2^8 - 2^6 - 2^4 + 1"
"znprimroot": 31
- "n": 3208642561
"n_hex": "0xbf400001"
"n_bit": "2^32 - 2^30 - 2^24 + 2^22 + 1"
"n_fac": "2^22 * 3^2 * 5 * 17 + 1"
"nd": 3208642559
"nd_hex": "0xbf3fffff"
"nd_bit": "2^32 - 2^30 - 2^24 + 2^22 - 1"
"r2": 2824076972
"r2_hex": "0xa853feac"
"r2_bit": "2^31 + 2^29 + 2^27 + 2^22 + 2^20 + 2^18 - 2^8 - 2^6 - 2^4 - 2^2"
"znprimroot": 13
- "n": 1321205761
"n_hex": "0x4ec00001"
"n_bit": "2^30 + 2^28 - 2^24 - 2^22 + 1"
"n_fac": "2^22 * 3^2 * 5 * 7 + 1"
"nd": 1321205759
"nd_hex": "0x4ebfffff"
"nd_bit": "2^30 + 2^28 - 2^24 - 2^22 - 1"
"r2": 839646411
"r2_hex": "0x320bfccb"
"r2_bit": "2^30 - 2^28 + 2^25 + 2^20 - 2^18 - 2^10 + 2^8 - 2^6 + 2^4 - 2^2 - 1"
"znprimroot": 11
- "n": 4253024257
"n_hex": "0xfd800001"
"n_bit": "2^32 - 2^25 - 2^23 + 1"
"n_fac": "2^23 * 3 * 13^2 + 1"
"nd": 4253024255
"nd_hex": "0xfd7fffff"
"nd_bit": "2^32 - 2^25 - 2^23 - 1"
"r2": 1819914298
"r2_hex": "0x6c79b03a"
"r2_bit": "2^31 - 2^28 - 2^26 + 2^23 - 2^19 + 2^17 - 2^14 - 2^12 + 2^6 - 2^3 + 2"
"znprimroot": 5
- "n": 880803841
"n_hex": "0x34800001"
"n_bit": "2^30 - 2^28 + 2^26 + 2^23 + 1"
"n_fac": "2^23 * 3 * 5 * 7 + 1"
"nd": 880803839
"nd_hex": "0x347fffff"
"nd_bit": "2^30 - 2^28 + 2^26 + 2^23 - 1"
"r2": 464649016
"r2_hex": "0x1bb1fb38"
"r2_bit": "2^29 - 2^26 - 2^22 - 2^20 + 2^17 - 2^10 - 2^8 + 2^6 - 2^3"
"znprimroot": 26
- "n": 4076863489
"n_hex": "0xf3000001"
"n_bit": "2^32 - 2^28 + 2^26 - 2^24 + 1"
"n_fac": "2^24 * 3^5 + 1"
"nd": 4076863487
"nd_hex": "0xf2ffffff"
"nd_bit": "2^32 - 2^28 + 2^26 - 2^24 - 1"
"r2": 3444438393
"r2_hex": "0xcd4df579"
"r2_bit": "2^32 - 2^30 + 2^28 - 2^26 + 2^24 + 2^22 + 2^20 - 2^17 - 2^11 - 2^9 - 2^7 - 2^3 + 1"
"znprimroot": 7
- "n": 754974721
"n_hex": "0x2d000001"
"n_bit": "2^30 - 2^28 - 2^26 + 2^24 + 1"
"n_fac": "2^24 * 3^2 * 5 + 1"
"nd": 754974719
"nd_hex": "0x2cffffff"
"nd_bit": "2^30 - 2^28 - 2^26 + 2^24 - 1"
"r2": 749009521
"r2_hex": "0x2ca4fa71"
"r2_bit": "2^30 - 2^28 - 2^26 + 2^23 + 2^21 + 2^18 + 2^16 - 2^11 + 2^9 + 2^7 - 2^4 + 1"
"znprimroot": 11
- "n": 4194304001
"n_hex": "0xfa000001"
"n_bit": "2^32 - 2^27 + 2^25 + 1"
"n_fac": "2^25 * 5^3 + 1"
"nd": 4194303999
"nd_hex": "0xf9ffffff"
"nd_bit": "2^32 - 2^27 + 2^25 - 1"
"r2": 232465106
"r2_hex": "0xddb22d2"
"r2_bit": "2^28 - 2^25 - 2^21 - 2^18 - 2^16 + 2^13 + 2^10 - 2^8 - 2^6 + 2^4 + 2"
"znprimroot": 3
- "n": 2717908993
"n_hex": "0xa2000001"
"n_bit": "2^31 + 2^29 + 2^25 + 1"
"n_fac": "2^25 * 3^4 + 1"
"nd": 2717908991
"nd_hex": "0xa1ffffff"
"nd_bit": "2^31 + 2^29 + 2^25 - 1"
"r2": 2541023286
"r2_hex": "0x9774f036"
"r2_bit": "2^31 + 2^29 - 2^27 - 2^23 - 2^20 + 2^18 + 2^16 - 2^12 + 2^6 - 2^3 - 2"
"znprimroot": 5
- "n": 1811939329
"n_hex": "0x6c000001"
"n_bit": "2^31 - 2^28 - 2^26 + 1"
"n_fac": "2^26 * 3^3 + 1"
"nd": 1811939327
"nd_hex": "0x6bffffff"
"nd_bit": "2^31 - 2^28 - 2^26 - 1"
"r2": 959408210
"r2_hex": "0x392f6852"
"r2_bit": "2^30 - 2^27 + 2^24 + 2^22 - 2^20 - 2^15 - 2^13 + 2^11 + 2^6 + 2^4 + 2"
"znprimroot": 13
- "n": 3892314113
"n_hex": "0xe8000001"
"n_bit": "2^32 - 2^29 + 2^27 + 1"
"n_fac": "2^27 * 29 + 1"
"nd": 3892314111
"nd_hex": "0xe7ffffff"
"nd_bit": "2^32 - 2^29 + 2^27 - 1"
"r2": 1703176688
"r2_hex": "0x658469f0"
"r2_bit": "2^31 - 2^29 + 2^27 - 2^25 - 2^23 + 2^18 + 2^15 - 2^13 + 2^11 + 2^9 - 2^4"
"znprimroot": 3
- "n": 2013265921
"n_hex": "0x78000001"
"n_bit": "2^31 - 2^27 + 1"
"n_fac": "2^27 * 3 * 5 + 1"
"nd": 2013265919
"nd_hex": "0x77ffffff"
"nd_bit": "2^31 - 2^27 - 1"
"r2": 1172168163
"r2_hex": "0x45dddde3"
"r2_bit": "2^30 + 2^27 - 2^25 - 2^21 - 2^17 - 2^13 - 2^9 - 2^5 + 2^2 - 1"
"znprimroot": 31
- "n": 3489660929
"n_hex": "0xd0000001"
"n_bit": "2^32 - 2^30 + 2^28 + 1"
"n_fac": "2^28 * 13 + 1"
"nd": 3489660927
"nd_hex": "0xcfffffff"
"nd_bit": "2^32 - 2^30 + 2^28 - 1"
"r2": 1961643719
"r2_hex": "0x74ec4ec7"
"r2_bit": "2^31 - 2^28 + 2^26 + 2^24 - 2^20 - 2^18 + 2^14 + 2^12 - 2^8 - 2^6 + 2^3 - 1"
"znprimroot": 3
- "n": 3221225473
"n_hex": "0xc0000001"
"n_bit": "2^32 - 2^30 + 1"
"n_fac": "2^30 * 3 + 1"
"nd": 3221225471
"nd_hex": "0xbfffffff"
"nd_bit": "2^32 - 2^30 - 1"
"r2": 1789569709
"r2_hex": "0x6aaaaaad"
"r2_bit": "2^31 - 2^28 - 2^26 - 2^24 - 2^22 - 2^20 - 2^18 - 2^16 - 2^14 - 2^12 - 2^10 - 2^8 - 2^6 - 2^4 - 2^2 + 1"
"znprimroot": 5
- "r": 46
"primes":
- "n": 70368744177643
"n_hex": "0x3fffffffffeb"
"n_bit": "2^46 - 2^4 - 2^2 - 1"
"n_fac": "2 * 3 * 263 * 44593627489 + 1"
"nd": 56965173858109
"nd_hex": "0x33cf3cf3cf3d"
"nd_bit": "2^46 - 2^44 + 2^42 - 2^38 + 2^36 - 2^32 + 2^30 - 2^26 + 2^24 - 2^20 + 2^18 - 2^14 + 2^12 - 2^8 + 2^6 - 2^2 + 1"
"r2": 441
"r2_hex": "0x1b9"
"r2_bit": "2^9 - 2^6 - 2^3 + 1"
"znprimroot": 2
- "n": 70368744177271
"n_hex": "0x3ffffffffe77"
"n_bit": "2^46 - 2^9 + 2^7 - 2^3 - 1"
"n_fac": "2 * 3^2 * 5 * 7 * 11 * 1171 * 8671409 + 1"
"nd": 4655438546105
"nd_hex": "0x43bedc2c4b9"
"nd_bit": "2^42 + 2^38 - 2^34 - 2^28 - 2^25 - 2^22 + 2^18 - 2^16 - 2^14 + 2^10 + 2^8 - 2^6 - 2^3 + 1"
"r2": 154449
"r2_hex": "0x25b51"
"r2_bit": "2^17 + 2^15 - 2^13 - 2^10 - 2^8 + 2^6 + 2^4 + 1"
"znprimroot": 3
- "n": 70368744176221
"n_hex": "0x3ffffffffa5d"
"n_bit": "2^46 - 2^11 + 2^9 + 2^7 - 2^5 - 2^2 + 1"
"n_fac": "2^2 * 3 * 5 * 7 * 199 * 3011 * 279619 + 1"
"nd": 35940238710283
"nd_hex": "0x20affd29560b"
"nd_bit": "2^45 + 2^40 - 2^38 - 2^36 - 2^26 + 2^24 + 2^21 + 2^19 + 2^17 - 2^15 - 2^13 - 2^11 - 2^9 + 2^4 - 2^2 - 1"
"r2": 2082249
"r2_hex": "0x1fc5c9"
"r2_bit": "2^21 - 2^14 + 2^11 - 2^9 - 2^6 + 2^3 + 1"
"znprimroot": 2
- "n": 70368744177289
"n_hex": "0x3ffffffffe89"
"n_bit": "2^46 - 2^9 + 2^7 + 2^3 + 1"
"n_fac": "2^3 * 3^3 * 1123 * 290099041 + 1"
"nd": 49914895870023
"nd_hex": "0x2d65b7a32847"
"nd_bit": "2^46 - 2^44 - 2^41 - 2^39 - 2^37 + 2^35 - 2^33 - 2^30 - 2^27 - 2^23 + 2^21 + 2^18 - 2^16 + 2^13 + 2^11 + 2^6 + 2^3 - 1"
"r2": 140625
"r2_hex": "0x22551"
"r2_bit": "2^17 + 2^13 + 2^10 + 2^8 + 2^6 + 2^4 + 1"
"znprimroot": 7
- "n": 70368744174769
"n_hex": "0x3ffffffff4b1"
"n_bit": "2^46 - 2^12 + 2^10 + 2^8 - 2^6 - 2^4 + 1"
"n_fac": "2^4 * 3^2 * 13 * 37590141119 + 1"
"nd": 18862226418607
"nd_hex": "0x1127b44e2baf"
"nd_bit": "2^44 + 2^40 + 2^37 + 2^35 - 2^30 - 2^28 + 2^26 + 2^22 + 2^20 - 2^17 + 2^14 - 2^12 - 2^10 - 2^6 - 2^4 - 1"
"r2": 8381025
"r2_hex": "0x7fe261"
"r2_bit": "2^23 - 2^13 + 2^9 + 2^7 - 2^5 + 1"
"znprimroot": 7
- "n": 70368744174481
"n_hex": "0x3ffffffff391"
"n_bit": "2^46 - 2^12 + 2^10 - 2^7 + 2^4 + 1"
"n_fac": "2^4 * 3^5 * 5 * 71 * 163 * 312779 + 1"
"nd": 16160713790095
"nd_hex": "0xeb2b59ad28f"
"nd_bit": "2^44 - 2^40 - 2^38 - 2^36 + 2^34 - 2^32 - 2^30 - 2^27 - 2^25 - 2^23 + 2^21 - 2^18 - 2^16 - 2^14 + 2^12 + 2^9 + 2^7 + 2^4 - 1"
"r2": 10131489
"r2_hex": "0x9a9821"
"r2_bit": "2^23 + 2^21 - 2^19 + 2^17 + 2^15 + 2^13 - 2^11 + 2^5 + 1"
"znprimroot": 31
- "n": 70368744173473
"n_hex": "0x3fffffffefa1"
"n_bit": "2^46 - 2^12 - 2^7 + 2^5 + 1"
"n_fac": "2^5 * 3^2 * 244335917269 + 1"
"nd": 59572489702303
"nd_hex": "0x362e4d164b9f"
"nd_bit": "2^46 - 2^43 - 2^41 + 2^38 - 2^36 - 2^33 + 2^30 + 2^28 - 2^26 + 2^24 + 2^21 - 2^19 - 2^17 + 2^14 + 2^12 - 2^10 - 2^7 + 2^5 - 1"
"r2": 17564481
"r2_hex": "0x10c0341"
"r2_bit": "2^24 + 2^20 - 2^18 + 2^10 - 2^8 + 2^6 + 1"
"znprimroot": 5
- "n": 70368744166561
"n_hex": "0x3fffffffd4a1"
"n_bit": "2^46 - 2^14 + 2^12 + 2^10 + 2^7 + 2^5 + 1"
"n_fac": "2^5 * 3^2 * 5 * 7 * 67 * 104194421 + 1"
"nd": 14976253489311
"nd_hex": "0xd9eee44f09f"
"nd_bit": "2^44 - 2^41 - 2^39 + 2^37 - 2^32 - 2^28 - 2^25 + 2^22 + 2^18 + 2^16 - 2^12 + 2^7 + 2^5 - 1"
"r2": 123276609
"r2_hex": "0x7590d41"
"r2_bit": "2^27 - 2^23 - 2^21 - 2^19 + 2^16 + 2^12 - 2^10 + 2^8 + 2^6 + 1"
"znprimroot": 17
- "n": 70368744177601
"n_hex": "0x3fffffffffc1"
"n_bit": "2^46 - 2^6 + 1"
"n_fac": "2^6 * 3 * 5^2 * 11 * 17 * 31 * 41 * 61681 + 1"
"nd": 65900887404479
"nd_hex": "0x3befbefbefbf"
"nd_bit": "2^46 - 2^42 - 2^36 - 2^30 - 2^24 - 2^18 - 2^12 - 2^6 - 1"
"r2": 3969
"r2_hex": "0xf81"
"r2_bit": "2^12 - 2^7 + 1"
"znprimroot": 29
- "n": 70368744169921
"n_hex": "0x3fffffffe1c1"
"n_bit": "2^46 - 2^13 + 2^9 - 2^6 + 1"
"n_fac": "2^6 * 3 * 5 * 7 * 10471539311c + 1"
"nd": 69759845061055
"nd_hex": "0x3f723ac8d1bf"
"nd_bit": "2^46 - 2^39 - 2^36 + 2^33 + 2^30 - 2^26 - 2^24 - 2^22 + 2^19 + 2^16 - 2^14 + 2^12 + 2^9 - 2^6 - 1"
"r2": 59954049
"r2_hex": "0x392d381"
"r2_bit": "2^26 - 2^23 + 2^20 + 2^18 - 2^16 - 2^14 + 2^12 + 2^10 - 2^7 + 1"
"znprimroot": 39
- "n": 70368744169153
"n_hex": "0x3fffffffdec1"
"n_bit": "2^46 - 2^13 - 2^8 - 2^6 + 1"
"n_fac": "2^6 * 3^2 * 11 * 13 * 97 * 8807437 + 1"
"nd": 64556357013183
"nd_hex": "0x3ab6b2ba4ebf"
"nd_bit": "2^46 - 2^42 - 2^40 - 2^38 - 2^35 - 2^32 - 2^30 - 2^28 + 2^26 - 2^24 - 2^22 - 2^19 + 2^17 + 2^14 + 2^12 - 2^8 - 2^6 - 1"
"r2": 72437121
"r2_hex": "0x4514d81"
"r2_bit": "2^26 + 2^22 + 2^20 + 2^16 + 2^14 + 2^12 - 2^9 - 2^7 + 1"
"znprimroot": 5
- "n": 70368744075841
"n_hex": "0x3ffffffe7241"
"n_bit": "2^46 - 2^17 + 2^15 - 2^12 + 2^9 + 2^6 + 1"
"n_fac": "2^6 * 3^2 * 5 * 7 * 2693 * 1296143 + 1"
"nd": 21244072518207
"nd_hex": "0x13524565623f"
"nd_bit": "2^44 + 2^42 - 2^40 + 2^38 + 2^36 + 2^33 + 2^30 + 2^27 - 2^25 - 2^23 - 2^21 + 2^19 - 2^17 - 2^15 - 2^13 + 2^9 + 2^6 - 1"
"r2": 10367923329
"r2_hex": "0x269f9f481"
"r2_bit": "2^33 + 2^31 - 2^29 + 2^27 + 2^25 - 2^19 + 2^17 - 2^12 + 2^10 + 2^7 + 1"
"znprimroot": 33
- "n": 70368744055681
"n_hex": "0x3ffffffe2381"
"n_bit": "2^46 - 2^17 + 2^13 + 2^10 - 2^7 + 1"
"n_fac": "2^7 * 3^3 * 5 * 7 * 581752183 + 1"
"nd": 30046449427327
"nd_hex": "0x1b53bbf1e37f"
"nd_bit": "2^45 - 2^42 - 2^40 + 2^38 + 2^36 + 2^34 - 2^30 - 2^26 - 2^20 + 2^17 - 2^13 + 2^10 - 2^7 - 1"
"r2": 14879852289
"r2_hex": "0x376e88701"
"r2_bit": "2^34 - 2^31 - 2^27 - 2^24 - 2^21 + 2^19 + 2^15 + 2^11 - 2^8 + 1"
"znprimroot": 13
- "n": 70368744168193
"n_hex": "0x3fffffffdb01"
"n_bit": "2^46 - 2^13 - 2^10 - 2^8 + 1"
"n_fac": "2^8 * 3 * 107 * 856317467 + 1"
"nd": 19005727759103
"nd_hex": "0x11491da6daff"
"nd_bit": "2^44 + 2^40 + 2^38 + 2^35 + 2^32 + 2^29 - 2^25 - 2^23 + 2^21 + 2^19 - 2^16 - 2^13 - 2^10 - 2^8 - 1"
"r2": 89699841
"r2_hex": "0x558b601"
"r2_bit": "2^27 - 2^25 - 2^23 - 2^21 - 2^19 + 2^16 - 2^14 - 2^11 - 2^9 + 1"
"znprimroot": 5
- "n": 70368744166913
"n_hex": "0x3fffffffd601"
"n_bit": "2^46 - 2^13 - 2^11 - 2^9 + 1"
"n_fac": "2^9 * 19 * 7233629129 + 1"
"nd": 39370104755711
"nd_hex": "0x23ce911bd5ff"
"nd_bit": "2^45 + 2^42 - 2^38 + 2^36 - 2^33 + 2^31 + 2^28 + 2^24 + 2^21 - 2^18 - 2^13 - 2^11 - 2^9 - 1"
"r2": 115584001
"r2_hex": "0x6e3ac01"
"r2_bit": "2^27 - 2^24 - 2^21 + 2^18 - 2^14 - 2^12 - 2^10 + 1"
"znprimroot": 3
- "n": 70368744153601
"n_hex": "0x3fffffffa201"
"n_bit": "2^46 - 2^15 + 2^13 + 2^9 + 1"
"n_fac": "2^9 * 3^2 * 5^2 * 610839793 + 1"
"nd": 69558697959935
"nd_hex": "0x3f43657ba1ff"
"nd_bit": "2^46 - 2^40 + 2^38 + 2^34 - 2^31 - 2^29 + 2^27 - 2^25 - 2^23 - 2^18 - 2^15 + 2^13 + 2^9 - 1"
"r2": 579027969
"r2_hex": "0x22834401"
"r2_bit": "2^29 + 2^25 + 2^23 + 2^18 - 2^16 + 2^14 + 2^10 + 1"
"znprimroot": 7
- "n": 70368744122881
"n_hex": "0x3fffffff2a01"
"n_bit": "2^46 - 2^16 + 2^13 + 2^11 + 2^9 + 1"
"n_fac": "2^9 * 3 * 5 * 7 * 1308942413c + 1"
"nd": 52109581691391
"nd_hex": "0x2f64b51b29ff"
"nd_bit": "2^46 - 2^44 - 2^39 - 2^37 + 2^34 + 2^32 - 2^30 - 2^28 + 2^26 + 2^24 + 2^21 - 2^18 - 2^16 + 2^13 + 2^11 + 2^9 - 1"
"r2": 3001177089
"r2_hex": "0xb2e25401"
"r2_bit": "2^32 - 2^30 - 2^28 + 2^26 - 2^24 - 2^21 + 2^17 + 2^14 + 2^12 + 2^10 + 1"
"znprimroot": 11
- "n": 70368743370241
"n_hex": "0x3ffffff3ae01"
"n_bit": "2^46 - 2^20 + 2^18 - 2^14 - 2^12 - 2^9 + 1"
"n_fac": "2^9 * 3^2 * 5 * 7 * 436314133c + 1"
"nd": 38888474127871
"nd_hex": "0x235e6dafadff"
"nd_bit": "2^45 + 2^42 - 2^39 - 2^37 - 2^33 + 2^31 - 2^28 - 2^25 - 2^22 - 2^20 - 2^14 - 2^12 - 2^9 - 1"
"r2": 651931900929
"r2_hex": "0x97ca2b5c01"
"r2_bit": "2^39 + 2^37 - 2^35 - 2^30 + 2^27 + 2^25 + 2^22 - 2^20 - 2^18 - 2^15 - 2^13 - 2^10 + 1"
"znprimroot": 11
- "n": 70368744137729
"n_hex": "0x3fffffff6401"
"n_bit": "2^46 - 2^15 - 2^13 + 2^10 + 1"
"n_fac": "2^10 * 19 * 3616814563 + 1"
"nd": 40758718456831
"nd_hex": "0x2511e0ef63ff"
"nd_bit": "2^45 + 2^42 + 2^40 + 2^36 + 2^33 - 2^29 + 2^24 - 2^20 - 2^15 - 2^13 + 2^10 - 1"
"r2": 1594804225
"r2_hex": "0x5f0ec801"
"r2_bit": "2^31 - 2^29 - 2^24 + 2^20 - 2^16 - 2^14 + 2^11 + 1"
"znprimroot": 3
- "n": 70368744127489
"n_hex": "0x3fffffff3c01"
"n_bit": "2^46 - 2^16 + 2^14 - 2^10 + 1"
"n_fac": "2^10 * 3 * 59 * 1481 * 262151 + 1"
"nd": 13310807194623
"nd_hex": "0xc1b29ef3bff"
"nd_bit": "2^44 - 2^42 + 2^37 - 2^34 - 2^32 + 2^29 + 2^27 + 2^25 - 2^20 - 2^16 + 2^14 - 2^10 - 1"
"r2": 2517530625
"r2_hex": "0x960e7801"
"r2_bit": "2^31 + 2^29 - 2^27 - 2^25 + 2^20 - 2^17 + 2^15 - 2^11 + 1"
"znprimroot": 7
- "n": 70368744023041
"n_hex": "0x3ffffffda401"
"n_bit": "2^46 - 2^17 - 2^15 + 2^13 + 2^10 + 1"
"n_fac": "2^10 * 3 * 5 * 587 * 7804597 + 1"
"nd": 66763906458623
"nd_hex": "0x3cb8aeeda3ff"
"nd_bit": "2^46 - 2^42 + 2^40 - 2^38 - 2^35 + 2^32 - 2^30 - 2^28 - 2^24 - 2^20 - 2^17 - 2^15 + 2^13 + 2^10 - 1"
"r2": 23908272129
"r2_hex": "0x5910b4801"
"r2_bit": "2^35 - 2^33 - 2^31 + 2^28 + 2^24 + 2^20 - 2^18 - 2^16 + 2^14 + 2^11 + 1"
"znprimroot": 11
- "n": 70368742671361
"n_hex": "0x3fffffe90401"
"n_bit": "2^46 - 2^21 + 2^19 + 2^16 + 2^10 + 1"
"n_fac": "2^10 * 3 * 5 * 7 * 47 * 13924919 + 1"
"nd": 5085104505855
"nd_hex": "0x49ff7d903ff"
"nd_bit": "2^42 + 2^39 + 2^37 - 2^27 - 2^21 - 2^19 + 2^16 + 2^10 - 1"
"r2": 2268948727809
"r2_hex": "0x21047e20801"
"r2_bit": "2^41 + 2^36 + 2^30 + 2^27 - 2^21 + 2^17 + 2^11 + 1"
"znprimroot": 17
- "n": 70368740305921
"n_hex": "0x3fffffc4ec01"
"n_bit": "2^46 - 2^22 + 2^18 + 2^16 - 2^12 - 2^10 + 1"
"n_fac": "2^10 * 3^6 * 5 * 7 * 107 * 25171 + 1"
"nd": 18341761969151
"nd_hex": "0x10ae8634ebff"
"nd_bit": "2^44 + 2^40 - 2^38 - 2^36 - 2^33 + 2^31 + 2^27 - 2^25 + 2^22 - 2^20 + 2^18 + 2^16 - 2^12 - 2^10 - 1"
"r2": 14990393858049
"r2_hex": "0xda23919d801"
"r2_bit": "2^44 - 2^41 - 2^39 + 2^37 + 2^33 + 2^30 - 2^27 + 2^24 + 2^21 - 2^19 + 2^17 - 2^13 - 2^11 + 1"
"znprimroot": 11
- "n": 70368744019969
"n_hex": "0x3ffffffd9801"
"n_bit": "2^46 - 2^17 - 2^15 + 2^13 - 2^11 + 1"
"n_fac": "2^11 * 3^2 * 1163 * 3282673 + 1"
"nd": 1444010629119
"nd_hex": "0x15035bd97ff"
"nd_bit": "2^40 + 2^38 + 2^36 + 2^30 - 2^27 - 2^25 - 2^22 - 2^17 - 2^15 + 2^13 - 2^11 - 1"
"r2": 24867713025
"r2_hex": "0x5ca3b3001"
"r2_bit": "2^35 - 2^33 - 2^30 + 2^27 + 2^25 + 2^22 - 2^18 - 2^16 + 2^14 - 2^12 + 1"
"znprimroot": 11
- "n": 70368739338241
"n_hex": "0x3fffffb62801"
"n_bit": "2^46 - 2^22 - 2^19 - 2^17 + 2^13 + 2^11 + 1"
"n_fac": "2^11 * 3^3 * 5 * 7 * 1433 * 25373 + 1"
"nd": 17785886746623
"nd_hex": "0x102d197627ff"
"nd_bit": "2^44 + 2^38 - 2^36 - 2^34 + 2^32 + 2^29 - 2^27 + 2^25 - 2^23 - 2^19 - 2^17 + 2^13 + 2^11 - 1"
"r2": 23420014972929
"r2_hex": "0x154ce5ac5001"
"r2_bit": "2^44 + 2^42 + 2^40 + 2^38 + 2^36 - 2^34 + 2^32 - 2^29 + 2^27 - 2^25 - 2^22 - 2^20 - 2^18 + 2^14 + 2^12 + 1"
"znprimroot": 19
- "n": 70368744067073
"n_hex": "0x3ffffffe5001"
"n_bit": "2^46 - 2^17 + 2^14 + 2^12 + 1"
"n_fac": "2^12 * 11 * 47 * 59 * 563219 + 1"
"nd": 54757192257535
"nd_hex": "0x31cd26fe4fff"
"nd_bit": "2^46 - 2^44 + 2^41 - 2^38 + 2^36 - 2^34 + 2^32 + 2^29 + 2^27 - 2^24 - 2^17 + 2^14 + 2^12 - 1"
"r2": 12230369281
"r2_hex": "0x2d8fca001"
"r2_bit": "2^34 - 2^32 - 2^29 - 2^27 + 2^24 - 2^18 + 2^15 + 2^13 + 1"
"znprimroot": 5
- "n": 70368743755777
"n_hex": "0x3ffffff99001"
"n_bit": "2^46 - 2^19 + 2^17 - 2^15 + 2^12 + 1"
"n_fac": "2^12 * 3 * 8209 * 697603 + 1"
"nd": 62013136539647
"nd_hex": "0x38668ef98fff"
"nd_bit": "2^46 - 2^43 + 2^39 - 2^37 + 2^35 - 2^33 + 2^31 + 2^28 - 2^24 - 2^19 + 2^17 - 2^15 + 2^12 - 1"
"r2": 177988640769
"r2_hex": "0x2970f32001"
"r2_bit": "2^37 + 2^35 + 2^33 - 2^31 - 2^28 + 2^24 - 2^20 + 2^18 - 2^16 + 2^13 + 1"
"znprimroot": 5
- "n": 70368742133761
"n_hex": "0x3fffffe0d001"
"n_bit": "2^46 - 2^21 + 2^16 - 2^14 + 2^12 + 1"
"n_fac": "2^12 * 3 * 5 * 7^2 * 19 * 29 * 59 * 719 + 1"
"nd": 41246028517375
"nd_hex": "0x258356e0cfff"
"nd_bit": "2^45 + 2^43 - 2^41 - 2^39 + 2^34 - 2^31 - 2^29 - 2^27 - 2^24 - 2^21 + 2^16 - 2^14 + 2^12 - 1"
"r2": 4177539473409
"r2_hex": "0x3cca8c1a001"
"r2_bit": "2^42 - 2^38 + 2^36 - 2^34 + 2^31 + 2^29 + 2^27 + 2^24 - 2^22 + 2^17 - 2^15 + 2^13 + 1"
"znprimroot": 13
- "n": 70368737402881
"n_hex": "0x3fffff98a001"
"n_bit": "2^46 - 2^23 + 2^21 - 2^19 + 2^15 + 2^13 + 1"
"n_fac": "2^13 * 3^4 * 5 * 7 * 3029959 + 1"
"nd": 58006143803391
"nd_hex": "0x34c19b989fff"
"nd_bit": "2^46 - 2^44 + 2^42 + 2^40 - 2^38 + 2^33 - 2^31 + 2^29 - 2^26 - 2^23 + 2^21 - 2^19 + 2^15 + 2^13 - 1"
"r2": 45897684697089
"r2_hex": "0x29be63314001"
"r2_bit": "2^45 + 2^43 + 2^41 - 2^38 - 2^33 + 2^31 - 2^29 + 2^26 - 2^24 + 2^22 - 2^20 + 2^16 + 2^14 + 1"
"znprimroot": 13
- "n": 70368743669761
"n_hex": "0x3ffffff84001"
"n_bit": "2^46 - 2^19 + 2^14 + 1"
"n_fac": "2^14 * 3^2 * 5 * 95443717 + 1"
"nd": 4140079529983
"nd_hex": "0x3c3eff83fff"
"nd_bit": "2^42 - 2^38 + 2^34 - 2^28 - 2^19 + 2^14 - 1"
"r2": 257965457409
"r2_hex": "0x3c0ff08001"
"r2_bit": "2^38 - 2^34 + 2^28 - 2^20 + 2^15 + 1"
"znprimroot": 7
- "n": 70368703856641
"n_hex": "0x3ffffd98c001"
"n_bit": "2^46 - 2^25 - 2^23 + 2^21 - 2^19 + 2^16 - 2^14 + 1"
"n_fac": "2^14 * 3^2 * 5 * 7 * 13634809 + 1"
"nd": 41074610978815
"nd_hex": "0x255b6d98bfff"
"nd_bit": "2^45 + 2^43 - 2^41 - 2^39 - 2^37 - 2^34 - 2^31 - 2^28 - 2^25 - 2^23 + 2^21 - 2^19 + 2^16 - 2^14 - 1"
"r2": 7304707063786
"r2_hex": "0x6a4c2783fea"
"r2_bit": "2^43 - 2^41 + 2^39 + 2^37 + 2^34 + 2^32 - 2^30 + 2^25 + 2^23 - 2^19 + 2^14 - 2^5 + 2^3 + 2"
"znprimroot": 19
- "n": 70368737329153
"n_hex": "0x3fffff978001"
"n_bit": "2^46 - 2^23 + 2^21 - 2^19 - 2^15 + 1"
"n_fac": "2^15 * 3^2 * 47 * 5076793 + 1"
"nd": 58650992803839
"nd_hex": "0x3557bf977fff"
"nd_bit": "2^46 - 2^43 - 2^41 - 2^39 - 2^37 - 2^35 - 2^30 - 2^23 + 2^21 - 2^19 - 2^15 - 1"
"r2": 46902102917121
"r2_hex": "0x2aa83f2f0001"
"r2_bit": "2^45 + 2^43 + 2^41 + 2^39 + 2^37 + 2^35 + 2^30 - 2^24 + 2^22 - 2^20 - 2^16 + 1"
"znprimroot": 5
- "n": 70368660848641
"n_hex": "0x3ffffb088001"
"n_bit": "2^46 - 2^26 - 2^24 + 2^19 + 2^15 + 1"
"n_fac": "2^15 * 3 * 5 * 7^2 * 11 * 265613 + 1"
"nd": 57963721555967
"nd_hex": "0x34b7bb087fff"
"nd_bit": "2^46 - 2^44 + 2^42 + 2^40 - 2^38 - 2^35 - 2^30 - 2^26 - 2^24 + 2^19 + 2^15 - 1"
"r2": 47597310967711
"r2_hex": "0x2b4a1ccfff9f"
"r2_bit": "2^46 - 2^44 - 2^42 - 2^40 + 2^38 + 2^35 + 2^33 + 2^29 - 2^26 + 2^24 - 2^22 + 2^20 - 2^7 + 2^5 - 1"
"znprimroot": 41
- "n": 70368585154561
"n_hex": "0x3ffff6858001"
"n_bit": "2^46 - 2^27 - 2^25 + 2^23 + 2^19 - 2^17 - 2^15 + 1"
"n_fac": "2^15 * 3^2 * 5 * 7 * 11 * 619763 + 1"
"nd": 9215767052287
"nd_hex": "0x861b6857fff"
"nd_bit": "2^43 + 2^39 - 2^37 + 2^33 - 2^30 - 2^27 - 2^25 + 2^23 + 2^19 - 2^17 - 2^15 - 1"
"r2": 26025217261210
"r2_hex": "0x17ab77d47e9a"
"r2_bit": "2^45 - 2^43 - 2^38 - 2^36 - 2^34 - 2^31 - 2^27 - 2^22 + 2^20 + 2^18 + 2^15 - 2^9 + 2^7 + 2^5 - 2^3 + 2"
"znprimroot": 17
- "n": 70368743587841
"n_hex": "0x3ffffff70001"
"n_bit": "2^46 - 2^19 - 2^16 + 1"
"n_fac": "2^16 * 5 * 6553 * 32771 + 1"
"nd": 70020851236863
"nd_hex": "0x3faefff6ffff"
"nd_bit": "2^46 - 2^38 - 2^36 - 2^32 - 2^19 - 2^16 - 1"
"r2": 347891171329
"r2_hex": "0x50ffee0001"
"r2_bit": "2^38 + 2^36 + 2^32 - 2^20 - 2^17 + 1"
"znprimroot": 3
- "n": 70368737034241
"n_hex": "0x3fffff930001"
"n_bit": "2^46 - 2^23 + 2^20 + 2^18 - 2^16 + 1"
"n_fac": "2^16 * 3^2 * 5 * 23860927 + 1"
"nd": 19340230590463
"nd_hex": "0x1196ff92ffff"
"nd_bit": "2^44 + 2^41 - 2^39 + 2^37 - 2^35 - 2^32 - 2^23 + 2^20 + 2^18 - 2^16 - 1"
"r2": 51028492156929
"r2_hex": "0x2e68ff260001"
"r2_bit": "2^46 - 2^44 - 2^41 + 2^39 - 2^37 + 2^35 + 2^32 - 2^24 + 2^21 + 2^19 - 2^17 + 1"
"znprimroot": 17
- "n": 70368540426241
"n_hex": "0x3ffff3db0001"
"n_bit": "2^46 - 2^28 + 2^26 - 2^21 - 2^18 - 2^16 + 1"
"n_fac": "2^16 * 3 * 5 * 7^2 * 733 * 1993 + 1"
"nd": 2916079042559
"nd_hex": "0x2a6f3daffff"
"nd_bit": "2^41 + 2^39 + 2^37 + 2^35 - 2^32 - 2^28 + 2^26 - 2^21 - 2^18 - 2^16 - 1"
"r2": 67572063468980
"r2_hex": "0x3d74d8d6fdb4"
"r2_bit": "2^46 - 2^41 - 2^39 - 2^36 + 2^34 + 2^32 - 2^29 - 2^27 + 2^24 - 2^21 - 2^19 - 2^16 - 2^9 - 2^6 - 2^4 + 2^2"
"znprimroot": 13
- "n": 70368715210753
"n_hex": "0x3ffffe460001"
"n_bit": "2^46 - 2^25 + 2^22 + 2^19 - 2^17 + 1"
"n_fac": "2^17 * 3^2 * 7 * 149 * 57193 + 1"
"nd": 5342910349311
"nd_hex": "0x4dbfe45ffff"
"nd_bit": "2^42 + 2^40 - 2^37 - 2^34 - 2^25 + 2^22 + 2^19 - 2^17 - 1"
"r2": 65026065563638
"r2_hex": "0x3b240f89fff6"
"r2_bit": "2^46 - 2^42 - 2^40 + 2^37 + 2^34 + 2^28 - 2^23 + 2^19 + 2^17 - 2^3 - 2"
"znprimroot": 10
- "n": 70368710492161
"n_hex": "0x3ffffdfe0001"
"n_bit": "2^46 - 2^25 - 2^17 + 1"
"n_fac": "2^17 * 3^2 * 5 * 53 * 163 * 1381 + 1"
"nd": 61555437600767
"nd_hex": "0x37fbfdfdffff"
"nd_bit": "2^46 - 2^43 - 2^34 - 2^25 - 2^17 - 1"
"r2": 8813744488433
"r2_hex": "0x8041c1bfff1"
"r2_bit": "2^43 + 2^34 + 2^29 - 2^26 + 2^21 - 2^18 - 2^4 + 1"
"znprimroot": 19
- "n": 70368533544961
"n_hex": "0x3ffff3720001"
"n_bit": "2^46 - 2^28 + 2^26 - 2^23 - 2^20 + 2^17 + 1"
"n_fac": "2^17 * 3^2 * 5 * 7 * 1704347 + 1"
"nd": 36541371121663
"nd_hex": "0x213bf371ffff"
"nd_bit": "2^45 + 2^40 + 2^38 - 2^34 - 2^28 + 2^26 - 2^23 - 2^20 + 2^17 - 1"
"r2": 33959439760779
"r2_hex": "0x1ee2cc57fd8b"
"r2_bit": "2^45 - 2^40 - 2^37 + 2^34 - 2^32 - 2^30 + 2^28 - 2^26 + 2^23 - 2^21 - 2^19 - 2^9 - 2^7 + 2^4 - 2^2 - 1"
"znprimroot": 13
- "n": 70368740769793
"n_hex": "0x3fffffcc0001"
"n_bit": "2^46 - 2^22 + 2^20 - 2^18 + 1"
"n_fac": "2^18 * 3 * 79 * 1132639 + 1"
"nd": 58755149201407
"nd_hex": "0x356fffcbffff"
"nd_bit": "2^46 - 2^43 - 2^41 - 2^39 - 2^36 - 2^22 + 2^20 - 2^18 - 1"
"r2": 11613584752641
"r2_hex": "0xa8fff980001"
"r2_bit": "2^43 + 2^41 + 2^39 + 2^36 - 2^23 + 2^21 - 2^19 + 1"
"znprimroot": 5
- "n": 70368720322561
"n_hex": "0x3ffffe940001"
"n_bit": "2^46 - 2^25 + 2^23 + 2^20 + 2^18 + 1"
"n_fac": "2^18 * 3 * 5 * 11 * 1626881 + 1"
"nd": 64252686893055
"nd_hex": "0x3a6ffe93ffff"
"nd_bit": "2^46 - 2^43 + 2^41 + 2^39 - 2^36 - 2^25 + 2^23 + 2^20 + 2^18 - 1"
"r2": 6116176560121
"r2_hex": "0x5900887fff9"
"r2_bit": "2^43 - 2^41 - 2^39 + 2^36 + 2^27 + 2^23 + 2^19 - 2^3 + 1"
"znprimroot": 7
- "n": 70368695156737
"n_hex": "0x3ffffd140001"
"n_bit": "2^46 - 2^26 + 2^24 + 2^20 + 2^18 + 1"
"n_fac": "2^18 * 3^3 * 9942047 + 1"
"nd": 59854615216127
"nd_hex": "0x366ffd13ffff"
"nd_bit": "2^46 - 2^43 - 2^41 + 2^39 - 2^36 - 2^26 + 2^24 + 2^20 + 2^18 - 1"
"r2": 10515648610271
"r2_hex": "0x9905d7fffdf"
"r2_bit": "2^43 + 2^41 - 2^39 + 2^36 + 2^31 - 2^29 - 2^25 - 2^23 - 2^5 - 1"
"znprimroot": 7
- "n": 70368539443201
"n_hex": "0x3ffff3cc0001"
"n_bit": "2^46 - 2^28 + 2^26 - 2^22 + 2^20 - 2^18 + 1"
"n_fac": "2^18 * 3^3 * 5^2 * 17 * 149 * 157 + 1"
"nd": 23570575785983
"nd_hex": "0x156ff3cbffff"
"nd_bit": "2^45 - 2^43 - 2^41 - 2^39 - 2^36 - 2^28 + 2^26 - 2^22 + 2^20 - 2^18 - 1"
"r2": 46919371193774
"r2_hex": "0x2aac4473fdae"
"r2_bit": "2^46 - 2^44 - 2^42 - 2^40 - 2^38 - 2^36 - 2^34 + 2^30 + 2^26 + 2^23 - 2^20 + 2^18 - 2^9 - 2^6 - 2^4 - 2"
"znprimroot": 7
- "n": 70367666503681
"n_hex": "0x3fffbfc40001"
"n_bit": "2^46 - 2^30 - 2^22 + 2^18 + 1"
"n_fac": "2^18 * 3^2 * 5 * 7 * 13 * 65551 + 1"
"nd": 54905784238079
"nd_hex": "0x31efbfc3ffff"
"nd_bit": "2^46 - 2^44 + 2^41 - 2^36 - 2^30 - 2^22 + 2^18 - 1"
"r2": 33245658333065
"r2_hex": "0x1e3c9ba7bf89"
"r2_bit": "2^45 - 2^41 + 2^38 - 2^34 + 2^31 + 2^29 - 2^26 - 2^23 + 2^21 + 2^19 - 2^14 - 2^7 + 2^3 + 1"
"znprimroot": 29
- "n": 70368738410497
"n_hex": "0x3fffffa80001"
"n_bit": "2^46 - 2^23 + 2^21 + 2^19 + 1"
"n_fac": "2^19 * 3 * 4889 * 9151 + 1"
"nd": 37108511670271
"nd_hex": "0x21bfffa7ffff"
"nd_bit": "2^45 + 2^41 - 2^38 - 2^23 + 2^21 + 2^19 - 1"
"r2": 33260215205889
"r2_hex": "0x1e3fff500001"
"r2_bit": "2^45 - 2^41 + 2^38 - 2^24 + 2^22 + 2^20 + 1"
"znprimroot": 11
- "n": 70368338903041
"n_hex": "0x3fffe7d80001"
"n_bit": "2^46 - 2^29 + 2^27 - 2^21 - 2^19 + 1"
"n_fac": "2^19 * 3^2 * 5 * 17 * 175447 + 1"
"nd": 63496391229439
"nd_hex": "0x39bfe7d7ffff"
"nd_bit": "2^46 - 2^43 + 2^41 - 2^38 - 2^29 + 2^27 - 2^21 - 2^19 - 1"
"r2": 7817048094435
"r2_hex": "0x71c0c5ff6e3"
"r2_bit": "2^43 - 2^40 + 2^37 - 2^34 + 2^28 - 2^26 + 2^23 - 2^21 - 2^11 - 2^8 - 2^5 + 2^2 - 1"
"znprimroot": 37
- "n": 70368636174337
"n_hex": "0x3ffff9900001"
"n_bit": "2^46 - 2^27 + 2^25 - 2^23 + 2^20 + 1"
"n_fac": "2^20 * 3^2 * 211 * 35339 + 1"
"nd": 16492566413311
"nd_hex": "0xefff98fffff"
"nd_bit": "2^44 - 2^40 - 2^27 + 2^25 - 2^23 + 2^20 - 1"
"r2": 53893674303324
"r2_hex": "0x3104194fff5c"
"r2_bit": "2^46 - 2^44 + 2^40 + 2^34 + 2^29 - 2^27 + 2^24 + 2^22 + 2^20 - 2^7 - 2^5 - 2^2"
"znprimroot": 5
- "n": 70368535511041
"n_hex": "0x3ffff3900001"
"n_bit": "2^46 - 2^28 + 2^26 - 2^23 + 2^20 + 1"
"n_fac": "2^20 * 3 * 5 * 13 * 19 * 59 * 307 + 1"
"nd": 16492465750015
"nd_hex": "0xefff38fffff"
"nd_bit": "2^44 - 2^40 - 2^28 + 2^26 - 2^23 + 2^20 - 1"
"r2": 54004608400791
"r2_hex": "0x311ded7ffd97"
"r2_bit": "2^46 - 2^44 + 2^40 + 2^37 - 2^33 - 2^28 - 2^25 - 2^23 - 2^9 - 2^7 + 2^5 - 2^3 - 1"
"znprimroot": 14
- "n": 70368519782401
"n_hex": "0x3ffff2a00001"
"n_bit": "2^46 - 2^28 + 2^25 + 2^23 + 2^21 + 1"
"n_fac": "2^21 * 3 * 5^2 * 7 * 63913 + 1"
"nd": 30786101182463
"nd_hex": "0x1bfff29fffff"
"nd_bit": "2^45 - 2^42 - 2^28 + 2^25 + 2^23 + 2^21 - 1"
"r2": 39742412422454
"r2_hex": "0x2425405ffd36"
"r2_bit": "2^45 + 2^42 + 2^37 + 2^34 + 2^32 + 2^30 + 2^23 - 2^21 - 2^10 + 2^8 + 2^6 - 2^3 - 2"
"znprimroot": 17
- "n": 70367890636801
"n_hex": "0x3fffcd200001"
"n_bit": "2^46 - 2^30 + 2^28 - 2^26 + 2^24 + 2^21 + 1"
"n_fac": "2^21 * 3^2 * 5^2 * 197 * 757 + 1"
"nd": 65969844125695
"nd_hex": "0x3bffcd1fffff"
"nd_bit": "2^46 - 2^42 - 2^30 + 2^28 - 2^26 + 2^24 + 2^21 - 1"
"r2": 13233047984016
"r2_hex": "0xc090f1fd790"
"r2_bit": "2^44 - 2^42 + 2^35 + 2^32 + 2^28 - 2^24 + 2^21 - 2^13 - 2^11 - 2^7 + 2^4"
"znprimroot": 11
- "n": 70368714817537
"n_hex": "0x3ffffe400001"
"n_bit": "2^46 - 2^25 + 2^22 + 1"
"n_fac": "2^22 * 3 * 19 * 294337 + 1"
"nd": 52776528773119
"nd_hex": "0x2ffffe3fffff"
"nd_bit": "2^46 - 2^44 - 2^25 + 2^22 - 1"
"r2": 17592479645685
"r2_hex": "0x1000117ffff5"
"r2_bit": "2^44 + 2^28 + 2^25 - 2^23 - 2^4 + 2^2 + 1"
"znprimroot": 5
- "n": 70368588988417
"n_hex": "0x3ffff6c00001"
"n_bit": "2^46 - 2^27 - 2^24 - 2^22 + 1"
"n_fac": "2^22 * 3^3 * 419 * 1483 + 1"
"nd": 52776402943999
"nd_hex": "0x2ffff6bfffff"
"nd_bit": "2^46 - 2^44 - 2^27 - 2^24 - 2^22 - 1"
"r2": 17644950388395
"r2_hex": "0x100c48fffeab"
"r2_bit": "2^44 + 2^36 - 2^34 + 2^30 + 2^27 + 2^24 - 2^8 - 2^6 - 2^4 - 2^2 - 1"
"znprimroot": 5
- "n": 70366852546561
"n_hex": "0x3fff8f400001"
"n_bit": "2^46 - 2^31 + 2^28 - 2^24 + 2^22 + 1"
"n_fac": "2^22 * 3^2 * 5 * 372817 + 1"
"nd": 52774666502143
"nd_hex": "0x2fff8f3fffff"
"nd_bit": "2^46 - 2^44 - 2^31 + 2^28 - 2^24 + 2^22 - 1"
"r2": 43410991823198
"r2_hex": "0x277b68bf395e"
"r2_bit": "2^45 + 2^43 - 2^39 - 2^34 - 2^31 - 2^29 + 2^27 + 2^24 - 2^22 - 2^16 + 2^14 - 2^11 + 2^9 - 2^7 - 2^5 - 2"
"znprimroot": 11
- "n": 70366097571841
"n_hex": "0x3fff62400001"
"n_bit": "2^46 - 2^31 - 2^29 + 2^25 + 2^22 + 1"
"n_fac": "2^22 * 3^3 * 5 * 7 * 41 * 433 + 1"
"nd": 52773911527423
"nd_hex": "0x2fff623fffff"
"nd_bit": "2^46 - 2^44 - 2^31 - 2^29 + 2^25 + 2^22 - 1"
"r2": 69931743738666
"r2_hex": "0x3f9a40be7b2a"
"r2_bit": "2^46 - 2^39 + 2^37 - 2^35 + 2^33 + 2^30 + 2^24 - 2^22 - 2^17 + 2^15 - 2^10 - 2^8 + 2^5 + 2^3 + 2"
"znprimroot": 31
- "n": 70364021391361
"n_hex": "0x3ffee6800001"
"n_bit": "2^46 - 2^32 - 2^29 + 2^27 - 2^25 + 2^23 + 1"
"n_fac": "2^23 * 3^2 * 5 * 53 * 3517 + 1"
"nd": 70364021391359
"nd_hex": "0x3ffee67fffff"
"nd_bit": "2^46 - 2^32 - 2^29 + 2^27 - 2^25 + 2^23 - 1"
"r2": 19322956884419
"r2_hex": "0x1192f9fb29c3"
"r2_bit": "2^44 + 2^41 - 2^39 + 2^36 + 2^34 - 2^32 - 2^27 + 2^25 - 2^18 - 2^16 + 2^13 + 2^11 + 2^9 - 2^6 + 2^2 - 1"
"znprimroot": 14
- "n": 70354206720001
"n_hex": "0x3ffc9d800001"
"n_bit": "2^46 - 2^34 + 2^31 + 2^29 - 2^25 - 2^23 + 1"
"n_fac": "2^23 * 3^3 * 5^4 * 7 * 71 + 1"
"nd": 70354206719999
"nd_hex": "0x3ffc9d7fffff"
"nd_bit": "2^46 - 2^34 + 2^31 + 2^29 - 2^25 - 2^23 - 1"
"r2": 40549445937660
"r2_hex": "0x24e1275229fc"
"r2_bit": "2^45 + 2^42 + 2^40 - 2^37 + 2^32 + 2^29 + 2^27 - 2^24 + 2^22 + 2^20 + 2^17 + 2^13 + 2^11 + 2^9 - 2^2"
"znprimroot": 17
- "n": 70368593182721
"n_hex": "0x3ffff7000001"
"n_bit": "2^46 - 2^27 - 2^24 + 1"
"n_fac": "2^24 * 5 * 7 * 293 * 409 + 1"
"nd": 70368593182719
"nd_hex": "0x3ffff6ffffff"
"nd_bit": "2^46 - 2^27 - 2^24 - 1"
"r2": 48620371645
"r2_hex": "0xb51fffebd"
"r2_bit": "2^36 - 2^34 - 2^32 + 2^30 + 2^28 + 2^25 - 2^8 - 2^6 - 2^2 + 1"
"znprimroot": 3
- "n": 70367922094081
"n_hex": "0x3fffcf000001"
"n_bit": "2^46 - 2^30 + 2^28 - 2^24 + 1"
"n_fac": "2^24 * 3 * 5 * 13 * 137 * 157 + 1"
"nd": 70367922094079
"nd_hex": "0x3fffceffffff"
"nd_bit": "2^46 - 2^30 + 2^28 - 2^24 - 1"
"r2": 7893646563965
"r2_hex": "0x72de1ffda7d"
"r2_bit": "2^43 - 2^40 + 2^38 - 2^36 - 2^33 - 2^29 + 2^25 - 2^13 - 2^11 + 2^9 + 2^7 - 2^2 + 1"
"znprimroot": 14
- "n": 70360372346881
"n_hex": "0x3ffe0d000001"
"n_bit": "2^46 - 2^33 + 2^28 - 2^26 + 2^24 + 1"
"n_fac": "2^24 * 3 * 5 * 7 * 11 * 3631 + 1"
"nd": 70360372346879
"nd_hex": "0x3ffe0cffffff"
"nd_bit": "2^46 - 2^33 + 2^28 - 2^26 + 2^24 - 1"
"r2": 35836266597607
"r2_hex": "0x2097c7f0cce7"
"r2_bit": "2^45 + 2^39 + 2^37 - 2^35 - 2^30 + 2^27 - 2^20 + 2^16 - 2^14 + 2^12 - 2^10 + 2^8 - 2^5 + 2^3 - 1"
"znprimroot": 23
- "n": 70298716078081
"n_hex": "0x3fefb2000001"
"n_bit": "2^46 - 2^36 - 2^30 - 2^28 + 2^25 + 1"
"n_fac": "2^25 * 3^4 * 5 * 7 * 739 + 1"
"nd": 70298716078079
"nd_hex": "0x3fefb1ffffff"
"nd_bit": "2^46 - 2^36 - 2^30 - 2^28 + 2^25 - 1"
"r2": 58504565461445
"r2_hex": "0x3535a7d791c5"
"r2_bit": "2^46 - 2^44 + 2^42 + 2^40 + 2^38 - 2^35 - 2^33 - 2^31 + 2^29 + 2^27 - 2^21 - 2^19 - 2^15 + 2^12 + 2^9 - 2^6 + 2^2 + 1"
"znprimroot": 17
- "n": 70368140197889
"n_hex": "0x3fffdc000001"
"n_bit": "2^46 - 2^29 - 2^26 + 1"
"n_fac": "2^26 * 13 * 79 * 1021 + 1"
"nd": 70368140197887
"nd_hex": "0x3fffdbffffff"
"nd_bit": "2^46 - 2^29 - 2^26 - 1"
"r2": 3129823194049
"r2_hex": "0x2d8b7ffebc1"
"r2_bit": "2^42 - 2^40 - 2^37 - 2^35 + 2^32 - 2^30 - 2^27 - 2^12 - 2^10 - 2^6 + 1"
"znprimroot": 3
- "n": 70360624005121
"n_hex": "0x3ffe1c000001"
"n_bit": "2^46 - 2^33 + 2^29 - 2^26 + 1"
"n_fac": "2^26 * 3^2 * 5 * 23 * 1013 + 1"
"nd": 70360624005119
"nd_hex": "0x3ffe1bffffff"
"nd_bit": "2^46 - 2^33 + 2^29 - 2^26 - 1"
"r2": 9832924033877
"r2_hex": "0x8f167f1b355"
"r2_bit": "2^43 + 2^40 - 2^36 + 2^33 - 2^31 - 2^29 + 2^27 - 2^20 + 2^17 - 2^14 - 2^12 + 2^10 - 2^8 + 2^6 + 2^4 + 2^2 + 1"
"znprimroot": 19
- "n": 70367267782657
"n_hex": "0x3fffa8000001"
"n_bit": "2^46 - 2^31 + 2^29 + 2^27 + 1"
"n_fac": "2^27 * 3^2 * 13 * 4481 + 1"
"nd": 70367267782655
"nd_hex": "0x3fffa7ffffff"
"nd_bit": "2^46 - 2^31 + 2^29 + 2^27 - 1"
"r2": 45729858946817
"r2_hex": "0x29974fff8701"
"r2_bit": "2^45 + 2^43 + 2^41 - 2^39 + 2^37 - 2^35 - 2^32 + 2^30 + 2^28 - 2^15 + 2^11 - 2^8 + 1"
"znprimroot": 7
- "n": 70341497978881
"n_hex": "0x3ff9a8000001"
"n_bit": "2^46 - 2^35 + 2^33 - 2^31 + 2^29 + 2^27 + 1"
"n_fac": "2^27 * 3 * 5 * 34939 + 1"
"nd": 70341497978879
"nd_hex": "0x3ff9a7ffffff"
"nd_bit": "2^46 - 2^35 + 2^33 - 2^31 + 2^29 + 2^27 - 1"
"r2": 18467811948299
"r2_hex": "0x10cbdf5ef70b"
"r2_bit": "2^44 + 2^40 - 2^38 + 2^36 - 2^34 - 2^29 - 2^23 - 2^21 - 2^16 - 2^11 - 2^8 + 2^4 - 2^2 - 1"
"znprimroot": 7
- "n": 70140171386881
"n_hex": "0x3fcac8000001"
"n_bit": "2^46 - 2^38 + 2^36 - 2^34 - 2^32 - 2^30 + 2^27 + 1"
"n_fac": "2^27 * 3^3 * 5 * 7^2 * 79 + 1"
"nd": 70140171386879
"nd_hex": "0x3fcac7ffffff"
"nd_bit": "2^46 - 2^38 + 2^36 - 2^34 - 2^32 - 2^30 + 2^27 - 1"
"r2": 33326993384398
"r2_hex": "0x1e4f8b9a23ce"
"r2_bit": "2^45 - 2^41 + 2^38 + 2^36 - 2^31 + 2^28 - 2^26 - 2^23 + 2^21 - 2^19 + 2^17 + 2^13 + 2^10 - 2^6 + 2^4 - 2"
"znprimroot": 13
- "n": 70323378585601
"n_hex": "0x3ff570000001"
"n_bit": "2^46 - 2^35 - 2^33 - 2^31 - 2^28 + 1"
"n_fac": "2^28 * 3 * 5^2 * 7 * 499 + 1"
"nd": 70323378585599
"nd_hex": "0x3ff56fffffff"
"nd_bit": "2^46 - 2^35 - 2^33 - 2^31 - 2^28 - 1"
"r2": 62203982082639
"r2_hex": "0x3892fe41724f"
"r2_bit": "2^46 - 2^43 + 2^39 + 2^36 + 2^34 - 2^32 - 2^25 + 2^22 + 2^17 - 2^15 - 2^12 + 2^9 + 2^6 + 2^4 - 1"
"znprimroot": 23
- "n": 69928778465281
"n_hex": "0x3f9990000001"
"n_bit": "2^46 - 2^39 + 2^37 - 2^35 + 2^33 - 2^31 + 2^28 + 1"
"n_fac": "2^28 * 3^2 * 5 * 7 * 827 + 1"
"nd": 69928778465279
"nd_hex": "0x3f998fffffff"
"nd_bit": "2^46 - 2^39 + 2^37 - 2^35 + 2^33 - 2^31 + 2^28 - 1"
"r2": 38863464703667
"r2_hex": "0x23589b0226b3"
"r2_bit": "2^45 + 2^42 - 2^39 - 2^37 - 2^35 + 2^31 + 2^29 - 2^26 - 2^24 + 2^17 + 2^13 + 2^11 - 2^8 - 2^6 - 2^4 + 2^2 - 1"
"znprimroot": 22
- "n": 70367133564929
"n_hex": "0x3fffa0000001"
"n_bit": "2^46 - 2^31 + 2^29 + 1"
"n_fac": "2^29 * 53 * 2473 + 1"
"nd": 70367133564927
"nd_hex": "0x3fff9fffffff"
"nd_bit": "2^46 - 2^31 + 2^29 - 1"
"r2": 59370406637569
"r2_hex": "0x35ff3fff7001"
"r2_bit": "2^46 - 2^43 - 2^41 - 2^32 + 2^30 - 2^15 - 2^12 + 1"
"znprimroot": 3
- "n": 70327405117441
"n_hex": "0x3ff660000001"
"n_bit": "2^46 - 2^35 - 2^33 + 2^31 - 2^29 + 1"
"n_fac": "2^29 * 3^2 * 5 * 41 * 71 + 1"
"nd": 70327405117439
"nd_hex": "0x3ff65fffffff"
"nd_bit": "2^46 - 2^35 - 2^33 + 2^31 - 2^29 - 1"
"r2": 2893173045310
"r2_hex": "0x2a19e8d383e"
"r2_bit": "2^41 + 2^39 + 2^37 + 2^33 - 2^31 + 2^29 - 2^25 + 2^23 + 2^20 - 2^18 + 2^16 + 2^14 - 2^11 + 2^6 - 2"
"znprimroot": 7
- "n": 69505992622081
"n_hex": "0x3f3720000001"
"n_bit": "2^46 - 2^40 + 2^38 - 2^35 - 2^32 + 2^29 + 1"
"n_fac": "2^29 * 3^3 * 5 * 7 * 137 + 1"
"nd": 69505992622079
"nd_hex": "0x3f371fffffff"
"nd_bit": "2^46 - 2^40 + 2^38 - 2^35 - 2^32 + 2^29 - 1"
"r2": 53737585475745
"r2_hex": "0x30dfc1b180a1"
"r2_bit": "2^46 - 2^44 + 2^40 - 2^37 - 2^30 + 2^25 - 2^22 - 2^20 + 2^17 - 2^15 + 2^7 + 2^5 + 1"
"znprimroot": 13
- "n": 70361227984897
"n_hex": "0x3ffe40000001"
"n_bit": "2^46 - 2^33 + 2^30 + 1"
"n_fac": "2^30 * 3^4 * 809 + 1"
"nd": 70361227984895
"nd_hex": "0x3ffe3fffffff"
"nd_bit": "2^46 - 2^33 + 2^30 - 1"
"r2": 53400401330092
"r2_hex": "0x30913ff3bfac"
"r2_bit": "2^46 - 2^44 + 2^39 + 2^36 + 2^32 + 2^30 - 2^20 + 2^18 - 2^14 - 2^6 - 2^4 - 2^2"
"znprimroot": 5
- "n": 62572304793601
"n_hex": "0x38e8c0000001"
"n_bit": "2^46 - 2^43 + 2^40 - 2^37 + 2^35 + 2^32 - 2^30 + 1"
"n_fac": "2^30 * 3^2 * 5^2 * 7 * 37 + 1"
"nd": 62572304793599
"nd_hex": "0x38e8bfffffff"
"nd_bit": "2^46 - 2^43 + 2^40 - 2^37 + 2^35 + 2^32 - 2^30 - 1"
"r2": 57850296951273
"r2_hex": "0x349d526661e9"
"r2_bit": "2^46 - 2^44 + 2^42 + 2^39 + 2^37 - 2^34 + 2^32 + 2^30 + 2^28 + 2^25 + 2^23 - 2^21 + 2^19 - 2^17 + 2^15 - 2^13 + 2^9 - 2^5 + 2^3 + 1"
"znprimroot": 13
- "n": 70362301726721
"n_hex": "0x3ffe80000001"
"n_bit": "2^46 - 2^33 + 2^31 + 1"
"n_fac": "2^31 * 5 * 6553 + 1"
"nd": 70362301726719
"nd_hex": "0x3ffe7fffffff"
"nd_bit": "2^46 - 2^33 + 2^31 - 1"
"r2": 335006859211
"r2_hex": "0x4dfff6ffcb"
"r2_bit": "2^38 + 2^36 - 2^33 - 2^19 - 2^16 - 2^6 + 2^4 - 2^2 - 1"
"znprimroot": 6
- "n": 70190503034881
"n_hex": "0x3fd680000001"
"n_bit": "2^46 - 2^37 - 2^35 - 2^33 + 2^31 + 1"
"n_fac": "2^31 * 3 * 5 * 2179 + 1"
"nd": 70190503034879
"nd_hex": "0x3fd67fffffff"
"nd_bit": "2^46 - 2^37 - 2^35 - 2^33 + 2^31 - 1"
"r2": 68549372903828
"r2_hex": "0x3e5865058194"
"r2_bit": "2^46 - 2^41 + 2^39 - 2^37 - 2^35 + 2^31 - 2^29 + 2^26 + 2^24 + 2^19 - 2^17 - 2^15 + 2^9 - 2^7 + 2^4 + 2^2"
"znprimroot": 7
- "n": 70158290780161
"n_hex": "0x3fcf00000001"
"n_bit": "2^46 - 2^38 + 2^36 - 2^32 + 1"
"n_fac": "2^32 * 3^3 * 5 * 11^2 + 1"
"nd": 70158290780159
"nd_hex": "0x3fceffffffff"
"nd_bit": "2^46 - 2^38 + 2^36 - 2^32 - 1"
"r2": 39976924295395
"r2_hex": "0x245bda5f30e3"
"r2_bit": "2^45 + 2^42 + 2^39 - 2^37 - 2^34 - 2^29 - 2^27 + 2^25 + 2^23 - 2^21 - 2^16 + 2^14 - 2^12 + 2^8 - 2^5 + 2^2 - 1"
"znprimroot": 14
- "n": 69900592742401
"n_hex": "0x3f9300000001"
"n_bit": "2^46 - 2^39 + 2^36 + 2^34 - 2^32 + 1"
"n_fac": "2^32 * 3 * 5^2 * 7 * 31 + 1"
"nd": 69900592742399
"nd_hex": "0x3f92ffffffff"
"nd_bit": "2^46 - 2^39 + 2^36 + 2^34 - 2^32 - 1"
"r2": 68965449447069
"r2_hex": "0x3eb9451db69d"
"r2_bit": "2^46 - 2^40 - 2^38 - 2^35 + 2^32 + 2^30 + 2^26 + 2^24 + 2^21 - 2^17 - 2^14 - 2^11 - 2^9 + 2^7 + 2^5 - 2^2 + 1"
"znprimroot": 19
- "n": 65841848647681
"n_hex": "0x3be200000001"
"n_bit": "2^46 - 2^42 - 2^37 + 2^33 + 1"
"n_fac": "2^33 * 3 * 5 * 7 * 73 + 1"
"nd": 65841848647679
"nd_hex": "0x3be1ffffffff"
"nd_bit": "2^46 - 2^42 - 2^37 + 2^33 - 1"
"r2": 17246583782331
"r2_hex": "0xfaf887ffbbb"
"r2_bit": "2^44 - 2^38 - 2^36 - 2^31 + 2^27 + 2^23 - 2^10 - 2^6 - 2^2 - 1"
"znprimroot": 11
- "n": 64553358458881
"n_hex": "0x3ab600000001"
"n_bit": "2^46 - 2^42 - 2^40 - 2^38 - 2^35 - 2^33 + 1"
"n_fac": "2^33 * 3^2 * 5 * 167 + 1"
"nd": 64553358458879
"nd_hex": "0x3ab5ffffffff"
"nd_bit": "2^46 - 2^42 - 2^40 - 2^38 - 2^35 - 2^33 - 1"
"r2": 50663532524932
"r2_hex": "0x2e1405dbf584"
"r2_bit": "2^46 - 2^44 - 2^41 + 2^36 + 2^34 + 2^27 - 2^25 - 2^21 - 2^18 - 2^11 - 2^9 - 2^7 + 2^2"
"znprimroot": 13
- "n": 70317204570113
"n_hex": "0x3ff400000001"
"n_bit": "2^46 - 2^36 + 2^34 + 1"
"n_fac": "2^34 * 4093 + 1"
"nd": 70317204570111
"nd_hex": "0x3ff3ffffffff"
"nd_bit": "2^46 - 2^36 + 2^34 - 1"
"r2": 18519861203949
"r2_hex": "0x10d7fdbf93ed"
"r2_bit": "2^44 + 2^40 - 2^37 - 2^35 - 2^25 - 2^22 - 2^15 + 2^12 + 2^10 - 2^4 - 2^2 + 1"
"znprimroot": 3
- "n": 70248485093377
"n_hex": "0x3fe400000001"
"n_bit": "2^46 - 2^37 + 2^34 + 1"
"n_fac": "2^34 * 3 * 29 * 47 + 1"
"nd": 70248485093375
"nd_hex": "0x3fe3ffffffff"
"nd_bit": "2^46 - 2^37 + 2^34 - 1"
"r2": 19258427482536
"r2_hex": "0x1183f3baa1a8"
"r2_bit": "2^44 + 2^41 - 2^39 + 2^34 - 2^28 + 2^26 - 2^22 - 2^19 + 2^17 + 2^15 + 2^13 + 2^9 - 2^7 + 2^5 + 2^3"
"znprimroot": 7
- "n": 69114613727233
"n_hex": "0x3edc00000001"
"n_bit": "2^46 - 2^40 - 2^37 - 2^34 + 1"
"n_fac": "2^34 * 3^3 * 149 + 1"
"nd": 69114613727231
"nd_hex": "0x3edbffffffff"
"nd_bit": "2^46 - 2^40 - 2^37 - 2^34 - 1"
"r2": 30213812736031
"r2_hex": "0x1b7ab393501f"
"r2_bit": "2^45 - 2^42 - 2^39 - 2^34 - 2^32 - 2^30 - 2^28 + 2^26 - 2^23 + 2^20 + 2^18 - 2^16 + 2^14 + 2^12 + 2^5 - 1"
"znprimroot": 5
- "n": 64166811402241
"n_hex": "0x3a5c00000001"
"n_bit": "2^46 - 2^43 + 2^41 + 2^39 - 2^37 - 2^34 + 1"
"n_fac": "2^34 * 3^2 * 5 * 83 + 1"
"nd": 64166811402239
"nd_hex": "0x3a5bffffffff"
"nd_bit": "2^46 - 2^43 + 2^41 + 2^39 - 2^37 - 2^34 - 1"
"r2": 40924306673974
"r2_hex": "0x25386ec31136"
"r2_bit": "2^45 + 2^42 + 2^40 + 2^38 - 2^35 + 2^31 - 2^28 - 2^24 - 2^22 + 2^18 - 2^16 + 2^12 + 2^8 + 2^6 - 2^3 - 2"
"znprimroot": 13
- "n": 59528246722561
"n_hex": "0x362400000001"
"n_bit": "2^46 - 2^43 - 2^41 + 2^37 + 2^34 + 1"
"n_fac": "2^34 * 3^2 * 5 * 7 * 11 + 1"
"nd": 59528246722559
"nd_hex": "0x3623ffffffff"
"nd_bit": "2^46 - 2^43 - 2^41 + 2^37 + 2^34 - 1"
"r2": 20995356991024
"r2_hex": "0x13185ccb9e30"
"r2_bit": "2^44 + 2^42 - 2^40 + 2^37 - 2^35 + 2^31 - 2^29 - 2^26 + 2^24 - 2^22 + 2^20 - 2^18 - 2^15 + 2^13 - 2^9 + 2^6 - 2^4"
"znprimroot": 39
- "n": 68341519613953
"n_hex": "0x3e2800000001"
"n_bit": "2^46 - 2^41 + 2^37 + 2^35 + 1"
"n_fac": "2^35 * 3^2 * 13 * 17 + 1"
"nd": 68341519613951
"nd_hex": "0x3e27ffffffff"
"nd_bit": "2^46 - 2^41 + 2^37 + 2^35 - 1"
"r2": 13477603056129
"r2_hex": "0xc41ffbe1a01"
"r2_bit": "2^44 - 2^42 + 2^38 + 2^33 - 2^22 - 2^17 + 2^13 - 2^11 + 2^9 + 1"
"znprimroot": 7
- "n": 55044300865537
"n_hex": "0x321000000001"
"n_bit": "2^46 - 2^44 + 2^41 + 2^36 + 1"
"n_fac": "2^36 * 3^2 * 89 + 1"
"nd": 55044300865535
"nd_hex": "0x320fffffffff"
"nd_bit": "2^46 - 2^44 + 2^41 + 2^36 - 1"
"r2": 8034430707026
"r2_hex": "0x74ea9636552"
"r2_bit": "2^43 - 2^40 + 2^38 + 2^36 - 2^33 + 2^31 + 2^29 + 2^27 + 2^25 - 2^23 - 2^21 + 2^18 - 2^15 - 2^13 + 2^10 + 2^8 + 2^6 + 2^4 + 2"
"znprimroot": 5
- "n": 50508815400961
"n_hex": "0x2df000000001"
"n_bit": "2^46 - 2^44 - 2^41 - 2^36 + 1"
"n_fac": "2^36 * 3 * 5 * 7^2 + 1"
"nd": 50508815400959
"nd_hex": "0x2defffffffff"
"nd_bit": "2^46 - 2^44 - 2^41 - 2^36 - 1"
"r2": 27787818994873
"r2_hex": "0x1945db148cb9"
"r2_bit": "2^45 - 2^43 + 2^40 + 2^38 + 2^35 - 2^33 - 2^29 - 2^26 - 2^24 + 2^20 + 2^18 + 2^15 + 2^12 - 2^10 + 2^8 - 2^6 - 2^3 + 1"
"znprimroot": 17
- "n": 70093866270721
"n_hex": "0x3fc000000001"
"n_bit": "2^46 - 2^38 + 1"
"n_fac": "2^38 * 3 * 5 * 17 + 1"
"nd": 70093866270719
"nd_hex": "0x3fbfffffffff"
"nd_bit": "2^46 - 2^38 - 1"
"r2": 17041352277953
"r2_hex": "0xf7fbfbfbfc1"
"r2_bit": "2^44 - 2^39 - 2^30 - 2^22 - 2^14 - 2^6 + 1"
"znprimroot": 7
- "n": 37108517437441
"n_hex": "0x21c000000001"
"n_bit": "2^45 + 2^41 - 2^38 + 1"
"n_fac": "2^38 * 3^3 * 5 + 1"
"nd": 37108517437439
"nd_hex": "0x21bfffffffff"
"nd_bit": "2^45 + 2^41 - 2^38 - 1"
"r2": 7847255210094
"r2_hex": "0x72314dbf86e"
"r2_bit": "2^43 - 2^40 + 2^37 + 2^34 - 2^32 + 2^28 + 2^26 + 2^24 - 2^21 - 2^18 - 2^11 + 2^7 - 2^4 - 2"
"znprimroot": 11
- "n": 28862180229121
"n_hex": "0x1a4000000001"
"n_bit": "2^45 - 2^43 + 2^41 + 2^38 + 1"
"n_fac": "2^38 * 3 * 5 * 7 + 1"
"nd": 28862180229119
"nd_hex": "0x1a3fffffffff"
"nd_bit": "2^45 - 2^43 + 2^41 + 2^38 - 1"
"r2": 19199567328838
"r2_hex": "0x11763f63f646"
"r2_bit": "2^44 + 2^41 - 2^39 - 2^35 - 2^33 + 2^30 - 2^23 - 2^21 + 2^18 - 2^11 - 2^9 + 2^6 + 2^3 - 2"
"znprimroot": 19
- "n": 44530220924929
"n_hex": "0x288000000001"
"n_bit": "2^45 + 2^43 + 2^39 + 1"
"n_fac": "2^39 * 3^4 + 1"
"nd": 44530220924927
"nd_hex": "0x287fffffffff"
"nd_bit": "2^45 + 2^43 + 2^39 - 1"
"r2": 400439419995
"r2_hex": "0x5d3c0ca45b"
"r2_bit": "2^39 - 2^37 - 2^34 + 2^32 + 2^30 - 2^26 + 2^20 - 2^18 + 2^15 + 2^13 + 2^10 + 2^7 - 2^5 - 2^2 - 1"
"znprimroot": 7
- "n": 62672162783233
"n_hex": "0x390000000001"
"n_bit": "2^46 - 2^43 + 2^40 + 1"
"n_fac": "2^40 * 3 * 19 + 1"
"nd": 62672162783231
"nd_hex": "0x38ffffffffff"
"nd_bit": "2^46 - 2^43 + 2^40 - 1"
"r2": 30940642999172
"r2_hex": "0x1c23ee08fb84"
"r2_bit": "2^45 - 2^42 + 2^37 + 2^34 - 2^28 - 2^25 + 2^19 + 2^16 - 2^10 - 2^7 + 2^2"
"znprimroot": 5
- "n": 50577534877697
"n_hex": "0x2e0000000001"
"n_bit": "2^46 - 2^44 - 2^41 + 1"
"n_fac": "2^41 * 23 + 1"
"nd": 50577534877695
"nd_hex": "0x2dffffffffff"
"nd_bit": "2^46 - 2^44 - 2^41 - 1"
"r2": 31838032352125
"r2_hex": "0x1cf4de9bd37d"
"r2_bit": "2^45 - 2^42 + 2^40 - 2^36 + 2^34 + 2^32 - 2^29 - 2^25 + 2^23 + 2^21 - 2^18 - 2^14 + 2^12 + 2^10 - 2^7 - 2^2 + 1"
"znprimroot": 3
- "n": 46179488366593
"n_hex": "0x2a0000000001"
"n_bit": "2^45 + 2^43 + 2^41 + 1"
"n_fac": "2^41 * 3 * 7 + 1"
"nd": 46179488366591
"nd_hex": "0x29ffffffffff"
"nd_bit": "2^45 + 2^43 + 2^41 - 1"
"r2": 2722600221162
"r2_hex": "0x279e79e79ea"
"r2_bit": "2^41 + 2^39 - 2^35 + 2^33 - 2^29 + 2^27 - 2^23 + 2^21 - 2^17 + 2^15 - 2^11 + 2^9 - 2^5 + 2^3 + 2"
"znprimroot": 11
- "n": 39582418599937
"n_hex": "0x240000000001"
"n_bit": "2^45 + 2^42 + 1"
"n_fac": "2^42 * 3^2 + 1"
"nd": 39582418599935
"nd_hex": "0x23ffffffffff"
"nd_bit": "2^45 + 2^42 - 1"
"r2": 11239452195047
"r2_hex": "0xa38e38e38e7"
"r2_bit": "2^43 + 2^41 + 2^38 - 2^35 + 2^32 - 2^29 + 2^26 - 2^23 + 2^20 - 2^17 + 2^14 - 2^11 + 2^8 - 2^5 + 2^3 - 1"
"znprimroot": 5
- "r": 47
"primes":
- "n": 140737488355213
"n_hex": "0x7fffffffff8d"
"n_bit": "2^47 - 2^7 + 2^4 - 2^2 + 1"
"n_fac": "2^2 * 3 * 7 * 1675446289943 + 1"
"nd": 52623582602427
"nd_hex": "0x2fdc61f2a4bb"
"nd_bit": "2^46 - 2^44 - 2^37 - 2^34 + 2^31 - 2^29 + 2^25 - 2^20 + 2^17 + 2^15 + 2^13 + 2^10 + 2^8 - 2^6 - 2^2 - 1"
"r2": 13225
"r2_hex": "0x33a9"
"r2_bit": "2^14 - 2^12 + 2^10 - 2^7 + 2^5 + 2^3 + 1"
"znprimroot": 5
- "n": 140737488354613
"n_hex": "0x7ffffffffd35"
"n_bit": "2^47 - 2^10 + 2^8 + 2^6 - 2^4 + 2^2 + 1"
"n_fac": "2^2 * 3^2 * 37 * 105658775041c + 1"
"nd": 76372231443171
"nd_hex": "0x4575cbb9d2e3"
"nd_bit": "2^46 + 2^43 - 2^41 - 2^39 - 2^35 - 2^33 - 2^30 + 2^28 - 2^26 - 2^22 - 2^19 + 2^17 - 2^14 + 2^12 + 2^10 - 2^8 - 2^5 + 2^2 - 1"
"r2": 511225
"r2_hex": "0x7ccf9"
"r2_bit": "2^19 - 2^14 + 2^12 - 2^10 + 2^8 - 2^3 + 1"
"znprimroot": 2
- "n": 140737488353821
"n_hex": "0x7ffffffffa1d"
"n_bit": "2^47 - 2^11 + 2^9 + 2^5 - 2^2 + 1"
"n_fac": "2^2 * 3^6 * 5 * 9652776979c + 1"
"nd": 68080709363659
"nd_hex": "0x3deb467f67cb"
"nd_bit": "2^46 - 2^41 - 2^36 - 2^34 - 2^32 + 2^30 + 2^27 - 2^25 + 2^23 - 2^15 - 2^13 + 2^11 - 2^6 + 2^4 - 2^2 - 1"
"r2": 2271049
"r2_hex": "0x22a749"
"r2_bit": "2^21 + 2^17 + 2^15 + 2^13 + 2^11 - 2^8 + 2^6 + 2^3 + 1"
"znprimroot": 13
- "n": 140737488353701
"n_hex": "0x7ffffffff9a5"
"n_bit": "2^47 - 2^11 + 2^9 - 2^7 + 2^5 + 2^2 + 1"
"n_fac": "2^2 * 3 * 5^2 * 7 * 569 * 117781813 + 1"
"nd": 89961270983123
"nd_hex": "0x51d1bd99b9d3"
"nd_bit": "2^46 + 2^44 + 2^41 - 2^38 + 2^36 + 2^33 - 2^30 - 2^25 - 2^23 + 2^21 - 2^19 + 2^17 - 2^14 - 2^11 + 2^9 - 2^6 + 2^4 + 2^2 - 1"
"r2": 2647129
"r2_hex": "0x286459"
"r2_bit": "2^21 + 2^19 + 2^15 - 2^13 + 2^10 + 2^7 - 2^5 - 2^3 + 1"
"znprimroot": 11
- "n": 140737488344461
"n_hex": "0x7fffffffd58d"
"n_bit": "2^47 - 2^13 - 2^11 - 2^9 - 2^7 + 2^4 - 2^2 + 1"
"n_fac": "2^2 * 3^2 * 5 * 7 * 43 * 953 * 2725699 + 1"
"nd": 26678865005243
"nd_hex": "0x1843a8458abb"
"nd_bit": "2^45 - 2^43 + 2^38 + 2^34 - 2^31 + 2^29 + 2^27 + 2^22 + 2^19 - 2^17 - 2^15 + 2^12 - 2^10 - 2^8 - 2^6 - 2^2 - 1"
"r2": 118091689
"r2_hex": "0x709efa9"
"r2_bit": "2^27 - 2^24 + 2^19 + 2^17 - 2^12 - 2^7 + 2^5 + 2^3 + 1"
"znprimroot": 2
- "n": 140737488352921
"n_hex": "0x7ffffffff699"
"n_bit": "2^47 - 2^11 - 2^9 + 2^7 + 2^5 - 2^3 + 1"
"n_fac": "2^3 * 3^2 * 5 * 390937467647 + 1"
"nd": 119278968111703
"nd_hex": "0x6c7bcc860257"
"nd_bit": "2^47 - 2^44 - 2^42 + 2^39 - 2^34 - 2^30 + 2^28 - 2^26 + 2^23 + 2^19 - 2^17 + 2^9 + 2^7 - 2^5 - 2^3 - 1"
"r2": 5793649
"r2_hex": "0x586771"
"r2_bit": "2^23 - 2^21 - 2^19 + 2^15 - 2^13 + 2^11 - 2^7 - 2^4 + 1"
"znprimroot": 7
- "n": 140737488340681
"n_hex": "0x7fffffffc6c9"
"n_bit": "2^47 - 2^14 + 2^11 - 2^8 - 2^6 + 2^3 + 1"
"n_fac": "2^3 * 3^2 * 5 * 7 * 11 * 139 * 36525971 + 1"
"nd": 47514636438663
"nd_hex": "0x2b36dd06cc87"
"nd_bit": "2^46 - 2^44 - 2^42 - 2^40 + 2^38 - 2^35 - 2^32 - 2^29 - 2^26 + 2^24 + 2^19 - 2^16 - 2^14 + 2^12 - 2^10 + 2^7 + 2^3 - 1"
"r2": 214534609
"r2_hex": "0xcc989d1"
"r2_bit": "2^28 - 2^26 + 2^24 - 2^22 + 2^19 + 2^17 - 2^15 + 2^11 + 2^9 - 2^6 + 2^4 + 1"
"znprimroot": 37
- "n": 140737488353713
"n_hex": "0x7ffffffff9b1"
"n_bit": "2^47 - 2^11 + 2^9 - 2^6 - 2^4 + 1"
"n_fac": "2^4 * 3^3 * 31 * 461 * 22796251 + 1"
"nd": 36861893234863
"nd_hex": "0x2186940d50af"
"nd_bit": "2^45 + 2^41 - 2^39 + 2^35 - 2^33 + 2^31 + 2^28 + 2^26 + 2^20 - 2^18 + 2^16 + 2^14 + 2^12 + 2^8 - 2^6 - 2^4 - 1"
"r2": 2608225
"r2_hex": "0x27cc61"
"r2_bit": "2^21 + 2^19 - 2^14 + 2^12 - 2^10 + 2^7 - 2^5 + 1"
"znprimroot": 5
- "n": 140737488349681
"n_hex": "0x7fffffffe9f1"
"n_bit": "2^47 - 2^13 + 2^11 + 2^9 - 2^4 + 1"
"n_fac": "2^4 * 3^2 * 5 * 311 * 628516829 + 1"
"nd": 13084324665583
"nd_hex": "0xbe66e8618ef"
"nd_bit": "2^44 - 2^42 - 2^37 + 2^35 - 2^33 + 2^31 - 2^28 - 2^25 + 2^23 + 2^19 - 2^17 + 2^13 - 2^11 + 2^8 - 2^4 - 1"
"r2": 31888609
"r2_hex": "0x1e694e1"
"r2_bit": "2^25 - 2^21 + 2^19 - 2^17 + 2^15 + 2^12 + 2^10 + 2^8 - 2^5 + 1"
"znprimroot": 7
- "n": 140737488318001
"n_hex": "0x7fffffff6e31"
"n_bit": "2^47 - 2^15 - 2^12 - 2^9 + 2^6 - 2^4 + 1"
"n_fac": "2^4 * 3^2 * 5^3 * 7 * 31 * 197 * 182899 + 1"
"nd": 53132389045551
"nd_hex": "0x3052d92cd52f"
"nd_bit": "2^46 - 2^44 + 2^38 + 2^36 + 2^34 - 2^32 - 2^29 - 2^27 + 2^24 + 2^22 - 2^20 - 2^18 + 2^16 - 2^14 + 2^12 + 2^10 + 2^8 + 2^6 - 2^4 - 1"
"r2": 1393304929
"r2_hex": "0x530c2561"
"r2_bit": "2^30 + 2^28 + 2^26 - 2^24 + 2^20 - 2^18 + 2^13 + 2^11 - 2^9 - 2^7 - 2^5 + 1"
"znprimroot": 23
- "n": 140737488353569
"n_hex": "0x7ffffffff921"
"n_bit": "2^47 - 2^11 + 2^8 + 2^5 + 1"
"n_fac": "2^5 * 3^2 * 17 * 373 * 733 * 105137 + 1"
"nd": 71928938050847
"nd_hex": "0x416b42cd351f"
"nd_bit": "2^46 + 2^41 - 2^39 - 2^36 - 2^34 - 2^32 + 2^30 + 2^26 - 2^24 - 2^22 + 2^20 - 2^18 + 2^16 + 2^14 - 2^12 + 2^10 + 2^8 + 2^5 - 1"
"r2": 3094081
"r2_hex": "0x2f3641"
"r2_bit": "2^22 - 2^20 - 2^16 + 2^14 - 2^11 - 2^9 + 2^6 + 1"
"znprimroot": 22
- "n": 140737488346561
"n_hex": "0x7fffffffddc1"
"n_bit": "2^47 - 2^13 - 2^9 - 2^6 + 1"
"n_fac": "2^6 * 3 * 5 * 7 * 2671 * 7840913 + 1"
"nd": 86574344097215
"nd_hex": "0x4ebd2906cdbf"
"nd_bit": "2^46 + 2^44 - 2^40 - 2^38 - 2^34 + 2^32 + 2^29 + 2^27 + 2^24 + 2^19 - 2^16 - 2^14 + 2^12 - 2^9 - 2^6 - 1"
"r2": 76860289
"r2_hex": "0x494cb81"
"r2_bit": "2^26 + 2^23 + 2^20 + 2^18 + 2^16 - 2^14 + 2^12 - 2^10 - 2^7 + 1"
"znprimroot": 13
- "n": 140737488292801
"n_hex": "0x7fffffff0bc1"
"n_bit": "2^47 - 2^16 + 2^12 - 2^10 - 2^6 + 1"
"n_fac": "2^6 * 3^3 * 5^2 * 7 * 6619 * 70313 + 1"
"nd": 82247486077887
"nd_hex": "0x4acdbc30fbbf"
"nd_bit": "2^46 + 2^44 - 2^42 - 2^40 - 2^38 + 2^36 - 2^33 - 2^30 - 2^26 + 2^22 - 2^20 + 2^16 - 2^10 - 2^6 - 1"
"r2": 3909625729
"r2_hex": "0xe9082781"
"r2_bit": "2^32 - 2^29 + 2^27 + 2^24 + 2^19 + 2^13 + 2^11 - 2^7 + 1"
"znprimroot": 59
- "n": 140737488355201
"n_hex": "0x7fffffffff81"
"n_bit": "2^47 - 2^7 + 1"
"n_fac": "2^7 * 3 * 5^2 * 11 * 17 * 31 * 41 * 61681 + 1"
"nd": 136304811556735
"nd_hex": "0x7bf7efdfbf7f"
"nd_bit": "2^47 - 2^42 - 2^35 - 2^28 - 2^21 - 2^14 - 2^7 - 1"
"r2": 16129
"r2_hex": "0x3f01"
"r2_bit": "2^14 - 2^8 + 1"
"znprimroot": 7
- "n": 140737488340609
"n_hex": "0x7fffffffc681"
"n_bit": "2^47 - 2^14 + 2^11 - 2^9 + 2^7 + 1"
"n_fac": "2^7 * 3^2 * 1549 * 78868921 + 1"
"nd": 83186096113279
"nd_hex": "0x4ba845b5867f"
"nd_bit": "2^46 + 2^44 - 2^42 - 2^39 + 2^37 + 2^35 + 2^30 + 2^27 - 2^25 - 2^22 - 2^19 - 2^17 - 2^15 + 2^11 - 2^9 + 2^7 - 1"
"r2": 216648961
"r2_hex": "0xce9cd01"
"r2_bit": "2^28 - 2^26 + 2^24 - 2^21 + 2^19 + 2^17 - 2^14 + 2^12 - 2^10 + 2^8 + 1"
"znprimroot": 11
- "n": 140737488301441
"n_hex": "0x7fffffff2d81"
"n_bit": "2^47 - 2^16 + 2^14 - 2^12 - 2^9 - 2^7 + 1"
"n_fac": "2^7 * 3^3 * 5 * 8144530573c + 1"
"nd": 112792137428351
"nd_hex": "0x66957748ed7f"
"nd_bit": "2^47 - 2^45 + 2^43 - 2^41 + 2^39 + 2^37 - 2^35 - 2^33 - 2^31 - 2^27 - 2^24 + 2^22 + 2^19 + 2^16 - 2^12 - 2^9 - 2^7 - 1"
"r2": 2903808769
"r2_hex": "0xad149b01"
"r2_bit": "2^32 - 2^30 - 2^28 - 2^26 + 2^24 + 2^20 + 2^18 + 2^15 + 2^13 - 2^10 - 2^8 + 1"
"znprimroot": 7
- "n": 140737488151681
"n_hex": "0x7ffffffce481"
"n_bit": "2^47 - 2^18 + 2^16 - 2^13 + 2^10 + 2^7 + 1"
"n_fac": "2^7 * 3^2 * 5 * 7 * 2693 * 1296143 + 1"
"nd": 36613709669503
"nd_hex": "0x214ccb28a47f"
"nd_bit": "2^45 + 2^40 + 2^38 + 2^36 - 2^34 + 2^32 - 2^30 + 2^28 - 2^26 - 2^24 + 2^21 + 2^19 + 2^15 + 2^13 + 2^10 + 2^7 - 1"
"r2": 41472100609
"r2_hex": "0x9a7ee0901"
"r2_bit": "2^35 + 2^33 - 2^31 + 2^29 + 2^27 - 2^20 - 2^17 + 2^11 + 2^8 + 1"
"znprimroot": 13
- "n": 140737488349441
"n_hex": "0x7fffffffe901"
"n_bit": "2^47 - 2^13 + 2^11 + 2^8 + 1"
"n_fac": "2^8 * 3 * 5 * 53 * 691516747 + 1"
"nd": 74420893706495
"nd_hex": "0x43af76eee8ff"
"nd_bit": "2^46 + 2^42 - 2^38 - 2^36 - 2^31 - 2^27 - 2^24 - 2^20 - 2^16 - 2^13 + 2^11 + 2^8 - 1"
"r2": 34656769
"r2_hex": "0x210d201"
"r2_bit": "2^25 + 2^20 + 2^16 - 2^14 + 2^12 + 2^9 + 1"
"znprimroot": 19
- "n": 140737488337153
"n_hex": "0x7fffffffb901"
"n_bit": "2^47 - 2^14 - 2^11 + 2^8 + 1"
"n_fac": "2^8 * 3^2 * 7 * 8726282759 + 1"
"nd": 91434842503423
"nd_hex": "0x5328d54eb8ff"
"nd_bit": "2^46 + 2^44 + 2^42 - 2^40 + 2^37 + 2^35 + 2^32 - 2^30 + 2^28 + 2^26 + 2^24 + 2^22 + 2^20 - 2^16 - 2^14 - 2^11 + 2^8 - 1"
"r2": 330330625
"r2_hex": "0x13b07201"
"r2_bit": "2^28 + 2^26 - 2^22 - 2^20 + 2^15 - 2^12 + 2^9 + 1"
"znprimroot": 10
- "n": 140737488218881
"n_hex": "0x7ffffffdeb01"
"n_bit": "2^47 - 2^17 - 2^12 - 2^10 - 2^8 + 1"
"n_fac": "2^8 * 3 * 5 * 7^2 * 3461 * 216113 + 1"
"nd": 22885687421695
"nd_hex": "0x14d07d44eaff"
"nd_bit": "2^44 + 2^42 + 2^40 - 2^38 + 2^36 + 2^31 - 2^26 + 2^24 + 2^22 + 2^18 + 2^16 - 2^12 - 2^10 - 2^8 - 1"
"r2": 18617783809
"r2_hex": "0x455b4d601"
"r2_bit": "2^34 + 2^31 - 2^29 - 2^27 - 2^25 - 2^22 - 2^20 + 2^18 + 2^16 - 2^13 - 2^11 - 2^9 + 1"
"znprimroot": 13
- "n": 140737488065281
"n_hex": "0x7ffffffb9301"
"n_bit": "2^47 - 2^18 - 2^15 + 2^12 + 2^10 - 2^8 + 1"
"n_fac": "2^8 * 3^2 * 5 * 12216795839c + 1"
"nd": 100247566193407
"nd_hex": "0x5b2cb49292ff"
"nd_bit": "2^47 - 2^45 - 2^42 - 2^40 + 2^38 - 2^36 - 2^34 + 2^32 - 2^30 - 2^28 + 2^26 + 2^23 + 2^20 + 2^17 + 2^15 + 2^12 + 2^10 - 2^8 - 1"
"r2": 84127262209
"r2_hex": "0x1396602601"
"r2_bit": "2^36 + 2^34 - 2^31 + 2^29 - 2^27 - 2^25 + 2^23 - 2^21 + 2^13 + 2^11 - 2^9 + 1"
"znprimroot": 11
- "n": 140737488349697
"n_hex": "0x7fffffffea01"
"n_bit": "2^47 - 2^13 + 2^11 + 2^9 + 1"
"n_fac": "2^9 * 7 * 9601 * 4090019 + 1"
"nd": 14046256163327
"nd_hex": "0xcc6661be9ff"
"nd_bit": "2^44 - 2^42 + 2^40 - 2^38 + 2^35 - 2^33 + 2^31 - 2^29 + 2^27 - 2^25 + 2^21 - 2^18 - 2^13 + 2^11 + 2^9 - 1"
"r2": 31708161
"r2_hex": "0x1e3d401"
"r2_bit": "2^25 - 2^21 + 2^18 - 2^14 + 2^12 + 2^10 + 1"
"znprimroot": 3
- "n": 140737488084481
"n_hex": "0x7ffffffbde01"
"n_bit": "2^47 - 2^18 - 2^13 - 2^9 + 1"
"n_fac": "2^9 * 3 * 5 * 7 * 83 * 4993 * 6317 + 1"
"nd": 111142537518591
"nd_hex": "0x65156377ddff"
"nd_bit": "2^47 - 2^45 + 2^42 + 2^40 + 2^37 - 2^35 - 2^33 - 2^31 - 2^29 + 2^26 - 2^23 - 2^19 - 2^13 - 2^9 - 1"
"r2": 73358097409
"r2_hex": "0x11147bbc01"
"r2_bit": "2^36 + 2^32 + 2^28 + 2^26 + 2^23 - 2^18 - 2^14 - 2^10 + 1"
"znprimroot": 22
- "n": 140737488007681
"n_hex": "0x7ffffffab201"
"n_bit": "2^47 - 2^18 - 2^16 - 2^14 - 2^12 + 2^9 + 1"
"n_fac": "2^9 * 3^3 * 5 * 107 * 19029277 + 1"
"nd": 48490788336127
"nd_hex": "0x2c1a2436b1ff"
"nd_bit": "2^46 - 2^44 - 2^42 + 2^37 - 2^35 + 2^33 + 2^29 + 2^26 + 2^22 - 2^19 - 2^16 - 2^14 - 2^12 + 2^9 - 1"
"r2": 120858436609
"r2_hex": "0x1c23b96401"
"r2_bit": "2^37 - 2^34 + 2^29 + 2^26 - 2^22 - 2^19 + 2^17 - 2^15 - 2^13 + 2^10 + 1"
"znprimroot": 7
- "n": 140737487869441
"n_hex": "0x7ffffff89601"
"n_bit": "2^47 - 2^19 + 2^15 + 2^13 - 2^11 - 2^9 + 1"
"n_fac": "2^9 * 3^4 * 5 * 7 * 11 * 47 * 167 * 1123 + 1"
"nd": 20721607939583
"nd_hex": "0x12d8a01495ff"
"nd_bit": "2^44 + 2^42 - 2^40 - 2^37 - 2^35 + 2^31 + 2^29 + 2^20 + 2^18 + 2^15 + 2^13 - 2^11 - 2^9 - 1"
"r2": 236086176769
"r2_hex": "0x36f7d52c01"
"r2_bit": "2^38 - 2^35 - 2^32 - 2^27 - 2^22 + 2^20 + 2^18 + 2^16 + 2^14 - 2^12 - 2^10 + 1"
"znprimroot": 23
- "n": 140737488348161
"n_hex": "0x7fffffffe401"
"n_bit": "2^47 - 2^13 + 2^10 + 1"
"n_fac": "2^10 * 5 * 11 * 2498890063 + 1"
"nd": 33716515628031
"nd_hex": "0x1eaa3cefe3ff"
"nd_bit": "2^45 - 2^41 + 2^39 + 2^37 + 2^35 + 2^33 + 2^30 - 2^26 + 2^24 - 2^20 - 2^13 + 2^10 - 1"
"r2": 51365889
"r2_hex": "0x30fc801"
"r2_bit": "2^26 - 2^24 + 2^20 - 2^14 + 2^11 + 1"
"znprimroot": 6
- "n": 140737488337921
"n_hex": "0x7fffffffbc01"
"n_bit": "2^47 - 2^14 - 2^10 + 1"
"n_fac": "2^10 * 3 * 5 * 9162596897c + 1"
"nd": 63993635912703
"nd_hex": "0x3a33adefbbff"
"nd_bit": "2^46 - 2^43 + 2^41 + 2^38 - 2^36 + 2^34 - 2^30 - 2^28 - 2^25 - 2^20 - 2^14 - 2^10 - 1"
"r2": 303003649
"r2_hex": "0x120f7801"
"r2_bit": "2^28 + 2^25 + 2^20 - 2^15 - 2^11 + 1"
"znprimroot": 14
- "n": 140737487385601
"n_hex": "0x7ffffff13401"
"n_bit": "2^47 - 2^20 + 2^16 + 2^14 - 2^12 + 2^10 + 1"
"n_fac": "2^10 * 3^3 * 5^2 * 7 * 29 * 193 * 5197 + 1"
"nd": 53851598173183
"nd_hex": "0x30fa4d6133ff"
"nd_bit": "2^46 - 2^44 + 2^40 - 2^35 + 2^33 + 2^30 + 2^28 - 2^25 - 2^23 - 2^21 + 2^16 + 2^14 - 2^12 + 2^10 - 1"
"r2": 940370454529
"r2_hex": "0xdaf2726801"
"r2_bit": "2^40 - 2^37 - 2^34 - 2^32 - 2^28 + 2^25 + 2^23 - 2^20 + 2^17 + 2^15 - 2^13 + 2^11 + 1"
"znprimroot": 11
- "n": 140737488340993
"n_hex": "0x7fffffffc801"
"n_bit": "2^47 - 2^14 + 2^11 + 1"
"n_fac": "2^11 * 3 * 22906492243 + 1"
"nd": 120198749210623
"nd_hex": "0x6d51f3bfc7ff"
"nd_bit": "2^47 - 2^44 - 2^42 + 2^40 + 2^38 + 2^36 + 2^33 - 2^28 + 2^26 - 2^22 - 2^14 + 2^11 - 1"
"r2": 205492225
"r2_hex": "0xc3f9001"
"r2_bit": "2^28 - 2^26 + 2^22 - 2^15 + 2^12 + 1"
"znprimroot": 5
- "n": 140737488230401
"n_hex": "0x7ffffffe1801"
"n_bit": "2^47 - 2^17 + 2^13 - 2^11 + 1"
"n_fac": "2^11 * 3 * 5^2 * 47 * 2309 * 8443 + 1"
"nd": 2965100173311
"nd_hex": "0x2b25dbe17ff"
"nd_bit": "2^42 - 2^40 - 2^38 - 2^36 + 2^33 + 2^31 - 2^29 - 2^25 - 2^22 - 2^17 + 2^13 - 2^11 - 1"
"r2": 15606755329
"r2_hex": "0x3a23c3001"
"r2_bit": "2^34 - 2^31 + 2^29 + 2^25 + 2^22 - 2^18 + 2^14 - 2^12 + 1"
"znprimroot": 11
- "n": 140737488132097
"n_hex": "0x7ffffffc9801"
"n_bit": "2^47 - 2^18 + 2^15 + 2^13 - 2^11 + 1"
"n_fac": "2^11 * 3^3 * 7417 * 343153 + 1"
"nd": 117142644889599
"nd_hex": "0x6a8a65bc97ff"
"nd_bit": "2^47 - 2^45 + 2^43 + 2^41 + 2^39 + 2^35 + 2^33 + 2^31 - 2^29 + 2^27 - 2^25 - 2^22 - 2^18 + 2^15 + 2^13 - 2^11 - 1"
"r2": 49832079361
"r2_hex": "0xb9a393001"
"r2_bit": "2^36 - 2^34 - 2^31 + 2^29 - 2^27 + 2^25 + 2^22 - 2^19 + 2^16 + 2^14 - 2^12 + 1"
"znprimroot": 7
- "n": 140737485772801
"n_hex": "0x7fffffd89801"
"n_bit": "2^47 - 2^21 - 2^19 + 2^15 + 2^13 - 2^11 + 1"
"n_fac": "2^11 * 3^2 * 5^2 * 7^3 * 890437 + 1"
"nd": 89632303257599
"nd_hex": "0x5185259897ff"
"nd_bit": "2^46 + 2^44 + 2^41 - 2^39 + 2^34 + 2^32 + 2^29 + 2^27 - 2^25 - 2^23 + 2^21 - 2^19 + 2^15 + 2^13 - 2^11 - 1"
"r2": 6669445705729
"r2_hex": "0x610d9f13001"
"r2_bit": "2^43 - 2^41 + 2^36 + 2^32 - 2^29 - 2^27 + 2^25 - 2^20 + 2^16 + 2^14 - 2^12 + 1"
"znprimroot": 17
- "n": 140737487892481
"n_hex": "0x7ffffff8f001"
"n_bit": "2^47 - 2^19 + 2^16 - 2^12 + 1"
"n_fac": "2^12 * 3^2 * 5 * 59 * 179 * 197 * 367 + 1"
"nd": 64588237828095
"nd_hex": "0x3abe1ef8efff"
"nd_bit": "2^46 - 2^42 - 2^40 - 2^38 - 2^33 + 2^29 - 2^24 - 2^19 + 2^16 - 2^12 - 1"
"r2": 214227345409
"r2_hex": "0x31e0f1e001"
"r2_bit": "2^38 - 2^36 + 2^33 - 2^29 + 2^24 - 2^20 + 2^17 - 2^13 + 1"
"znprimroot": 11
- "n": 140737487278081
"n_hex": "0x7fffffef9001"
"n_bit": "2^47 - 2^20 - 2^15 + 2^12 + 1"
"n_fac": "2^12 * 3 * 5 * 7^2 * 11 * 17 * 249989 + 1"
"nd": 63229685370879
"nd_hex": "0x3981ceef8fff"
"nd_bit": "2^46 - 2^43 + 2^41 - 2^39 + 2^33 - 2^30 + 2^28 - 2^24 - 2^20 - 2^15 + 2^12 - 1"
"r2": 1160461099009
"r2_hex": "0x10e30df2001"
"r2_bit": "2^40 + 2^36 - 2^33 + 2^30 - 2^28 + 2^24 - 2^21 - 2^16 + 2^13 + 1"
"znprimroot": 52
- "n": 140737470935041
"n_hex": "0x7ffffef63001"
"n_bit": "2^47 - 2^24 - 2^19 - 2^17 + 2^14 - 2^12 + 1"
"n_fac": "2^12 * 3^3 * 5 * 7 * 36359507 + 1"
"nd": 34839532548095
"nd_hex": "0x1fafb5f62fff"
"nd_bit": "2^45 - 2^38 - 2^36 - 2^30 - 2^27 - 2^25 - 2^19 - 2^17 + 2^14 - 2^12 - 1"
"r2": 21991457292287
"r2_hex": "0x140048ffffff"
"r2_bit": "2^44 + 2^42 + 2^30 + 2^27 + 2^24 - 1"
"znprimroot": 11
- "n": 140737488273409
"n_hex": "0x7ffffffec001"
"n_bit": "2^47 - 2^16 - 2^14 + 1"
"n_fac": "2^14 * 3 * 13 * 7759 * 28387 + 1"
"nd": 13187428564991
"nd_hex": "0xbfe6ffebfff"
"nd_bit": "2^44 - 2^42 - 2^33 + 2^31 - 2^28 - 2^16 - 2^14 - 1"
"r2": 6710722561
"r2_hex": "0x18ffd8001"
"r2_bit": "2^33 - 2^31 + 2^28 - 2^17 - 2^15 + 1"
"znprimroot": 7
- "n": 140737487093761
"n_hex": "0x7fffffecc001"
"n_bit": "2^47 - 2^20 - 2^18 + 2^16 - 2^14 + 1"
"n_fac": "2^14 * 3 * 5 * 572662301c + 1"
"nd": 46786956541951
"nd_hex": "0x2a8d6fecbfff"
"nd_bit": "2^45 + 2^43 + 2^41 + 2^39 + 2^36 - 2^33 - 2^31 - 2^28 - 2^20 - 2^18 + 2^16 - 2^14 - 1"
"r2": 1591551295489
"r2_hex": "0x1728fd98001"
"r2_bit": "2^41 - 2^39 - 2^36 + 2^33 + 2^31 + 2^28 - 2^21 - 2^19 + 2^17 - 2^15 + 1"
"znprimroot": 14
- "n": 140737488125953
"n_hex": "0x7ffffffc8001"
"n_bit": "2^47 - 2^18 + 2^15 + 1"
"n_fac": "2^15 * 3 * 37 * 167 * 223 * 1039 + 1"
"nd": 35131758510079
"nd_hex": "0x1ff3bffc7fff"
"nd_bit": "2^45 - 2^36 + 2^34 - 2^30 - 2^18 + 2^15 - 1"
"r2": 52612890625
"r2_hex": "0xc3ff90001"
"r2_bit": "2^36 - 2^34 + 2^30 - 2^19 + 2^16 + 1"
"znprimroot": 7
- "n": 140737469644801
"n_hex": "0x7ffffee28001"
"n_bit": "2^47 - 2^24 - 2^21 + 2^17 + 2^15 + 1"
"n_fac": "2^15 * 3^2 * 5^2 * 7 * 643 * 4241 + 1"
"nd": 107312960405503
"nd_hex": "0x6199bee27fff"
"nd_bit": "2^47 - 2^45 + 2^41 - 2^39 + 2^37 - 2^35 + 2^33 - 2^30 - 2^24 - 2^21 + 2^17 + 2^15 - 1"
"r2": 68608881328127
"r2_hex": "0x3e663fffffff"
"r2_bit": "2^46 - 2^41 + 2^39 - 2^37 + 2^35 - 2^33 + 2^30 - 1"
"znprimroot": 11
- "n": 140737485864961
"n_hex": "0x7fffffda0001"
"n_bit": "2^47 - 2^21 - 2^19 + 2^17 + 1"
"n_fac": "2^17 * 3^3 * 5 * 313 * 25411 + 1"
"nd": 134535553089535
"nd_hex": "0x7a5bffd9ffff"
"nd_bit": "2^47 - 2^43 + 2^41 + 2^39 - 2^37 - 2^34 - 2^21 - 2^19 + 2^17 - 1"
"r2": 6201927794689
"r2_hex": "0x5a3ffb40001"
"r2_bit": "2^43 - 2^41 - 2^39 + 2^37 + 2^34 - 2^22 - 2^20 + 2^18 + 1"
"znprimroot": 22
- "n": 140737466204161
"n_hex": "0x7ffffeae0001"
"n_bit": "2^47 - 2^24 - 2^22 - 2^20 - 2^17 + 1"
"n_fac": "2^17 * 3 * 5 * 7^2 * 223 * 6551 + 1"
"nd": 72275687505919
"nd_hex": "0x41bbfeadffff"
"nd_bit": "2^46 + 2^41 - 2^38 - 2^34 - 2^24 - 2^22 - 2^20 - 2^17 - 1"
"r2": 68461800849406
"r2_hex": "0x3e440151fffe"
"r2_bit": "2^46 - 2^41 + 2^38 + 2^34 + 2^24 + 2^22 + 2^20 + 2^17 - 2"
"znprimroot": 17
- "n": 140737483898881
"n_hex": "0x7fffffbc0001"
"n_bit": "2^47 - 2^22 - 2^18 + 1"
"n_fac": "2^18 * 3 * 5 * 11 * 47 * 107 * 647 + 1"
"nd": 120877555122175
"nd_hex": "0x6defffbbffff"
"nd_bit": "2^47 - 2^44 - 2^41 - 2^36 - 2^22 - 2^18 - 1"
"r2": 19859919863809
"r2_hex": "0x120fff780001"
"r2_bit": "2^44 + 2^41 + 2^36 - 2^23 - 2^19 + 1"
"znprimroot": 17
- "n": 140737468170241
"n_hex": "0x7ffffecc0001"
"n_bit": "2^47 - 2^24 - 2^22 + 2^20 - 2^18 + 1"
"n_fac": "2^18 * 3^5 * 5 * 73 * 6053 + 1"
"nd": 14774667313151
"nd_hex": "0xd6ffecbffff"
"nd_bit": "2^44 - 2^41 - 2^39 - 2^36 - 2^24 - 2^22 + 2^20 - 2^18 - 1"
"r2": 125962800857087
"r2_hex": "0x728fffffffff"
"r2_bit": "2^47 - 2^44 + 2^41 + 2^39 + 2^36 - 1"
"znprimroot": 7
- "n": 140737232240641
"n_hex": "0x7ffff0bc0001"
"n_bit": "2^47 - 2^28 + 2^24 - 2^22 - 2^18 + 1"
"n_fac": "2^18 * 3^2 * 5 * 7 * 31 * 54979 + 1"
"nd": 129673396486143
"nd_hex": "0x75eff0bbffff"
"nd_bit": "2^47 - 2^43 - 2^41 - 2^36 - 2^28 + 2^24 - 2^22 - 2^18 - 1"
"r2": 11182672969263
"r2_hex": "0xa2bab3ffe2f"
"r2_bit": "2^43 + 2^41 + 2^38 - 2^36 - 2^34 - 2^30 - 2^28 - 2^26 - 2^24 + 2^22 - 2^9 + 2^6 - 2^4 - 1"
"znprimroot": 17
- "n": 140737484685313
"n_hex": "0x7fffffc80001"
"n_bit": "2^47 - 2^22 + 2^19 + 1"
"n_fac": "2^19 * 3^2 * 4813 * 6197 + 1"
"nd": 127268467245055
"nd_hex": "0x73bfffc7ffff"
"nd_bit": "2^47 - 2^44 + 2^42 - 2^38 - 2^22 + 2^19 - 1"
"r2": 13469010100225
"r2_hex": "0xc3fff900001"
"r2_bit": "2^44 - 2^42 + 2^38 - 2^23 + 2^20 + 1"
"znprimroot": 7
- "n": 140737440645121
"n_hex": "0x7ffffd280001"
"n_bit": "2^47 - 2^26 + 2^24 + 2^21 + 2^19 + 1"
"n_fac": "2^19 * 3 * 5 * 11 * 1626881 + 1"
"nd": 116273306927103
"nd_hex": "0x69bffd27ffff"
"nd_bit": "2^47 - 2^45 + 2^43 + 2^41 - 2^38 - 2^26 + 2^24 + 2^21 + 2^19 - 1"
"r2": 24464801660913
"r2_hex": "0x164027cffff1"
"r2_bit": "2^45 - 2^43 - 2^41 + 2^38 + 2^29 + 2^27 - 2^22 + 2^20 - 2^4 + 1"
"znprimroot": 7
- "n": 140736795770881
"n_hex": "0x7fffd6b80001"
"n_bit": "2^47 - 2^29 - 2^27 - 2^24 - 2^22 - 2^19 + 1"
"n_fac": "2^19 * 3^3 * 5 * 53 * 37517 + 1"
"nd": 100879499263999
"nd_hex": "0x5bbfd6b7ffff"
"nd_bit": "2^47 - 2^45 - 2^42 - 2^38 - 2^29 - 2^27 - 2^24 - 2^22 - 2^19 - 1"
"r2": 42216239133361
"r2_hex": "0x26653beff2b1"
"r2_bit": "2^45 + 2^43 - 2^41 + 2^39 - 2^37 + 2^34 + 2^32 + 2^30 - 2^26 - 2^20 - 2^12 + 2^10 - 2^8 - 2^6 - 2^4 + 1"
"znprimroot": 29
- "n": 140736323911681
"n_hex": "0x7fffba980001"
"n_bit": "2^47 - 2^30 - 2^27 + 2^25 + 2^23 + 2^21 - 2^19 + 1"
"n_fac": "2^19 * 3^2 * 5 * 7 * 19 * 44851 + 1"
"nd": 76689771593727
"nd_hex": "0x45bfba97ffff"
"nd_bit": "2^46 + 2^43 - 2^41 - 2^38 - 2^30 - 2^27 + 2^25 + 2^23 + 2^21 - 2^19 - 1"
"r2": 75262473525855
"r2_hex": "0x447368ffda5f"
"r2_bit": "2^46 + 2^42 + 2^39 - 2^36 + 2^34 - 2^31 - 2^29 + 2^27 + 2^24 - 2^13 - 2^11 + 2^9 + 2^7 - 2^5 - 1"
"znprimroot": 34
- "n": 140737487306753
"n_hex": "0x7ffffff00001"
"n_bit": "2^47 - 2^20 + 1"
"n_fac": "2^20 * 7 * 73 * 262657 + 1"
"nd": 139637975678975
"nd_hex": "0x7effffefffff"
"nd_bit": "2^47 - 2^40 - 2^20 - 1"
"r2": 1099509530625
"r2_hex": "0xffffe00001"
"r2_bit": "2^40 - 2^21 + 1"
"znprimroot": 5
- "n": 140737401323521
"n_hex": "0x7ffffad00001"
"n_bit": "2^47 - 2^26 - 2^24 - 2^22 + 2^20 + 1"
"n_fac": "2^20 * 3 * 5 * 8947843 + 1"
"nd": 25288680407039
"nd_hex": "0x16fffacfffff"
"nd_bit": "2^45 - 2^43 - 2^40 - 2^26 - 2^24 - 2^22 + 2^20 - 1"
"r2": 115453159538636
"r2_hex": "0x6901088fffcc"
"r2_bit": "2^47 - 2^45 + 2^43 + 2^40 + 2^32 + 2^27 + 2^23 + 2^20 - 2^6 + 2^4 - 2^2"
"znprimroot": 11
- "n": 140737369866241
"n_hex": "0x7ffff8f00001"
"n_bit": "2^47 - 2^27 + 2^24 - 2^20 + 1"
"n_fac": "2^20 * 3 * 5 * 7^3 * 19 * 1373 + 1"
"nd": 34084741971967
"nd_hex": "0x1efff8efffff"
"nd_bit": "2^45 - 2^40 - 2^27 + 2^24 - 2^20 - 1"
"r2": 106664121335710
"r2_hex": "0x6102ad0fff9e"
"r2_bit": "2^47 - 2^45 + 2^40 + 2^34 - 2^32 - 2^30 - 2^28 - 2^26 + 2^24 + 2^20 - 2^7 + 2^5 - 2"
"znprimroot": 37
- "n": 140737187414017
"n_hex": "0x7fffee100001"
"n_bit": "2^47 - 2^28 - 2^25 + 2^20 + 1"
"n_fac": "2^20 * 3^2 * 14913049 + 1"
"nd": 69268931608575
"nd_hex": "0x3effee0fffff"
"nd_bit": "2^46 - 2^40 - 2^28 - 2^25 + 2^20 - 1"
"r2": 71661159185790
"r2_hex": "0x412ce9effd7e"
"r2_bit": "2^46 + 2^40 + 2^38 - 2^36 - 2^34 + 2^32 - 2^29 + 2^27 + 2^25 - 2^20 - 2^9 - 2^7 - 2"
"znprimroot": 5
- "n": 140737121353729
"n_hex": "0x7fffea200001"
"n_bit": "2^47 - 2^29 + 2^27 + 2^25 + 2^21 + 1"
"n_fac": "2^21 * 3^3 * 2485507 + 1"
"nd": 136339074842623
"nd_hex": "0x7bffea1fffff"
"nd_bit": "2^47 - 2^42 - 2^29 + 2^27 + 2^25 + 2^21 - 1"
"r2": 4748533038148
"r2_hex": "0x4519a9ffc44"
"r2_bit": "2^42 + 2^38 + 2^36 + 2^33 - 2^31 + 2^29 - 2^27 + 2^25 + 2^23 + 2^21 - 2^10 + 2^6 + 2^2"
"znprimroot": 7
- "n": 140736762740737
"n_hex": "0x7fffd4c00001"
"n_bit": "2^47 - 2^30 + 2^28 + 2^26 + 2^24 - 2^22 + 1"
"n_fac": "2^22 * 3^2 * 3728251 + 1"
"nd": 123144576696319
"nd_hex": "0x6fffd4bfffff"
"nd_bit": "2^47 - 2^44 - 2^30 + 2^28 + 2^26 + 2^24 - 2^22 - 1"
"r2": 20305259000164
"r2_hex": "0x1277afbff164"
"r2_bit": "2^44 + 2^41 + 2^39 - 2^35 - 2^30 - 2^28 - 2^22 - 2^12 + 2^9 - 2^7 - 2^5 + 2^2"
"znprimroot": 5
- "n": 140736158760961
"n_hex": "0x7fffb0c00001"
"n_bit": "2^47 - 2^30 - 2^28 + 2^24 - 2^22 + 1"
"n_fac": "2^22 * 3^3 * 5 * 7 * 35507 + 1"
"nd": 123143972716543
"nd_hex": "0x6fffb0bfffff"
"nd_bit": "2^47 - 2^44 - 2^30 - 2^28 + 2^24 - 2^22 - 1"
"r2": 34290561699568
"r2_hex": "0x1f2fe4bfcef0"
"r2_bit": "2^45 - 2^40 + 2^38 - 2^36 - 2^29 + 2^26 + 2^24 - 2^22 - 2^14 + 2^12 - 2^8 - 2^4"
"znprimroot": 17
- "n": 140736976650241
"n_hex": "0x7fffe1800001"
"n_bit": "2^47 - 2^29 + 2^25 - 2^23 + 1"
"n_fac": "2^23 * 3 * 5 * 103 * 10859 + 1"
"nd": 70368232472575
"nd_hex": "0x3fffe17fffff"
"nd_bit": "2^46 - 2^29 + 2^25 - 2^23 - 1"
"r2": 71319492229309
"r2_hex": "0x40dd5cfff8bd"
"r2_bit": "2^46 + 2^40 - 2^37 - 2^33 - 2^31 - 2^29 - 2^26 + 2^24 - 2^11 + 2^8 - 2^6 - 2^2 + 1"
"znprimroot": 7
- "n": 140736724992001
"n_hex": "0x7fffd2800001"
"n_bit": "2^47 - 2^30 + 2^28 + 2^25 + 2^23 + 1"
"n_fac": "2^23 * 3^4 * 5^3 * 1657 + 1"
"nd": 70367980814335
"nd_hex": "0x3fffd27fffff"
"nd_bit": "2^46 - 2^30 + 2^28 + 2^25 + 2^23 - 1"
"r2": 73527541624789
"r2_hex": "0x42df76ffefd5"
"r2_bit": "2^46 + 2^42 - 2^40 - 2^37 - 2^31 - 2^27 - 2^24 - 2^12 - 2^6 + 2^4 + 2^2 + 1"
"znprimroot": 7
- "n": 140732195143681
"n_hex": "0x7ffec4800001"
"n_bit": "2^47 - 2^32 - 2^30 + 2^26 + 2^23 + 1"
"n_fac": "2^23 * 3^3 * 5 * 7 * 41 * 433 + 1"
"nd": 70363450966015
"nd_hex": "0x3ffec47fffff"
"nd_bit": "2^46 - 2^32 - 2^30 + 2^26 + 2^23 - 1"
"r2": 139005366433362
"r2_hex": "0x7e6cb57cf652"
"r2_bit": "2^47 - 2^41 + 2^39 - 2^36 - 2^34 + 2^32 - 2^30 - 2^27 - 2^25 - 2^23 - 2^18 + 2^16 - 2^11 - 2^9 + 2^6 + 2^4 + 2"
"znprimroot": 38
- "n": 140737471578113
"n_hex": "0x7fffff000001"
"n_bit": "2^47 - 2^24 + 1"
"n_fac": "2^24 * 47 * 178481 + 1"
"nd": 140737471578111
"nd_hex": "0x7ffffeffffff"
"nd_bit": "2^47 - 2^24 - 1"
"r2": 140737471578112
"r2_hex": "0x7fffff000000"
"r2_bit": "2^47 - 2^24"
"znprimroot": 3
- "n": 140736599162881
"n_hex": "0x7fffcb000001"
"n_bit": "2^47 - 2^30 + 2^28 - 2^26 - 2^24 + 1"
"n_fac": "2^24 * 3 * 5 * 7^2 * 101 * 113 + 1"
"nd": 140736599162879
"nd_hex": "0x7fffcaffffff"
"nd_bit": "2^47 - 2^30 + 2^28 - 2^26 - 2^24 - 1"
"r2": 4993704782351
"r2_hex": "0x48aafffea0f"
"r2_bit": "2^42 + 2^39 + 2^36 - 2^34 - 2^32 - 2^30 - 2^28 - 2^13 + 2^11 + 2^9 + 2^4 - 1"
"znprimroot": 11
- "n": 140728042782721
"n_hex": "0x7ffdcd000001"
"n_bit": "2^47 - 2^33 - 2^30 + 2^28 - 2^26 + 2^24 + 1"
"n_fac": "2^24 * 3^2 * 5 * 53 * 3517 + 1"
"nd": 140728042782719
"nd_hex": "0x7ffdccffffff"
"nd_bit": "2^47 - 2^33 - 2^30 + 2^28 - 2^26 + 2^24 - 1"
"r2": 77310719316869
"r2_hex": "0x46504df65385"
"r2_bit": "2^46 + 2^43 - 2^41 + 2^38 + 2^36 + 2^30 + 2^28 - 2^25 - 2^19 - 2^17 + 2^14 + 2^12 + 2^10 - 2^7 + 2^2 + 1"
"znprimroot": 23
- "n": 140623856271361
"n_hex": "0x7fe58b000001"
"n_bit": "2^47 - 2^37 + 2^35 - 2^33 - 2^31 + 2^28 - 2^26 - 2^24 + 1"
"n_fac": "2^24 * 3^2 * 5 * 7 * 11 * 41 * 59 + 1"
"nd": 140623856271359
"nd_hex": "0x7fe58affffff"
"nd_bit": "2^47 - 2^37 + 2^35 - 2^33 - 2^31 + 2^28 - 2^26 - 2^24 - 1"
"r2": 118962583432055
"r2_hex": "0x6c322286eb77"
"r2_bit": "2^47 - 2^44 - 2^42 + 2^38 - 2^36 + 2^33 + 2^29 + 2^25 + 2^23 + 2^19 - 2^16 - 2^12 - 2^10 - 2^7 - 2^3 - 1"
"znprimroot": 13
- "n": 140737454800897
"n_hex": "0x7ffffe000001"
"n_bit": "2^47 - 2^25 + 1"
"n_fac": "2^25 * 3 * 23 * 89 * 683 + 1"
"nd": 140737454800895
"nd_hex": "0x7ffffdffffff"
"nd_bit": "2^47 - 2^25 - 1"
"r2": 201326585
"r2_hex": "0xbfffff9"
"r2_bit": "2^28 - 2^26 - 2^3 + 1"
"znprimroot": 5
- "n": 140733629595649
"n_hex": "0x7fff1a000001"
"n_bit": "2^47 - 2^32 + 2^29 - 2^27 + 2^25 + 1"
"n_fac": "2^25 * 3^2 * 17 * 79 * 347 + 1"
"nd": 140733629595647
"nd_hex": "0x7fff19ffffff"
"nd_bit": "2^47 - 2^32 + 2^29 - 2^27 + 2^25 - 1"
"r2": 126781797327543
"r2_hex": "0x734eaffe62b7"
"r2_bit": "2^47 - 2^44 + 2^42 - 2^40 + 2^38 + 2^36 - 2^32 - 2^30 - 2^28 - 2^17 + 2^15 - 2^13 + 2^10 - 2^8 - 2^6 - 2^3 - 1"
"znprimroot": 7
- "n": 140723764592641
"n_hex": "0x7ffcce000001"
"n_bit": "2^47 - 2^34 + 2^32 - 2^30 + 2^28 - 2^25 + 1"
"n_fac": "2^25 * 3 * 5 * 279593 + 1"
"nd": 140723764592639
"nd_hex": "0x7ffccdffffff"
"nd_bit": "2^47 - 2^34 + 2^32 - 2^30 + 2^28 - 2^25 - 1"
"r2": 71681123783671
"r2_hex": "0x41318feb93f7"
"r2_bit": "2^46 + 2^40 + 2^38 - 2^36 + 2^33 - 2^31 + 2^28 - 2^20 - 2^18 - 2^15 + 2^12 + 2^10 - 2^3 - 1"
"znprimroot": 7
- "n": 140698598768641
"n_hex": "0x7ff6f2000001"
"n_bit": "2^47 - 2^35 - 2^32 - 2^28 + 2^25 + 1"
"n_fac": "2^25 * 3^2 * 5 * 11 * 43 * 197 + 1"
"nd": 140698598768639
"nd_hex": "0x7ff6f1ffffff"
"nd_bit": "2^47 - 2^35 - 2^32 - 2^28 + 2^25 - 1"
"r2": 42227033963231
"r2_hex": "0x2667bf5bfadf"
"r2_bit": "2^45 + 2^43 - 2^41 + 2^39 - 2^37 + 2^35 - 2^30 - 2^23 - 2^21 - 2^18 - 2^10 - 2^8 - 2^5 - 1"
"znprimroot": 47
- "n": 140710175047681
"n_hex": "0x7ff9a4000001"
"n_bit": "2^47 - 2^35 + 2^33 - 2^31 + 2^29 + 2^26 + 1"
"n_fac": "2^26 * 3 * 5 * 7 * 19 * 1051 + 1"
"nd": 140710175047679
"nd_hex": "0x7ff9a3ffffff"
"nd_bit": "2^47 - 2^35 + 2^33 - 2^31 + 2^29 + 2^26 - 1"
"r2": 131392573741533
"r2_hex": "0x778037af19dd"
"r2_bit": "2^47 - 2^43 - 2^39 + 2^30 - 2^27 - 2^22 - 2^20 - 2^16 + 2^13 - 2^11 + 2^9 - 2^5 - 2^2 + 1"
"znprimroot": 13
- "n": 140736548831233
"n_hex": "0x7fffc8000001"
"n_bit": "2^47 - 2^30 + 2^27 + 1"
"n_fac": "2^27 * 3 * 193 * 1811 + 1"
"nd": 140736548831231
"nd_hex": "0x7fffc7ffffff"
"nd_bit": "2^47 - 2^30 + 2^27 - 1"
"r2": 5890816075649
"r2_hex": "0x55b8fffe781"
"r2_bit": "2^43 - 2^41 - 2^39 - 2^37 - 2^34 - 2^31 + 2^28 - 2^13 + 2^11 - 2^7 + 1"
"znprimroot": 15
- "n": 140728495767553
"n_hex": "0x7ffde8000001"
"n_bit": "2^47 - 2^33 - 2^29 + 2^27 + 1"
"n_fac": "2^27 * 3^2 * 7 * 11 * 17 * 89 + 1"
"nd": 140728495767551
"nd_hex": "0x7ffde7ffffff"
"nd_bit": "2^47 - 2^33 - 2^29 + 2^27 - 1"
"r2": 100825162005341
"r2_hex": "0x5bb32ff73b5d"
"r2_bit": "2^47 - 2^45 - 2^42 - 2^38 - 2^36 + 2^34 - 2^32 + 2^30 - 2^28 - 2^19 - 2^16 + 2^14 - 2^10 - 2^7 - 2^5 - 2^2 + 1"
"znprimroot": 5
- "n": 140697088819201
"n_hex": "0x7ff698000001"
"n_bit": "2^47 - 2^35 - 2^33 + 2^31 + 2^29 - 2^27 + 1"
"n_fac": "2^27 * 3^3 * 5^2 * 1553 + 1"
"nd": 140697088819199
"nd_hex": "0x7ff697ffffff"
"nd_bit": "2^47 - 2^35 - 2^33 + 2^31 + 2^29 - 2^27 - 1"
"r2": 129822220025472
"r2_hex": "0x7612974efe80"
"r2_bit": "2^47 - 2^43 - 2^41 + 2^36 + 2^33 + 2^31 + 2^29 - 2^27 - 2^24 + 2^22 + 2^20 - 2^16 - 2^9 + 2^7"
"znprimroot": 7
- "n": 140729166856193
"n_hex": "0x7ffe10000001"
"n_bit": "2^47 - 2^33 + 2^28 + 1"
"n_fac": "2^28 * 524257 + 1"
"nd": 140729166856191
"nd_hex": "0x7ffe0fffffff"
"nd_bit": "2^47 - 2^33 + 2^28 - 1"
"r2": 13281380564452
"r2_hex": "0xc144ff87de4"
"r2_bit": "2^44 - 2^42 + 2^36 + 2^34 + 2^30 + 2^28 - 2^19 + 2^15 - 2^9 - 2^5 + 2^2"
"znprimroot": 3
- "n": 140724871888897
"n_hex": "0x7ffd10000001"
"n_bit": "2^47 - 2^34 + 2^32 + 2^28 + 1"
"n_fac": "2^28 * 3^2 * 31 * 1879 + 1"
"nd": 140724871888895
"nd_hex": "0x7ffd0fffffff"
"nd_bit": "2^47 - 2^34 + 2^32 + 2^28 - 1"
"r2": 56087171480988
"r2_hex": "0x3302cfeebd9c"
"r2_bit": "2^46 - 2^44 + 2^42 - 2^40 + 2^34 - 2^32 - 2^30 + 2^28 - 2^20 - 2^16 - 2^14 - 2^9 - 2^7 + 2^5 - 2^2"
"znprimroot": 10
- "n": 140618571448321
"n_hex": "0x7fe450000001"
"n_bit": "2^47 - 2^37 + 2^34 + 2^30 + 2^28 + 1"
"n_fac": "2^28 * 3^2 * 5 * 7 * 1663 + 1"
"nd": 140618571448319
"nd_hex": "0x7fe44fffffff"
"nd_bit": "2^47 - 2^37 + 2^34 + 2^30 + 2^28 - 1"
"r2": 68439666426389
"r2_hex": "0x3e3eda018215"
"r2_bit": "2^46 - 2^41 + 2^38 - 2^32 - 2^29 - 2^27 + 2^25 + 2^17 - 2^15 + 2^9 + 2^4 + 2^2 + 1"
"znprimroot": 11
- "n": 140718697873409
"n_hex": "0x7ffba0000001"
"n_bit": "2^47 - 2^34 - 2^31 + 2^29 + 1"
"n_fac": "2^29 * 262109 + 1"
"nd": 140718697873407
"nd_hex": "0x7ffb9fffffff"
"nd_bit": "2^47 - 2^34 - 2^31 + 2^29 - 1"
"r2": 759669831346
"r2_hex": "0xb0dfd9b6b2"
"r2_bit": "2^40 - 2^38 - 2^36 + 2^32 - 2^29 - 2^21 - 2^19 + 2^17 - 2^14 - 2^11 - 2^8 - 2^6 - 2^4 + 2"
"znprimroot": 3
- "n": 140678969425921
"n_hex": "0x7ff260000001"
"n_bit": "2^47 - 2^36 + 2^33 + 2^31 - 2^29 + 1"
"n_fac": "2^29 * 3^4 * 5 * 647 + 1"
"nd": 140678969425919
"nd_hex": "0x7ff25fffffff"
"nd_bit": "2^47 - 2^36 + 2^33 + 2^31 - 2^29 - 1"
"r2": 87477185187960
"r2_hex": "0x4f8f5e8c9078"
"r2_bit": "2^46 + 2^44 - 2^39 + 2^36 - 2^31 - 2^29 - 2^25 + 2^23 + 2^20 - 2^18 + 2^15 + 2^12 + 2^7 - 2^3"
"znprimroot": 14
- "n": 140308528496641
"n_hex": "0x7f9c20000001"
"n_bit": "2^47 - 2^39 + 2^37 - 2^34 + 2^29 + 1"
"n_fac": "2^29 * 3 * 5 * 7 * 19 * 131 + 1"
"nd": 140308528496639
"nd_hex": "0x7f9c1fffffff"
"nd_bit": "2^47 - 2^39 + 2^37 - 2^34 + 2^29 - 1"
"r2": 137549848050160
"r2_hex": "0x7d19d1d4f9f0"
"r2_bit": "2^47 - 2^42 + 2^40 + 2^37 - 2^35 + 2^33 - 2^30 + 2^28 + 2^25 - 2^22 + 2^20 + 2^18 + 2^16 - 2^11 + 2^9 - 2^4"
"znprimroot": 11
- "n": 140674137587713
"n_hex": "0x7ff140000001"
"n_bit": "2^47 - 2^36 + 2^32 + 2^30 + 1"
"n_fac": "2^30 * 3^2 * 14557 + 1"
"nd": 140674137587711
"nd_hex": "0x7ff13fffffff"
"nd_bit": "2^47 - 2^36 + 2^32 + 2^30 - 1"
"r2": 136061314182616
"r2_hex": "0x7bbf3e4cadd8"
"r2_bit": "2^47 - 2^42 - 2^38 - 2^32 + 2^30 - 2^25 + 2^22 + 2^20 - 2^18 + 2^16 - 2^14 - 2^12 - 2^9 - 2^5 - 2^3"
"znprimroot": 13
- "n": 140525961216001
"n_hex": "0x7fcec0000001"
"n_bit": "2^47 - 2^38 + 2^36 - 2^32 - 2^30 + 1"
"n_fac": "2^30 * 3 * 5^3 * 349 + 1"
"nd": 140525961215999
"nd_hex": "0x7fcebfffffff"
"nd_bit": "2^47 - 2^38 + 2^36 - 2^32 - 2^30 - 1"
"r2": 10304381883046
"r2_hex": "0x95f2d0592a6"
"r2_bit": "2^43 + 2^41 - 2^39 - 2^37 - 2^32 + 2^30 - 2^28 - 2^26 + 2^24 + 2^19 - 2^17 - 2^15 + 2^12 + 2^9 + 2^7 + 2^5 + 2^3 - 2"
"znprimroot": 19
- "n": 139462956810241
"n_hex": "0x7ed740000001"
"n_bit": "2^47 - 2^40 - 2^37 - 2^35 - 2^32 + 2^30 + 1"
"n_fac": "2^30 * 3 * 5 * 7 * 1237 + 1"
"nd": 139462956810239
"nd_hex": "0x7ed73fffffff"
"nd_bit": "2^47 - 2^40 - 2^37 - 2^35 - 2^32 + 2^30 - 1"
"r2": 102081872352369
"r2_hex": "0x5cd7c9bd5471"
"r2_bit": "2^47 - 2^45 - 2^42 + 2^40 - 2^37 - 2^35 - 2^30 + 2^27 + 2^25 - 2^22 - 2^18 + 2^16 + 2^14 + 2^12 + 2^10 + 2^7 - 2^4 + 1"
"znprimroot": 19
- "n": 139011985244161
"n_hex": "0x7e6e40000001"
"n_bit": "2^47 - 2^41 + 2^39 - 2^36 - 2^33 + 2^30 + 1"
"n_fac": "2^30 * 3^3 * 5 * 7 * 137 + 1"
"nd": 139011985244159
"nd_hex": "0x7e6e3fffffff"
"nd_bit": "2^47 - 2^41 + 2^39 - 2^36 - 2^33 + 2^30 - 1"
"r2": 79410780897600
"r2_hex": "0x483943630140"
"r2_bit": "2^46 + 2^43 + 2^38 - 2^35 + 2^32 + 2^30 + 2^26 - 2^23 - 2^21 + 2^18 - 2^16 + 2^8 + 2^6"
"znprimroot": 17
- "n": 140713866035201
"n_hex": "0x7ffa80000001"
"n_bit": "2^47 - 2^35 + 2^33 + 2^31 + 1"
"n_fac": "2^31 * 5^2 * 2621 + 1"
"nd": 140713866035199
"nd_hex": "0x7ffa7fffffff"
"nd_bit": "2^47 - 2^35 + 2^33 + 2^31 - 1"
"r2": 86030338456936
"r2_hex": "0x4e3e7fc37d68"
"r2_bit": "2^46 + 2^44 - 2^41 + 2^38 - 2^33 + 2^31 - 2^22 + 2^18 - 2^15 - 2^9 - 2^7 - 2^5 + 2^3"
"znprimroot": 3
- "n": 137771813437441
"n_hex": "0x7d4d80000001"
"n_bit": "2^47 - 2^42 + 2^40 + 2^38 + 2^36 - 2^33 - 2^31 + 1"
"n_fac": "2^31 * 3 * 5 * 7 * 13 * 47 + 1"
"nd": 137771813437439
"nd_hex": "0x7d4d7fffffff"
"nd_bit": "2^47 - 2^42 + 2^40 + 2^38 + 2^36 - 2^33 - 2^31 - 1"
"r2": 35060403452907
"r2_hex": "0x1fe322e4bbeb"
"r2_bit": "2^45 - 2^37 + 2^34 - 2^32 + 2^29 + 2^26 - 2^24 - 2^21 + 2^18 + 2^16 - 2^14 - 2^10 - 2^4 - 2^2 - 1"
"znprimroot": 11
- "n": 140381006069761
"n_hex": "0x7fad00000001"
"n_bit": "2^47 - 2^38 - 2^36 - 2^34 + 2^32 + 1"
"n_fac": "2^32 * 3 * 5 * 2179 + 1"
"nd": 140381006069759
"nd_hex": "0x7facffffffff"
"nd_bit": "2^47 - 2^38 - 2^36 - 2^34 + 2^32 - 1"
"r2": 134530355364646
"r2_hex": "0x7a5aca0b0326"
"r2_bit": "2^47 - 2^43 + 2^41 + 2^39 - 2^37 - 2^34 - 2^32 - 2^30 + 2^27 + 2^25 + 2^20 - 2^18 - 2^16 + 2^10 - 2^8 + 2^5 + 2^3 - 2"
"znprimroot": 11
- "n": 136644384522241
"n_hex": "0x7c4700000001"
"n_bit": "2^47 - 2^42 + 2^38 + 2^35 - 2^32 + 1"
"n_fac": "2^32 * 3^2 * 5 * 7 * 101 + 1"
"nd": 136644384522239
"nd_hex": "0x7c46ffffffff"
"nd_bit": "2^47 - 2^42 + 2^38 + 2^35 - 2^32 - 1"
"r2": 121588176666301
"r2_hex": "0x6e9574143ebd"
"r2_bit": "2^47 - 2^44 - 2^41 + 2^39 + 2^37 - 2^35 - 2^33 - 2^31 - 2^28 + 2^26 + 2^20 + 2^18 + 2^14 - 2^8 - 2^6 - 2^2 + 1"
"znprimroot": 11
- "n": 140316581560321
"n_hex": "0x7f9e00000001"
"n_bit": "2^47 - 2^39 + 2^37 - 2^33 + 1"
"n_fac": "2^33 * 3^3 * 5 * 11^2 + 1"
"nd": 140316581560319
"nd_hex": "0x7f9dffffffff"
"nd_bit": "2^47 - 2^39 + 2^37 - 2^33 - 1"
"r2": 20434191802820
"r2_hex": "0x1295b4be61c4"
"r2_bit": "2^44 + 2^41 + 2^39 + 2^37 - 2^35 - 2^33 - 2^30 - 2^28 + 2^26 + 2^24 - 2^22 - 2^17 + 2^15 - 2^13 + 2^9 - 2^6 + 2^2"
"znprimroot": 7
- "n": 134389526691841
"n_hex": "0x7a3a00000001"
"n_bit": "2^47 - 2^43 + 2^41 + 2^38 - 2^35 + 2^33 + 1"
"n_fac": "2^33 * 3 * 5 * 7 * 149 + 1"
"nd": 134389526691839
"nd_hex": "0x7a39ffffffff"
"nd_bit": "2^47 - 2^43 + 2^41 + 2^38 - 2^35 + 2^33 - 1"
"r2": 10471928590749
"r2_hex": "0x9862f95719d"
"r2_bit": "2^43 + 2^41 - 2^39 + 2^35 - 2^33 + 2^30 - 2^28 - 2^23 + 2^21 - 2^19 - 2^17 - 2^15 - 2^12 + 2^9 - 2^7 + 2^5 - 2^2 + 1"
"znprimroot": 19
- "n": 131683697295361
"n_hex": "0x77c400000001"
"n_bit": "2^47 - 2^43 - 2^38 + 2^34 + 1"
"n_fac": "2^34 * 3 * 5 * 7 * 73 + 1"
"nd": 131683697295359
"nd_hex": "0x77c3ffffffff"
"nd_bit": "2^47 - 2^43 - 2^38 + 2^34 - 1"
"r2": 87716402296693
"r2_hex": "0x4fc710fff775"
"r2_bit": "2^46 + 2^44 - 2^38 + 2^35 - 2^32 + 2^28 + 2^24 - 2^11 - 2^7 - 2^4 + 2^2 + 1"
"znprimroot": 11
- "n": 140496970186753
"n_hex": "0x7fc800000001"
"n_bit": "2^47 - 2^38 + 2^35 + 1"
"n_fac": "2^35 * 3 * 29 * 47 + 1"
"nd": 140496970186751
"nd_hex": "0x7fc7ffffffff"
"nd_bit": "2^47 - 2^38 + 2^35 - 1"
"r2": 77515158012751
"r2_hex": "0x467fe775434f"
"r2_bit": "2^46 + 2^43 - 2^41 + 2^39 - 2^29 + 2^27 - 2^23 - 2^20 + 2^18 + 2^16 + 2^14 + 2^10 - 2^8 + 2^6 + 2^4 - 1"
"znprimroot": 5
- "n": 140084653326337
"n_hex": "0x7f6800000001"
"n_bit": "2^47 - 2^39 - 2^37 + 2^35 + 1"
"n_fac": "2^35 * 3^3 * 151 + 1"
"nd": 140084653326335
"nd_hex": "0x7f67ffffffff"
"nd_bit": "2^47 - 2^39 - 2^37 + 2^35 - 1"
"r2": 22055909632073
"r2_hex": "0x140f4aa8a849"
"r2_bit": "2^44 + 2^42 + 2^36 - 2^32 + 2^30 + 2^27 + 2^25 + 2^23 + 2^21 + 2^19 + 2^15 + 2^13 + 2^11 + 2^6 + 2^3 + 1"
"znprimroot": 5
- "n": 119056493445121
"n_hex": "0x6c4800000001"
"n_bit": "2^47 - 2^44 - 2^42 + 2^38 + 2^35 + 1"
"n_fac": "2^35 * 3^2 * 5 * 7 * 11 + 1"
"nd": 119056493445119
"nd_hex": "0x6c47ffffffff"
"nd_bit": "2^47 - 2^44 - 2^42 + 2^38 + 2^35 - 1"
"r2": 12235180555358
"r2_hex": "0xb20b9973c5e"
"r2_bit": "2^44 - 2^42 - 2^40 + 2^37 + 2^32 - 2^30 - 2^27 + 2^25 - 2^23 + 2^21 - 2^19 - 2^16 + 2^14 - 2^10 + 2^7 - 2^5 - 2"
"znprimroot": 13
- "n": 139156940390401
"n_hex": "0x7e9000000001"
"n_bit": "2^47 - 2^41 + 2^39 + 2^36 + 1"
"n_fac": "2^36 * 3^4 * 5^2 + 1"
"nd": 139156940390399
"nd_hex": "0x7e8fffffffff"
"nd_bit": "2^47 - 2^41 + 2^39 + 2^36 - 1"
"r2": 70282072798118
"r2_hex": "0x3febd1fbb3a6"
"r2_bit": "2^46 - 2^36 - 2^34 - 2^30 + 2^28 + 2^25 - 2^18 - 2^14 - 2^12 + 2^10 - 2^7 + 2^5 + 2^3 - 2"
"znprimroot": 13
- "n": 50508815400961
"n_hex": "0x2df000000001"
"n_bit": "2^46 - 2^44 - 2^41 - 2^36 + 1"
"n_fac": "2^36 * 3 * 5 * 7^2 + 1"
"nd": 50508815400959
"nd_hex": "0x2defffffffff"
"nd_bit": "2^46 - 2^44 - 2^41 - 2^36 - 1"
"r2": 10133645177570
"r2_hex": "0x9376c5232e2"
"r2_bit": "2^43 + 2^40 + 2^38 - 2^35 - 2^31 - 2^28 - 2^26 + 2^22 + 2^20 + 2^17 + 2^14 - 2^12 + 2^10 - 2^8 - 2^5 + 2"
"znprimroot": 17
- "n": 140050293587969
"n_hex": "0x7f6000000001"
"n_bit": "2^47 - 2^39 - 2^37 + 1"
"n_fac": "2^37 * 1019 + 1"
"nd": 140050293587967
"nd_hex": "0x7f5fffffffff"
"nd_bit": "2^47 - 2^39 - 2^37 - 1"
"r2": 74488540874233
"r2_hex": "0x43bf3704c5f9"
"r2_bit": "2^46 + 2^42 - 2^38 - 2^32 + 2^30 - 2^27 - 2^24 + 2^18 + 2^16 - 2^14 + 2^11 - 2^9 - 2^3 + 1"
"znprimroot": 3
- "n": 134002979635201
"n_hex": "0x79e000000001"
"n_bit": "2^47 - 2^43 + 2^41 - 2^37 + 1"
"n_fac": "2^37 * 3 * 5^2 * 13 + 1"
"nd": 134002979635199
"nd_hex": "0x79dfffffffff"
"nd_bit": "2^47 - 2^43 + 2^41 - 2^37 - 1"
"r2": 2960082650215
"r2_hex": "0x2b132acc467"
"r2_bit": "2^42 - 2^40 - 2^38 - 2^36 + 2^32 + 2^30 - 2^28 + 2^26 - 2^24 - 2^22 - 2^20 - 2^18 + 2^16 - 2^14 + 2^10 + 2^7 - 2^5 + 2^3 - 1"
"znprimroot": 11
- "n": 132353712193537
"n_hex": "0x786000000001"
"n_bit": "2^47 - 2^43 + 2^39 - 2^37 + 1"
"n_fac": "2^37 * 3^2 * 107 + 1"
"nd": 132353712193535
"nd_hex": "0x785fffffffff"
"nd_bit": "2^47 - 2^43 + 2^39 - 2^37 - 1"
"r2": 24620268936188
"r2_hex": "0x16645a625bfc"
"r2_bit": "2^45 - 2^43 - 2^41 + 2^39 - 2^37 + 2^34 + 2^31 - 2^29 - 2^27 + 2^25 + 2^23 - 2^21 + 2^17 + 2^15 - 2^13 - 2^10 - 2^2"
"znprimroot": 5
- "n": 138813343006721
"n_hex": "0x7e4000000001"
"n_bit": "2^47 - 2^41 + 2^38 + 1"
"n_fac": "2^38 * 5 * 101 + 1"
"nd": 138813343006719
"nd_hex": "0x7e3fffffffff"
"nd_bit": "2^47 - 2^41 + 2^38 - 1"
"r2": 117346194943426
"r2_hex": "0x6ab9ca43edc2"
"r2_bit": "2^47 - 2^44 - 2^42 - 2^40 - 2^38 - 2^35 + 2^33 - 2^30 + 2^27 + 2^25 + 2^22 + 2^18 - 2^12 - 2^9 - 2^6 + 2"
"znprimroot": 3
- "n": 28862180229121
"n_hex": "0x1a4000000001"
"n_bit": "2^45 - 2^43 + 2^41 + 2^38 + 1"
"n_fac": "2^38 * 3 * 5 * 7 + 1"
"nd": 28862180229119
"nd_hex": "0x1a3fffffffff"
"nd_bit": "2^45 - 2^43 + 2^41 + 2^38 - 1"
"r2": 19073908857110
"r2_hex": "0x1158fd8fd916"
"r2_bit": "2^44 + 2^41 - 2^39 - 2^37 - 2^35 + 2^32 - 2^25 - 2^23 + 2^20 - 2^13 - 2^11 + 2^8 + 2^5 - 2^3 - 2"
"znprimroot": 19
- "n": 103903848824833
"n_hex": "0x5e8000000001"
"n_bit": "2^47 - 2^45 - 2^41 + 2^39 + 1"
"n_fac": "2^39 * 3^3 * 7 + 1"
"nd": 103903848824831
"nd_hex": "0x5e7fffffffff"
"nd_bit": "2^47 - 2^45 - 2^41 + 2^39 - 1"
"r2": 18278653621548
"r2_hex": "0x109fd4a7f52c"
"r2_bit": "2^44 + 2^39 + 2^37 - 2^30 + 2^28 + 2^26 + 2^23 + 2^21 + 2^19 - 2^12 + 2^10 + 2^8 + 2^6 - 2^4 - 2^2"
"znprimroot": 10
- "n": 90709709291521
"n_hex": "0x528000000001"
"n_bit": "2^46 + 2^44 + 2^41 + 2^39 + 1"
"n_fac": "2^39 * 3 * 5 * 11 + 1"
"nd": 90709709291519
"nd_hex": "0x527fffffffff"
"nd_bit": "2^46 + 2^44 + 2^41 + 2^39 - 1"
"r2": 16939142774588
"r2_hex": "0xf67f3967f3c"
"r2_bit": "2^44 - 2^39 - 2^37 + 2^35 - 2^28 + 2^26 - 2^23 + 2^21 - 2^19 - 2^17 + 2^15 - 2^8 + 2^6 - 2^2"
"znprimroot": 7
- "n": 74217034874881
"n_hex": "0x438000000001"
"n_bit": "2^46 + 2^42 - 2^39 + 1"
"n_fac": "2^39 * 3^3 * 5 + 1"
"nd": 74217034874879
"nd_hex": "0x437fffffffff"
"nd_bit": "2^46 + 2^42 - 2^39 - 1"
"r2": 1400859259096
"r2_hex": "0x14629b7f0d8"
"r2_bit": "2^40 + 2^38 + 2^35 - 2^33 + 2^29 + 2^27 + 2^25 - 2^22 - 2^19 - 2^12 + 2^8 - 2^5 - 2^3"
"znprimroot": 11
- "n": 113249697660929
"n_hex": "0x670000000001"
"n_bit": "2^47 - 2^45 + 2^43 - 2^40 + 1"
"n_fac": "2^40 * 103 + 1"
"nd": 113249697660927
"nd_hex": "0x66ffffffffff"
"nd_bit": "2^47 - 2^45 + 2^43 - 2^40 - 1"
"r2": 60398415436474
"r2_hex": "0x36ee9a18daba"
"r2_bit": "2^46 - 2^43 - 2^40 - 2^36 - 2^33 + 2^31 + 2^29 - 2^27 + 2^25 + 2^21 - 2^19 + 2^16 - 2^13 - 2^10 - 2^8 - 2^6 - 2^3 + 2"
"znprimroot": 3
- "n": 96757023244289
"n_hex": "0x580000000001"
"n_bit": "2^47 - 2^45 - 2^43 + 1"
"n_fac": "2^43 * 11 + 1"
"nd": 96757023244287
"nd_hex": "0x57ffffffffff"
"nd_bit": "2^47 - 2^45 - 2^43 - 1"
"r2": 6397158561608
"r2_hex": "0x5d1745d1748"
"r2_bit": "2^43 - 2^41 - 2^38 + 2^36 + 2^33 - 2^31 - 2^28 + 2^26 + 2^23 - 2^21 - 2^18 + 2^16 + 2^13 - 2^11 - 2^8 + 2^6 + 2^3"
"znprimroot": 3
- "n": 79164837199873
"n_hex": "0x480000000001"
"n_bit": "2^46 + 2^43 + 1"
"n_fac": "2^43 * 3^2 + 1"
"nd": 79164837199871
"nd_hex": "0x47ffffffffff"
"nd_bit": "2^46 + 2^43 - 1"
"r2": 57663276478923
"r2_hex": "0x3471c71c71cb"
"r2_bit": "2^46 - 2^44 + 2^42 + 2^39 - 2^36 + 2^33 - 2^30 + 2^27 - 2^24 + 2^21 - 2^18 + 2^15 - 2^12 + 2^9 - 2^6 + 2^4 - 2^2 - 1"
"znprimroot": 5
- "r": 48
"primes":
- "n": 281474976710563
"n_hex": "0xffffffffffa3"
"n_bit": "2^48 - 2^7 + 2^5 + 2^2 - 1"
"n_fac": "2 * 3 * 359 * 130675476653 + 1"
"nd": 269368526099445
"nd_hex": "0xf4fd3f4fd3f5"
"nd_bit": "2^48 - 2^44 + 2^42 + 2^40 - 2^34 + 2^32 + 2^30 - 2^24 + 2^22 + 2^20 - 2^14 + 2^12 + 2^10 - 2^4 + 2^2 + 1"
"r2": 8649
"r2_hex": "0x21c9"
"r2_bit": "2^13 + 2^9 - 2^6 + 2^3 + 1"
"znprimroot": 2
- "n": 281474976710491
"n_hex": "0xffffffffff5b"
"n_bit": "2^48 - 2^7 - 2^5 - 2^2 - 1"
"n_fac": "2 * 3 * 5 * 9382499223683c + 1"
"nd": 49471359543085
"nd_hex": "0x2cfe72cfe72d"
"nd_bit": "2^46 - 2^44 - 2^42 + 2^40 - 2^33 + 2^31 - 2^28 + 2^26 - 2^24 - 2^22 + 2^20 - 2^13 + 2^11 - 2^8 + 2^6 - 2^4 - 2^2 + 1"
"r2": 27225
"r2_hex": "0x6a59"
"r2_bit": "2^15 - 2^13 + 2^11 + 2^9 + 2^7 - 2^5 - 2^3 + 1"
"znprimroot": 2
- "n": 281474976710467
"n_hex": "0xffffffffff43"
"n_bit": "2^48 - 2^8 + 2^6 + 2^2 - 1"
"n_fac": "2 * 3^2 * 7 * 11^3 * 197 * 727 * 11719 + 1"
"nd": 186160698882709
"nd_hex": "0xa94fea53fa95"
"nd_bit": "2^47 + 2^45 + 2^43 + 2^40 + 2^38 + 2^36 - 2^29 + 2^27 + 2^25 + 2^22 + 2^20 + 2^18 - 2^11 + 2^9 + 2^7 + 2^4 + 2^2 + 1"
"r2": 35721
"r2_hex": "0x8b89"
"r2_bit": "2^15 + 2^12 - 2^10 - 2^7 + 2^3 + 1"
"znprimroot": 2
- "n": 281474976710131
"n_hex": "0xfffffffffdf3"
"n_bit": "2^48 - 2^9 - 2^4 + 2^2 - 1"
"n_fac": "2 * 3 * 5 * 7 * 1340357031953 + 1"
"nd": 55758852529349
"nd_hex": "0x32b65e991cc5"
"nd_bit": "2^46 - 2^44 + 2^42 - 2^40 - 2^38 - 2^35 - 2^33 + 2^31 - 2^29 - 2^25 + 2^23 + 2^21 - 2^19 + 2^16 + 2^13 - 2^10 + 2^8 - 2^6 + 2^2 + 1"
"r2": 275625
"r2_hex": "0x434a9"
"r2_bit": "2^18 + 2^14 - 2^12 + 2^10 + 2^7 + 2^5 + 2^3 + 1"
"znprimroot": 3
- "n": 281474976709891
"n_hex": "0xfffffffffd03"
"n_bit": "2^48 - 2^10 + 2^8 + 2^2 - 1"
"n_fac": "2 * 3^2 * 5 * 17 * 37 * 61 * 271 * 300779 + 1"
"nd": 281107035564629
"nd_hex": "0xffaa54ffaa55"
"nd_bit": "2^48 - 2^39 + 2^37 + 2^35 + 2^33 + 2^30 + 2^28 + 2^26 + 2^24 - 2^15 + 2^13 + 2^11 + 2^9 + 2^6 + 2^4 + 2^2 + 1"
"r2": 585225
"r2_hex": "0x8ee09"
"r2_bit": "2^19 + 2^16 - 2^12 - 2^9 + 2^3 + 1"
"znprimroot": 2
- "n": 281474976709711
"n_hex": "0xfffffffffc4f"
"n_bit": "2^48 - 2^10 + 2^6 + 2^4 - 1"
"n_fac": "2 * 3^2 * 5 * 7^2 * 63826525331 + 1"
"nd": 93527135118673
"nd_hex": "0x550ffbaa6551"
"nd_bit": "2^46 + 2^44 + 2^42 + 2^40 + 2^36 - 2^26 - 2^23 + 2^21 + 2^19 + 2^17 + 2^15 - 2^13 + 2^10 + 2^8 + 2^6 + 2^4 + 1"
"r2": 893025
"r2_hex": "0xda061"
"r2_bit": "2^20 - 2^17 - 2^15 + 2^13 + 2^7 - 2^5 + 1"
"znprimroot": 6
- "n": 281474976710597
"n_hex": "0xffffffffffc5"
"n_bit": "2^48 - 2^6 + 2^2 + 1"
"n_fac": "2^2 * 797 * 2459 * 35905663 + 1"
"nd": 181288968050931
"nd_hex": "0xa4e1a08ad8f3"
"nd_bit": "2^47 + 2^45 + 2^42 + 2^40 - 2^37 + 2^33 - 2^31 + 2^29 + 2^23 + 2^20 - 2^18 - 2^16 - 2^13 - 2^11 + 2^8 - 2^4 + 2^2 - 1"
"r2": 3481
"r2_hex": "0xd99"
"r2_bit": "2^12 - 2^9 - 2^7 + 2^5 - 2^3 + 1"
"znprimroot": 2
- "n": 281474976710509
"n_hex": "0xffffffffff6d"
"n_bit": "2^48 - 2^7 - 2^4 - 2^2 + 1"
"n_fac": "2^2 * 3 * 7 * 3350892579887c + 1"
"nd": 118717337116059
"nd_hex": "0x6bf908b51d9b"
"nd_bit": "2^47 - 2^44 - 2^42 - 2^35 + 2^32 + 2^27 + 2^24 - 2^22 - 2^20 + 2^18 + 2^16 + 2^13 - 2^9 - 2^7 + 2^5 - 2^2 - 1"
"r2": 21609
"r2_hex": "0x5469"
"r2_bit": "2^14 + 2^12 + 2^10 + 2^7 - 2^5 + 2^3 + 1"
"znprimroot": 2
- "n": 281474976710413
"n_hex": "0xffffffffff0d"
"n_bit": "2^48 - 2^8 + 2^4 - 2^2 + 1"
"n_fac": "2^2 * 3^2 * 7818749353067 + 1"
"nd": 19691665037371
"nd_hex": "0x11e8d2b3183b"
"nd_bit": "2^44 + 2^41 - 2^37 + 2^35 + 2^32 - 2^30 + 2^28 + 2^26 - 2^24 - 2^22 - 2^20 + 2^18 - 2^16 + 2^13 - 2^11 + 2^6 - 2^2 - 1"
"r2": 59049
"r2_hex": "0xe6a9"
"r2_bit": "2^16 - 2^13 + 2^11 - 2^9 + 2^7 + 2^5 + 2^3 + 1"
"znprimroot": 5
- "n": 281474976709741
"n_hex": "0xfffffffffc6d"
"n_bit": "2^48 - 2^10 + 2^7 - 2^4 - 2^2 + 1"
"n_fac": "2^2 * 3 * 5 * 11^2 * 2287 * 16952627 + 1"
"nd": 147351381250715
"nd_hex": "0x8603eabc929b"
"nd_bit": "2^47 + 2^43 - 2^41 + 2^34 - 2^28 - 2^26 - 2^24 - 2^22 - 2^18 + 2^15 + 2^12 + 2^9 + 2^7 + 2^5 - 2^2 - 1"
"r2": 837225
"r2_hex": "0xcc669"
"r2_bit": "2^20 - 2^18 + 2^16 - 2^14 + 2^11 - 2^9 + 2^7 - 2^5 + 2^3 + 1"
"znprimroot": 2
- "n": 281474976708901
"n_hex": "0xfffffffff925"
"n_bit": "2^48 - 2^11 + 2^8 + 2^5 + 2^2 + 1"
"n_fac": "2^2 * 3^2 * 5^2 * 13 * 59 * 269 * 431 * 3517 + 1"
"nd": 93664607634771
"nd_hex": "0x552ffdaa8553"
"nd_bit": "2^46 + 2^44 + 2^42 + 2^40 + 2^38 - 2^36 - 2^25 - 2^23 + 2^21 + 2^19 + 2^17 + 2^15 + 2^10 + 2^8 + 2^6 + 2^4 + 2^2 - 1"
"r2": 3080025
"r2_hex": "0x2eff59"
"r2_bit": "2^22 - 2^20 - 2^16 - 2^7 - 2^5 - 2^3 + 1"
"znprimroot": 6
- "n": 281474976710089
"n_hex": "0xfffffffffdc9"
"n_bit": "2^48 - 2^9 - 2^6 + 2^3 + 1"
"n_fac": "2^3 * 3^2 * 7 * 23 * 47 * 4547 * 113621 + 1"
"nd": 249703550768007
"nd_hex": "0xe31aa3715387"
"nd_bit": "2^48 - 2^45 + 2^42 - 2^40 + 2^37 - 2^35 + 2^33 + 2^31 + 2^29 + 2^26 - 2^23 - 2^20 + 2^16 + 2^14 + 2^12 + 2^10 - 2^7 + 2^3 - 1"
"r2": 321489
"r2_hex": "0x4e7d1"
"r2_bit": "2^18 + 2^16 - 2^13 + 2^11 - 2^6 + 2^4 + 1"
"znprimroot": 11
- "n": 281474976708361
"n_hex": "0xfffffffff709"
"n_bit": "2^48 - 2^11 - 2^8 + 2^3 + 1"
"n_fac": "2^3 * 3^2 * 5 * 17 * 45992643253 + 1"
"nd": 187527337425095
"nd_hex": "0xaa8e1c5538c7"
"nd_bit": "2^47 + 2^45 + 2^43 + 2^41 + 2^39 + 2^36 - 2^33 + 2^29 - 2^26 + 2^22 + 2^20 + 2^18 + 2^16 + 2^14 - 2^11 + 2^8 - 2^6 + 2^3 - 1"
"r2": 5267025
"r2_hex": "0x505e51"
"r2_bit": "2^22 + 2^20 + 2^15 - 2^13 - 2^9 + 2^6 + 2^4 + 1"
"znprimroot": 13
- "n": 281474976707401
"n_hex": "0xfffffffff349"
"n_bit": "2^48 - 2^12 + 2^10 - 2^8 + 2^6 + 2^3 + 1"
"n_fac": "2^3 * 3 * 5^2 * 7 * 569 * 117781813 + 1"
"nd": 208749798396167
"nd_hex": "0xbddb59949107"
"nd_bit": "2^48 - 2^46 - 2^41 - 2^37 - 2^34 - 2^31 - 2^29 - 2^27 + 2^25 - 2^23 + 2^20 + 2^18 + 2^15 + 2^12 + 2^8 + 2^3 - 1"
"r2": 10595025
"r2_hex": "0xa1aad1"
"r2_bit": "2^23 + 2^21 + 2^17 - 2^14 - 2^12 - 2^10 - 2^8 - 2^6 + 2^4 + 1"
"znprimroot": 82
- "n": 281474976704041
"n_hex": "0xffffffffe629"
"n_bit": "2^48 - 2^13 + 2^11 - 2^9 + 2^5 + 2^3 + 1"
"n_fac": "2^3 * 3^2 * 5 * 7 * 111696419327 + 1"
"nd": 133993152178663
"nd_hex": "0x79ddb63ce9e7"
"nd_bit": "2^47 - 2^43 + 2^41 - 2^37 - 2^33 - 2^30 - 2^27 - 2^25 + 2^22 - 2^18 + 2^16 - 2^13 + 2^11 + 2^9 - 2^5 + 2^3 - 1"
"r2": 43758225
"r2_hex": "0x29bb291"
"r2_bit": "2^25 + 2^23 + 2^21 - 2^18 - 2^14 - 2^12 + 2^9 + 2^7 + 2^4 + 1"
"znprimroot": 22
- "n": 281474976710129
"n_hex": "0xfffffffffdf1"
"n_bit": "2^48 - 2^9 - 2^4 + 1"
"n_fac": "2^4 * 17 * 103 * 10046936633c + 1"
"nd": 262781192678639
"nd_hex": "0xeeff83a4acef"
"nd_bit": "2^48 - 2^44 - 2^40 - 2^31 + 2^26 - 2^23 + 2^21 + 2^18 + 2^16 - 2^14 - 2^12 - 2^10 + 2^8 - 2^4 - 1"
"r2": 277729
"r2_hex": "0x43ce1"
"r2_bit": "2^18 + 2^14 - 2^10 + 2^8 - 2^5 + 1"
"znprimroot": 3
- "n": 281474976705841
"n_hex": "0xffffffffed31"
"n_bit": "2^48 - 2^12 - 2^10 + 2^8 + 2^6 - 2^4 + 1"
"n_fac": "2^4 * 3^2 * 5 * 390937467647 + 1"
"nd": 39400650945583
"nd_hex": "0x23d5adcdb42f"
"nd_bit": "2^45 + 2^42 - 2^37 - 2^35 - 2^33 - 2^30 - 2^28 - 2^25 - 2^22 + 2^20 - 2^17 - 2^14 - 2^12 + 2^10 + 2^6 - 2^4 - 1"
"r2": 23184225
"r2_hex": "0x161c361"
"r2_bit": "2^25 - 2^23 - 2^21 + 2^17 - 2^14 + 2^10 - 2^7 - 2^5 + 1"
"znprimroot": 17
- "n": 281474976709153
"n_hex": "0xfffffffffa21"
"n_bit": "2^48 - 2^11 + 2^9 + 2^5 + 1"
"n_fac": "2^5 * 3^3 * 1123 * 290099041 + 1"
"nd": 52062570542623
"nd_hex": "0x2f59c305f61f"
"nd_bit": "2^46 - 2^44 - 2^39 - 2^37 - 2^35 + 2^33 - 2^30 + 2^26 - 2^24 + 2^19 - 2^17 - 2^11 - 2^9 + 2^5 - 1"
"r2": 2259009
"r2_hex": "0x227841"
"r2_bit": "2^21 + 2^17 + 2^15 - 2^11 + 2^6 + 1"
"znprimroot": 5
- "n": 281474976699361
"n_hex": "0xffffffffd3e1"
"n_bit": "2^48 - 2^14 + 2^12 + 2^10 - 2^5 + 1"
"n_fac": "2^5 * 3^2 * 5 * 311 * 628516829 + 1"
"nd": 206315301654495
"nd_hex": "0xbba486444fdf"
"nd_bit": "2^48 - 2^46 - 2^42 - 2^39 + 2^37 + 2^34 + 2^31 + 2^27 - 2^25 + 2^22 + 2^18 + 2^14 + 2^12 - 2^5 - 1"
"r2": 127577025
"r2_hex": "0x79aabc1"
"r2_bit": "2^27 - 2^23 + 2^21 - 2^18 - 2^16 - 2^14 - 2^12 - 2^10 - 2^6 + 1"
"znprimroot": 17
- "n": 281474976707137
"n_hex": "0xfffffffff241"
"n_bit": "2^48 - 2^12 + 2^9 + 2^6 + 1"
"n_fac": "2^6 * 3^2 * 17 * 373 * 733 * 105137 + 1"
"nd": 159014564848191
"nd_hex": "0x909f76a6e23f"
"nd_bit": "2^47 + 2^44 + 2^39 + 2^37 - 2^31 - 2^27 - 2^25 + 2^23 + 2^21 + 2^19 - 2^16 - 2^13 + 2^9 + 2^6 - 1"
"r2": 12383361
"r2_hex": "0xbcf481"
"r2_bit": "2^24 - 2^22 - 2^18 + 2^16 - 2^12 + 2^10 + 2^7 + 1"
"znprimroot": 5
- "n": 281474976699841
"n_hex": "0xffffffffd5c1"
"n_bit": "2^48 - 2^13 - 2^11 - 2^9 - 2^6 + 1"
"n_fac": "2^6 * 3 * 5 * 7 * 11 * 3807832477c + 1"
"nd": 131146778330559
"nd_hex": "0x7746fd22c5bf"
"nd_bit": "2^47 - 2^43 - 2^40 + 2^38 + 2^35 - 2^32 - 2^26 + 2^24 + 2^21 + 2^18 - 2^16 - 2^14 + 2^11 - 2^9 - 2^6 - 1"
"r2": 116964225
"r2_hex": "0x6f8bb81"
"r2_bit": "2^27 - 2^24 - 2^19 + 2^16 - 2^14 - 2^10 - 2^7 + 1"
"znprimroot": 13
- "n": 281474976657601
"n_hex": "0xffffffff30c1"
"n_bit": "2^48 - 2^16 + 2^14 - 2^12 + 2^8 - 2^6 + 1"
"n_fac": "2^6 * 3^2 * 5^2 * 11 * 487 * 3648847 + 1"
"nd": 5246984298687
"nd_hex": "0x4c5a8a2a0bf"
"nd_bit": "2^42 + 2^40 - 2^38 + 2^35 - 2^33 - 2^31 + 2^29 + 2^27 + 2^23 + 2^21 + 2^17 + 2^15 + 2^13 + 2^8 - 2^6 - 1"
"r2": 2814833025
"r2_hex": "0xa7c6f181"
"r2_bit": "2^31 + 2^29 + 2^27 - 2^22 + 2^19 - 2^16 - 2^12 + 2^9 - 2^7 + 1"
"znprimroot": 17
- "n": 281474976646081
"n_hex": "0xffffffff03c1"
"n_bit": "2^48 - 2^16 + 2^10 - 2^6 + 1"
"n_fac": "2^6 * 3^4 * 5 * 7 * 1551339157 + 1"
"nd": 263620985156543
"nd_hex": "0xefc30b2cf3bf"
"nd_bit": "2^48 - 2^44 - 2^38 + 2^34 - 2^32 + 2^28 - 2^26 - 2^24 + 2^22 - 2^20 - 2^18 + 2^16 - 2^12 + 2^10 - 2^6 - 1"
"r2": 4169930625
"r2_hex": "0xf88c1781"
"r2_bit": "2^32 - 2^27 + 2^23 + 2^20 - 2^18 + 2^13 - 2^11 - 2^7 + 1"
"znprimroot": 67
- "n": 281474976709249
"n_hex": "0xfffffffffa81"
"n_bit": "2^48 - 2^11 + 2^9 + 2^7 + 1"
"n_fac": "2^7 * 3 * 7 * 104715393121 + 1"
"nd": 193051423259263
"nd_hex": "0xaf944981ba7f"
"nd_bit": "2^48 - 2^46 - 2^44 - 2^39 + 2^36 + 2^34 + 2^30 + 2^27 + 2^25 - 2^23 + 2^17 - 2^14 - 2^11 + 2^9 + 2^7 - 1"
"r2": 1979649
"r2_hex": "0x1e3501"
"r2_bit": "2^21 - 2^17 + 2^14 - 2^12 + 2^10 + 2^8 + 1"
"znprimroot": 13
- "n": 281474976597121
"n_hex": "0xfffffffe4481"
"n_bit": "2^48 - 2^17 + 2^14 + 2^10 + 2^7 + 1"
"n_fac": "2^7 * 3^2 * 5 * 19 * 53 * 48527491 + 1"
"nd": 165446347785343
"nd_hex": "0x9678faca047f"
"nd_bit": "2^47 + 2^45 - 2^43 - 2^41 + 2^39 - 2^35 + 2^32 - 2^26 - 2^24 - 2^22 + 2^19 + 2^17 + 2^10 + 2^7 - 1"
"r2": 12890196225
"r2_hex": "0x30050c901"
"r2_bit": "2^34 - 2^32 + 2^22 + 2^20 + 2^16 - 2^14 + 2^11 + 2^8 + 1"
"znprimroot": 11
- "n": 281474976708353
"n_hex": "0xfffffffff701"
"n_bit": "2^48 - 2^11 - 2^8 + 1"
"n_fac": "2^8 * 7 * 163 * 919 * 1048573 + 1"
"nd": 67465995286271
"nd_hex": "0x3d5c26aef6ff"
"nd_bit": "2^46 - 2^41 - 2^39 - 2^37 - 2^34 + 2^29 + 2^27 - 2^24 - 2^22 - 2^20 - 2^16 - 2^11 - 2^8 - 1"
"r2": 5303809
"r2_hex": "0x50ee01"
"r2_bit": "2^22 + 2^20 + 2^16 - 2^12 - 2^9 + 1"
"znprimroot": 3
- "n": 281474976696577
"n_hex": "0xffffffffc901"
"n_bit": "2^48 - 2^14 + 2^11 + 2^8 + 1"
"n_fac": "2^8 * 3 * 13 * 28192605839c + 1"
"nd": 217518839875839
"nd_hex": "0xc5d50d2ec8ff"
"nd_bit": "2^48 - 2^46 + 2^43 - 2^41 - 2^38 + 2^36 + 2^34 + 2^32 + 2^28 - 2^26 + 2^24 + 2^22 - 2^20 - 2^16 - 2^14 + 2^11 + 2^8 - 1"
"r2": 198218241
"r2_hex": "0xbd09201"
"r2_bit": "2^28 - 2^26 - 2^22 + 2^20 + 2^15 + 2^12 + 2^9 + 1"
"znprimroot": 7
- "n": 281474976633601
"n_hex": "0xfffffffed301"
"n_bit": "2^48 - 2^16 - 2^14 + 2^12 + 2^10 - 2^8 + 1"
"n_fac": "2^8 * 3 * 5^2 * 19 * 1231 * 626797 + 1"
"nd": 277964530242303
"nd_hex": "0xfccea915d2ff"
"nd_bit": "2^48 - 2^42 + 2^40 - 2^38 + 2^36 - 2^33 + 2^31 + 2^29 + 2^27 + 2^24 + 2^21 - 2^19 - 2^17 - 2^14 + 2^12 + 2^10 - 2^8 - 1"
"r2": 5937473025
"r2_hex": "0x161e6a601"
"r2_bit": "2^33 - 2^31 - 2^29 + 2^25 - 2^21 + 2^19 - 2^17 + 2^15 + 2^13 + 2^11 - 2^9 + 1"
"znprimroot": 17
- "n": 281474976142081
"n_hex": "0xfffffff75301"
"n_bit": "2^48 - 2^19 - 2^16 + 2^14 + 2^12 + 2^10 - 2^8 + 1"
"n_fac": "2^8 * 3^2 * 5 * 7 * 23 * 151761439 + 1"
"nd": 248258874987263
"nd_hex": "0xe1ca460e52ff"
"nd_bit": "2^48 - 2^45 + 2^41 - 2^38 + 2^35 + 2^33 + 2^30 + 2^27 - 2^25 + 2^20 - 2^17 + 2^14 + 2^12 + 2^10 - 2^8 - 1"
"r2": 323277530625
"r2_hex": "0x4b44d7a601"
"r2_bit": "2^38 + 2^36 - 2^34 - 2^32 + 2^30 + 2^26 + 2^24 - 2^21 - 2^19 - 2^15 + 2^13 + 2^11 - 2^9 + 1"
"znprimroot": 11
- "n": 281474975255041
"n_hex": "0xffffffe9ca01"
"n_bit": "2^48 - 2^21 + 2^19 + 2^17 - 2^14 + 2^11 + 2^9 + 1"
"n_fac": "2^9 * 3^3 * 5 * 7 * 61 * 487 * 19583 + 1"
"nd": 110859892673023
"nd_hex": "0x64d39485c9ff"
"nd_bit": "2^47 - 2^45 + 2^42 + 2^40 - 2^38 + 2^36 + 2^34 - 2^31 + 2^28 + 2^26 + 2^23 + 2^19 - 2^17 - 2^14 + 2^11 + 2^9 - 1"
"r2": 2118815028225
"r2_hex": "0x1ed53379401"
"r2_bit": "2^41 - 2^36 - 2^34 + 2^32 + 2^30 + 2^28 + 2^26 - 2^24 + 2^22 - 2^19 - 2^15 + 2^12 + 2^10 + 1"
"znprimroot": 17
- "n": 281474976678913
"n_hex": "0xffffffff8401"
"n_bit": "2^48 - 2^15 + 2^10 + 1"
"n_fac": "2^10 * 3^3 * 41 * 83 * 2991673 + 1"
"nd": 107649126335487
"nd_hex": "0x61e803ef83ff"
"nd_bit": "2^47 - 2^45 + 2^41 - 2^37 + 2^35 + 2^26 - 2^20 - 2^15 + 2^10 - 1"
"r2": 1007618049
"r2_hex": "0x3c0f0801"
"r2_bit": "2^30 - 2^26 + 2^20 - 2^16 + 2^11 + 1"
"znprimroot": 7
- "n": 281474976568321
"n_hex": "0xfffffffdd401"
"n_bit": "2^48 - 2^17 - 2^14 + 2^12 + 2^10 + 1"
"n_fac": "2^10 * 3^4 * 5 * 678710881 + 1"
"nd": 158666970747903
"nd_hex": "0x904e886dd3ff"
"nd_bit": "2^47 + 2^44 + 2^38 + 2^36 - 2^33 + 2^31 + 2^27 + 2^23 - 2^20 - 2^17 - 2^14 + 2^12 + 2^10 - 1"
"r2": 20259252225
"r2_hex": "0x4b78ba801"
"r2_bit": "2^34 + 2^32 - 2^30 - 2^27 - 2^23 + 2^20 - 2^18 - 2^15 + 2^13 + 2^11 + 1"
"znprimroot": 17
- "n": 281474975093761
"n_hex": "0xffffffe75401"
"n_bit": "2^48 - 2^21 + 2^19 - 2^16 + 2^14 + 2^12 + 2^10 + 1"
"n_fac": "2^10 * 3^2 * 5 * 7 * 872628271 + 1"
"nd": 139064805643263
"nd_hex": "0x7e7a8c5753ff"
"nd_bit": "2^47 - 2^41 + 2^39 - 2^35 + 2^33 + 2^31 + 2^28 - 2^26 + 2^23 - 2^21 - 2^19 - 2^16 + 2^14 + 2^12 + 2^10 - 1"
"r2": 2614349441025
"r2_hex": "0x260b35ea801"
"r2_bit": "2^41 + 2^39 - 2^37 + 2^32 - 2^30 - 2^28 + 2^26 - 2^23 - 2^21 - 2^17 + 2^15 + 2^13 + 2^11 + 1"
"znprimroot": 23
- "n": 281474976577537
"n_hex": "0xfffffffdf801"
"n_bit": "2^48 - 2^17 - 2^11 + 1"
"n_fac": "2^11 * 3^2 * 7 * 2181570689c + 1"
"nd": 156654095955967
"nd_hex": "0x8e79dfbdf7ff"
"nd_bit": "2^47 + 2^44 - 2^41 + 2^39 - 2^35 + 2^33 - 2^29 - 2^22 - 2^17 - 2^11 - 1"
"r2": 17720668161
"r2_hex": "0x4203bf001"
"r2_bit": "2^34 + 2^29 + 2^22 - 2^18 - 2^12 + 1"
"znprimroot": 13
- "n": 281474976491521
"n_hex": "0xfffffffca801"
"n_bit": "2^48 - 2^18 + 2^15 + 2^13 + 2^11 + 1"
"n_fac": "2^11 * 3 * 5 * 7 * 1308942413c + 1"
"nd": 155369665767423
"nd_hex": "0x8d4ed1bca7ff"
"nd_bit": "2^47 + 2^44 - 2^42 + 2^40 + 2^38 + 2^36 - 2^32 - 2^30 + 2^28 + 2^25 - 2^22 - 2^18 + 2^15 + 2^13 + 2^11 - 1"
"r2": 48020148225
"r2_hex": "0xb2e395001"
"r2_bit": "2^36 - 2^34 - 2^32 + 2^30 - 2^28 - 2^25 + 2^22 - 2^19 + 2^16 + 2^14 + 2^12 + 1"
"znprimroot": 13
- "n": 281474976245761
"n_hex": "0xfffffff8e801"
"n_bit": "2^48 - 2^19 + 2^16 - 2^13 + 2^11 + 1"
"n_fac": "2^11 * 3^2 * 5 * 11 * 1229 * 225919 + 1"
"nd": 273055460419583
"nd_hex": "0xf857adb8e7ff"
"nd_bit": "2^48 - 2^43 + 2^39 - 2^37 - 2^35 - 2^30 - 2^28 - 2^25 - 2^22 - 2^19 + 2^16 - 2^13 + 2^11 - 1"
"r2": 216127361025
"r2_hex": "0x325231d001"
"r2_bit": "2^38 - 2^36 + 2^33 + 2^30 + 2^28 + 2^25 + 2^22 - 2^20 + 2^17 - 2^14 + 2^12 + 1"
"znprimroot": 17
- "n": 281474975232001
"n_hex": "0xffffffe97001"
"n_bit": "2^48 - 2^21 + 2^19 + 2^17 - 2^15 - 2^12 + 1"
"n_fac": "2^12 * 3^2 * 5^3 * 11 * 233 * 23833 + 1"
"nd": 51071169425407
"nd_hex": "0x2e72eee96fff"
"nd_bit": "2^46 - 2^44 - 2^41 + 2^39 - 2^36 + 2^34 - 2^32 - 2^28 - 2^24 - 2^21 + 2^19 + 2^17 - 2^15 - 2^12 - 1"
"r2": 2186420609025
"r2_hex": "0x1fd10d2e001"
"r2_bit": "2^41 - 2^34 + 2^32 + 2^28 + 2^24 - 2^22 + 2^20 + 2^18 - 2^16 - 2^13 + 1"
"znprimroot": 7
- "n": 281474971545601
"n_hex": "0xffffffb13001"
"n_bit": "2^48 - 2^22 - 2^20 + 2^16 + 2^14 - 2^12 + 1"
"n_fac": "2^12 * 3^2 * 5^2 * 7^3 * 890437 + 1"
"nd": 40048803262463
"nd_hex": "0x246c96b12fff"
"nd_bit": "2^45 + 2^42 + 2^39 - 2^36 - 2^34 + 2^31 + 2^29 - 2^27 - 2^24 - 2^22 - 2^20 + 2^16 + 2^14 - 2^12 - 1"
"r2": 26677793153025
"r2_hex": "0x184368626001"
"r2_bit": "2^45 - 2^43 + 2^38 + 2^34 - 2^31 - 2^29 + 2^27 + 2^23 - 2^21 + 2^17 + 2^15 - 2^13 + 1"
"znprimroot": 17
- "n": 281474976079873
"n_hex": "0xfffffff66001"
"n_bit": "2^48 - 2^19 - 2^17 + 2^15 - 2^13 + 1"
"n_fac": "2^13 * 3^2 * 1163 * 3282673 + 1"
"nd": 93610355089407
"nd_hex": "0x55235bf65fff"
"nd_bit": "2^46 + 2^44 + 2^42 + 2^40 + 2^37 + 2^34 - 2^31 - 2^29 - 2^26 - 2^19 - 2^17 + 2^15 - 2^13 - 1"
"r2": 397887193089
"r2_hex": "0x5ca3ecc001"
"r2_bit": "2^39 - 2^37 - 2^34 + 2^31 + 2^29 + 2^26 - 2^20 - 2^18 + 2^16 - 2^14 + 1"
"znprimroot": 10
- "n": 281474974310401
"n_hex": "0xffffffdb6001"
"n_bit": "2^48 - 2^21 - 2^18 - 2^15 - 2^13 + 1"
"n_fac": "2^13 * 3^2 * 5^2 * 13 * 613 * 19163 + 1"
"nd": 154217710575615
"nd_hex": "0x8c429bdb5fff"
"nd_bit": "2^47 + 2^44 - 2^42 + 2^38 + 2^33 + 2^31 + 2^29 - 2^26 - 2^21 - 2^18 - 2^15 - 2^13 - 1"
"r2": 5761224065025
"r2_hex": "0x53d63b6c001"
"r2_bit": "2^42 + 2^40 + 2^38 - 2^33 - 2^31 - 2^29 + 2^26 - 2^22 - 2^19 - 2^16 - 2^14 + 1"
"znprimroot": 31
- "n": 281474964234241
"n_hex": "0xffffff41a001"
"n_bit": "2^48 - 2^24 + 2^22 + 2^17 - 2^15 + 2^13 + 1"
"n_fac": "2^13 * 3 * 5 * 7 * 353 * 927013 + 1"
"nd": 207727624298495
"nd_hex": "0xbced5b419fff"
"nd_bit": "2^48 - 2^46 - 2^42 + 2^40 - 2^36 - 2^33 - 2^31 - 2^29 - 2^26 - 2^24 + 2^22 + 2^17 - 2^15 + 2^13 - 1"
"r2": 155660931252225
"r2_hex": "0x8d92a2834001"
"r2_bit": "2^47 + 2^44 - 2^41 - 2^39 + 2^36 + 2^33 + 2^31 + 2^29 + 2^25 + 2^23 + 2^18 - 2^16 + 2^14 + 1"
"znprimroot": 11
- "n": 281474941870081
"n_hex": "0xfffffdec6001"
"n_bit": "2^48 - 2^25 - 2^20 - 2^18 + 2^15 - 2^13 + 1"
"n_fac": "2^13 * 3^3 * 5 * 7 * 36359507 + 1"
"nd": 85207217364991
"nd_hex": "0x4d7ed9ec5fff"
"nd_bit": "2^46 + 2^44 - 2^41 - 2^39 - 2^32 - 2^29 - 2^27 + 2^25 - 2^20 - 2^18 + 2^15 - 2^13 - 1"
"r2": 87965898850301
"r2_hex": "0x500128273ffd"
"r2_bit": "2^46 + 2^44 + 2^32 + 2^29 + 2^27 + 2^21 + 2^19 - 2^16 + 2^14 - 2^2 + 1"
"znprimroot": 19
- "n": 281474976694273
"n_hex": "0xffffffffc001"
"n_bit": "2^48 - 2^14 + 1"
"n_fac": "2^14 * 3 * 5726623061c + 1"
"nd": 277076661747711
"nd_hex": "0xfbffefffbfff"
"nd_bit": "2^48 - 2^42 - 2^28 - 2^14 - 1"
"r2": 268402689
"r2_hex": "0xfff8001"
"r2_bit": "2^28 - 2^15 + 1"
"znprimroot": 5
- "n": 281474963619841
"n_hex": "0xffffff384001"
"n_bit": "2^48 - 2^24 + 2^22 - 2^19 + 2^14 + 1"
"n_fac": "2^14 * 3^2 * 5 * 5227 * 73039 + 1"
"nd": 255241034940415
"nd_hex": "0xe823ef383fff"
"nd_bit": "2^48 - 2^45 + 2^43 + 2^37 + 2^34 - 2^28 - 2^24 + 2^22 - 2^19 + 2^14 - 1"
"r2": 171369437364225
"r2_hex": "0x9bdc0e708001"
"r2_bit": "2^47 + 2^45 - 2^42 - 2^37 - 2^34 + 2^28 - 2^25 + 2^23 - 2^20 + 2^15 + 1"
"znprimroot": 11
- "n": 281474976546817
"n_hex": "0xfffffffd8001"
"n_bit": "2^48 - 2^17 - 2^15 + 1"
"n_fac": "2^15 * 3 * 13 * 7759 * 28387 + 1"
"nd": 105526272557055
"nd_hex": "0x5ff9bffd7fff"
"nd_bit": "2^47 - 2^45 - 2^35 + 2^33 - 2^30 - 2^17 - 2^15 - 1"
"r2": 26843217921
"r2_hex": "0x63ffb0001"
"r2_bit": "2^35 - 2^33 + 2^30 - 2^18 - 2^16 + 1"
"znprimroot": 5
- "n": 281474975563777
"n_hex": "0xffffffee8001"
"n_bit": "2^48 - 2^20 - 2^17 + 2^15 + 1"
"n_fac": "2^15 * 3^2 * 101 * 349 * 27077 + 1"
"nd": 174606525562879
"nd_hex": "0x9ecdbfee7fff"
"nd_bit": "2^47 + 2^45 - 2^40 - 2^38 + 2^36 - 2^33 - 2^30 - 2^20 - 2^17 + 2^15 - 1"
"r2": 1315331440641
"r2_hex": "0x1323fdd0001"
"r2_bit": "2^40 + 2^38 - 2^36 + 2^33 + 2^30 - 2^21 - 2^18 + 2^16 + 1"
"znprimroot": 5
- "n": 281474963374081
"n_hex": "0xffffff348001"
"n_bit": "2^48 - 2^24 + 2^22 - 2^20 + 2^18 + 2^15 + 1"
"n_fac": "2^15 * 3 * 5 * 7 * 149 * 619 * 887 + 1"
"nd": 138795076059135
"nd_hex": "0x7e3bbf347fff"
"nd_bit": "2^47 - 2^41 + 2^38 - 2^34 - 2^30 - 2^24 + 2^22 - 2^20 + 2^18 + 2^15 - 1"
"r2": 177864232730625
"r2_hex": "0xa1c43e690001"
"r2_bit": "2^47 + 2^45 + 2^41 - 2^38 + 2^34 + 2^30 - 2^25 + 2^23 - 2^21 + 2^19 + 2^16 + 1"
"znprimroot": 17
- "n": 281474955804673
"n_hex": "0xfffffec10001"
"n_bit": "2^48 - 2^24 - 2^22 + 2^16 + 1"
"n_fac": "2^16 * 3^3 * 7 * 139 * 163487 + 1"
"nd": 125889765507071
"nd_hex": "0x727efec0ffff"
"nd_bit": "2^47 - 2^44 + 2^41 + 2^39 - 2^32 - 2^24 - 2^22 + 2^16 - 1"
"r2": 155585169391616
"r2_hex": "0x8d80fec10000"
"r2_bit": "2^47 + 2^44 - 2^41 - 2^39 + 2^32 - 2^24 - 2^22 + 2^16"
"znprimroot": 5
- "n": 281474951086081
"n_hex": "0xfffffe790001"
"n_bit": "2^48 - 2^25 + 2^23 - 2^19 + 2^16 + 1"
"n_fac": "2^16 * 3^2 * 5 * 95443709 + 1"
"nd": 187806009327615
"nd_hex": "0xaacefe78ffff"
"nd_bit": "2^48 - 2^46 - 2^44 - 2^42 - 2^40 - 2^38 + 2^36 - 2^32 - 2^25 + 2^23 - 2^19 + 2^16 - 1"
"r2": 93668941758463
"r2_hex": "0x5530ffffffff"
"r2_bit": "2^46 + 2^44 + 2^42 + 2^40 + 2^38 - 2^36 + 2^32 - 1"
"znprimroot": 19
- "n": 281474856714241
"n_hex": "0xfffff8d90001"
"n_bit": "2^48 - 2^27 + 2^24 - 2^21 - 2^19 + 2^16 + 1"
"n_fac": "2^16 * 3^6 * 5 * 7 * 168331 + 1"
"nd": 237558816112639
"nd_hex": "0xd80ef8d8ffff"
"nd_bit": "2^48 - 2^45 - 2^43 + 2^36 - 2^32 - 2^27 + 2^24 - 2^21 - 2^19 + 2^16 - 1"
"r2": 43921920425934
"r2_hex": "0x27f25e76ffce"
"r2_bit": "2^45 + 2^43 - 2^36 + 2^33 + 2^31 - 2^29 - 2^25 + 2^23 - 2^19 - 2^16 - 2^6 + 2^4 - 2"
"znprimroot": 13
- "n": 281474976317441
"n_hex": "0xfffffffa0001"
"n_bit": "2^48 - 2^19 + 2^17 + 1"
"n_fac": "2^17 * 5 * 19 * 22605091 + 1"
"nd": 281320357494783
"nd_hex": "0xffdbfff9ffff"
"nd_bit": "2^48 - 2^37 - 2^34 - 2^19 + 2^17 - 1"
"r2": 154618036225
"r2_hex": "0x23fff40001"
"r2_bit": "2^37 + 2^34 - 2^20 + 2^18 + 1"
"znprimroot": 3
- "n": 281474949316609
"n_hex": "0xfffffe5e0001"
"n_bit": "2^48 - 2^25 + 2^23 - 2^21 - 2^17 + 1"
"n_fac": "2^17 * 3^2 * 47 * 5076793 + 1"
"nd": 93991036911615
"nd_hex": "0x557bfe5dffff"
"nd_bit": "2^47 - 2^45 - 2^43 - 2^41 - 2^39 - 2^34 - 2^25 + 2^23 - 2^21 - 2^17 - 1"
"r2": 187483912404991
"r2_hex": "0xaa83ffffffff"
"r2_bit": "2^47 + 2^45 + 2^43 + 2^41 + 2^39 + 2^34 - 1"
"znprimroot": 14
- "n": 281474891120641
"n_hex": "0xfffffae60001"
"n_bit": "2^48 - 2^26 - 2^24 - 2^21 + 2^19 - 2^17 + 1"
"n_fac": "2^17 * 3 * 5 * 7 * 31 * 43 * 67 * 229 + 1"
"nd": 274173446717439
"nd_hex": "0xf95bfae5ffff"
"nd_bit": "2^48 - 2^43 + 2^41 - 2^39 - 2^37 - 2^34 - 2^26 - 2^24 - 2^21 + 2^19 - 2^17 - 1"
"r2": 7303498563559
"r2_hex": "0x6a47a6fffe7"
"r2_bit": "2^43 - 2^41 + 2^39 + 2^37 + 2^34 + 2^31 - 2^27 + 2^25 + 2^23 - 2^20 - 2^5 + 2^3 - 1"
"znprimroot": 17
- "n": 281474948136961
"n_hex": "0xfffffe4c0001"
"n_bit": "2^48 - 2^25 + 2^22 + 2^20 - 2^18 + 1"
"n_fac": "2^18 * 3^2 * 5 * 23860927 + 1"
"nd": 27968798457855
"nd_hex": "0x196ffe4bffff"
"nd_bit": "2^45 - 2^43 + 2^41 - 2^39 - 2^36 - 2^25 + 2^22 + 2^20 - 2^18 - 1"
"r2": 253506149679103
"r2_hex": "0xe68fffffffff"
"r2_bit": "2^48 - 2^45 + 2^43 - 2^41 + 2^39 + 2^36 - 1"
"znprimroot": 26
- "n": 281474794782721
"n_hex": "0xfffff5280001"
"n_bit": "2^48 - 2^28 + 2^26 + 2^24 + 2^21 + 2^19 + 1"
"n_fac": "2^19 * 3^3 * 5 * 7 * 11 * 51647 + 1"
"nd": 116273172709375
"nd_hex": "0x69bff527ffff"
"nd_bit": "2^47 - 2^45 + 2^43 + 2^41 - 2^38 - 2^28 + 2^26 + 2^24 + 2^21 + 2^19 - 1"
"r2": 165222543785868
"r2_hex": "0x9644df07ff8c"
"r2_bit": "2^47 + 2^45 - 2^43 - 2^41 + 2^38 + 2^34 + 2^32 - 2^29 - 2^24 + 2^19 - 2^7 + 2^4 - 2^2"
"znprimroot": 23
- "n": 281474975662081
"n_hex": "0xfffffff00001"
"n_bit": "2^48 - 2^20 + 1"
"n_fac": "2^20 * 3 * 5 * 29 * 43 * 113 * 127 + 1"
"nd": 280375464034303
"nd_hex": "0xfeffffefffff"
"nd_bit": "2^48 - 2^40 - 2^20 - 1"
"r2": 1099509530625
"r2_hex": "0xffffe00001"
"r2_bit": "2^40 - 2^21 + 1"
"znprimroot": 7
- "n": 281472647823361
"n_hex": "0xffff75300001"
"n_bit": "2^48 - 2^31 - 2^28 + 2^26 + 2^24 + 2^22 - 2^20 + 1"
"n_fac": "2^20 * 3^2 * 5 * 7 * 19 * 44851 + 1"
"nd": 25286438551551
"nd_hex": "0x16ff752fffff"
"nd_bit": "2^45 - 2^43 - 2^40 - 2^31 - 2^28 + 2^26 + 2^24 + 2^22 - 2^20 - 1"
"r2": 19581904073916
"r2_hex": "0x11cf446fb4bc"
"r2_bit": "2^44 + 2^41 - 2^38 + 2^36 - 2^32 + 2^30 + 2^26 + 2^23 - 2^20 - 2^14 - 2^12 + 2^10 + 2^8 - 2^6 - 2^2"
"znprimroot": 26
- "n": 281474945253377
"n_hex": "0xfffffe200001"
"n_bit": "2^48 - 2^25 + 2^21 + 1"
"n_fac": "2^21 * 7^2 * 29^2 * 3257 + 1"
"nd": 136339410386943
"nd_hex": "0x7bfffe1fffff"
"nd_bit": "2^47 - 2^42 - 2^25 + 2^21 - 1"
"r2": 145135566323710
"r2_hex": "0x840001dffffe"
"r2_bit": "2^47 + 2^42 + 2^25 - 2^21 - 2"
"znprimroot": 3
- "n": 281474941059073
"n_hex": "0xfffffde00001"
"n_bit": "2^48 - 2^25 - 2^21 + 1"
"n_fac": "2^21 * 3^2 * 14913079 + 1"
"nd": 136339406192639
"nd_hex": "0x7bfffddfffff"
"nd_bit": "2^47 - 2^42 - 2^25 - 2^21 - 1"
"r2": 145135606169597
"r2_hex": "0x8400043ffffd"
"r2_bit": "2^47 + 2^42 + 2^26 + 2^22 - 2^2 + 1"
"znprimroot": 5
- "n": 281474362245121
"n_hex": "0xffffdb600001"
"n_bit": "2^48 - 2^29 - 2^26 - 2^23 - 2^21 + 1"
"n_fac": "2^21 * 3 * 5 * 11^2 * 73 * 1013 + 1"
"nd": 171523199467519
"nd_hex": "0x9bffdb5fffff"
"nd_bit": "2^47 + 2^45 - 2^42 - 2^29 - 2^26 - 2^23 - 2^21 - 1"
"r2": 110773932128964
"r2_hex": "0x64bf90dffac4"
"r2_bit": "2^47 - 2^45 + 2^42 + 2^40 - 2^38 - 2^31 + 2^28 + 2^24 - 2^21 - 2^10 - 2^8 - 2^6 + 2^2"
"znprimroot": 7
- "n": 281469014507521
"n_hex": "0xfffe9ca00001"
"n_bit": "2^48 - 2^33 + 2^31 + 2^29 - 2^26 + 2^23 + 2^21 + 1"
"n_fac": "2^21 * 3^2 * 5 * 7 * 227 * 1877 + 1"
"nd": 171517851729919
"nd_hex": "0x9bfe9c9fffff"
"nd_bit": "2^47 + 2^45 - 2^42 - 2^33 + 2^31 + 2^29 - 2^26 + 2^23 + 2^21 - 1"
"r2": 18504790971051
"r2_hex": "0x10d47b7e12ab"
"r2_bit": "2^44 + 2^40 - 2^38 + 2^36 + 2^34 + 2^31 - 2^26 - 2^23 - 2^17 + 2^12 + 2^10 - 2^8 - 2^6 - 2^4 - 2^2 - 1"
"znprimroot": 34
- "n": 281474846687233
"n_hex": "0xfffff8400001"
"n_bit": "2^48 - 2^27 + 2^22 + 1"
"n_fac": "2^22 * 3^2 * 11 * 701 * 967 + 1"
"nd": 263882660642815
"nd_hex": "0xeffff83fffff"
"nd_bit": "2^48 - 2^44 - 2^27 + 2^22 - 1"
"r2": 17599727402949
"r2_hex": "0x1001c17fffc5"
"r2_bit": "2^44 + 2^33 - 2^30 + 2^25 - 2^23 - 2^6 + 2^2 + 1"
"znprimroot": 7
- "n": 281474498560001
"n_hex": "0xffffe3800001"
"n_bit": "2^48 - 2^29 + 2^26 - 2^23 + 1"
"n_fac": "2^23 * 5^4 * 37 * 1451 + 1"
"nd": 211105754382335
"nd_hex": "0xbfffe37fffff"
"nd_bit": "2^48 - 2^46 - 2^29 + 2^26 - 2^23 - 1"
"r2": 70756046208213
"r2_hex": "0x405a2cfffcd5"
"r2_bit": "2^46 + 2^39 - 2^37 - 2^35 + 2^33 + 2^30 - 2^28 - 2^26 + 2^24 - 2^10 + 2^8 - 2^6 + 2^4 + 2^2 + 1"
"znprimroot": 3
- "n": 281474330787841
"n_hex": "0xffffd9800001"
"n_bit": "2^48 - 2^29 - 2^27 + 2^25 - 2^23 + 1"
"n_fac": "2^23 * 3 * 5 * 23 * 97259 + 1"
"nd": 211105586610175
"nd_hex": "0xbfffd97fffff"
"nd_bit": "2^48 - 2^46 - 2^29 - 2^27 + 2^25 - 2^23 - 1"
"r2": 71324709943863
"r2_hex": "0x40de93fffa37"
"r2_bit": "2^46 + 2^40 - 2^37 - 2^33 + 2^31 + 2^28 + 2^26 - 2^11 + 2^9 + 2^6 - 2^3 - 1"
"znprimroot": 17
- "n": 281471436718081
"n_hex": "0xffff2d000001"
"n_bit": "2^48 - 2^32 + 2^30 - 2^28 - 2^26 + 2^24 + 1"
"n_fac": "2^24 * 3 * 5 * 7 * 23 * 6947 + 1"
"nd": 281471436718079
"nd_hex": "0xffff2cffffff"
"nd_bit": "2^48 - 2^32 + 2^30 - 2^28 - 2^26 + 2^24 - 1"
"r2": 157596929446424
"r2_hex": "0x8f5564ff5218"
"r2_bit": "2^47 + 2^44 - 2^39 - 2^37 - 2^35 - 2^33 - 2^31 - 2^29 + 2^26 + 2^24 - 2^16 + 2^14 + 2^12 + 2^9 + 2^5 - 2^3"
"znprimroot": 31
- "n": 281474204958721
"n_hex": "0xffffd2000001"
"n_bit": "2^48 - 2^30 + 2^28 + 2^25 + 1"
"n_fac": "2^25 * 3^2 * 5 * 131 * 1423 + 1"
"nd": 281474204958719
"nd_hex": "0xffffd1ffffff"
"nd_bit": "2^48 - 2^30 + 2^28 + 2^25 - 1"
"r2": 1631483590589
"r2_hex": "0x17bdbfff7bd"
"r2_bit": "2^41 - 2^39 - 2^34 - 2^29 - 2^26 - 2^11 - 2^6 - 2^2 + 1"
"znprimroot": 14
- "n": 281459105464321
"n_hex": "0xfffc4e000001"
"n_bit": "2^48 - 2^34 + 2^30 + 2^28 - 2^25 + 1"
"n_fac": "2^25 * 3^2 * 5 * 7 * 31 * 859 + 1"
"nd": 281459105464319
"nd_hex": "0xfffc4dffffff"
"nd_bit": "2^48 - 2^34 + 2^30 + 2^28 - 2^25 - 1"
"r2": 130445269424139
"r2_hex": "0x76a3a7f2580b"
"r2_bit": "2^47 - 2^43 - 2^41 + 2^39 + 2^37 + 2^34 - 2^31 + 2^29 + 2^27 - 2^20 + 2^17 + 2^15 - 2^13 - 2^11 + 2^4 - 2^2 - 1"
"znprimroot": 23
- "n": 281467259191297
"n_hex": "0xfffe34000001"
"n_bit": "2^48 - 2^33 + 2^30 - 2^28 + 2^26 + 1"
"n_fac": "2^26 * 3^2 * 17 * 79 * 347 + 1"
"nd": 281467259191295
"nd_hex": "0xfffe33ffffff"
"nd_bit": "2^48 - 2^33 + 2^30 - 2^28 + 2^26 - 1"
"r2": 225675365369196
"r2_hex": "0xcd4023fcc56c"
"r2_bit": "2^48 - 2^46 + 2^44 - 2^42 + 2^40 + 2^38 + 2^29 + 2^26 - 2^18 + 2^16 - 2^14 + 2^11 - 2^9 - 2^7 - 2^4 - 2^2"
"znprimroot": 5
- "n": 281465648578561
"n_hex": "0xfffdd4000001"
"n_bit": "2^48 - 2^33 - 2^30 + 2^28 + 2^26 + 1"
"n_fac": "2^26 * 3 * 5 * 23 * 12157 + 1"
"nd": 281465648578559
"nd_hex": "0xfffdd3ffffff"
"nd_bit": "2^48 - 2^33 - 2^30 + 2^28 + 2^26 - 1"
"r2": 68986301270119
"r2_hex": "0x3ebe1ffb4867"
"r2_bit": "2^46 - 2^40 - 2^38 - 2^33 + 2^29 - 2^18 - 2^16 + 2^14 + 2^11 + 2^7 - 2^5 + 2^3 - 1"
"znprimroot": 11
- "n": 281463635312641
"n_hex": "0xfffd5c000001"
"n_bit": "2^48 - 2^33 - 2^31 - 2^29 - 2^26 + 1"
"n_fac": "2^26 * 3^2 * 5 * 11 * 37 * 229 + 1"
"nd": 281463635312639
"nd_hex": "0xfffd5bffffff"
"nd_bit": "2^48 - 2^33 - 2^31 - 2^29 - 2^26 - 1"
"r2": 116378580879071
"r2_hex": "0x69d87ff906df"
"r2_bit": "2^47 - 2^45 + 2^43 + 2^41 - 2^37 - 2^35 + 2^31 - 2^19 + 2^16 + 2^11 - 2^8 - 2^5 - 1"
"znprimroot": 13
- "n": 281385117941761
"n_hex": "0xffeb14000001"
"n_bit": "2^48 - 2^36 - 2^34 - 2^32 + 2^28 + 2^26 + 1"
"n_fac": "2^26 * 3^5 * 5 * 7 * 17 * 29 + 1"
"nd": 281385117941759
"nd_hex": "0xffeb13ffffff"
"nd_bit": "2^48 - 2^36 - 2^34 - 2^32 + 2^28 + 2^26 - 1"
"r2": 266920511808169
"r2_hex": "0xf2c3464a22a9"
"r2_bit": "2^48 - 2^44 + 2^42 - 2^40 - 2^38 + 2^34 - 2^32 + 2^30 + 2^27 - 2^25 + 2^22 + 2^19 + 2^17 + 2^13 + 2^9 + 2^7 + 2^5 + 2^3 + 1"
"znprimroot": 13
- "n": 281474305622017
"n_hex": "0xffffd8000001"
"n_bit": "2^48 - 2^29 - 2^27 + 1"
"n_fac": "2^27 * 3 * 13 * 53773 + 1"
"nd": 281474305622015
"nd_hex": "0xffffd7ffffff"
"nd_bit": "2^48 - 2^29 - 2^27 - 1"
"r2": 1072399645121
"r2_hex": "0xf9affff9c1"
"r2_bit": "2^40 - 2^35 + 2^33 - 2^30 - 2^28 - 2^11 + 2^9 - 2^6 + 1"
"znprimroot": 5
- "n": 281465447251969
"n_hex": "0xfffdc8000001"
"n_bit": "2^48 - 2^33 - 2^30 + 2^27 + 1"
"n_fac": "2^27 * 3^2 * 7 * 33287 + 1"
"nd": 281465447251967
"nd_hex": "0xfffdc7ffffff"
"nd_bit": "2^48 - 2^33 - 2^30 + 2^27 - 1"
"r2": 259758547997623
"r2_hex": "0xec3fbffb13b7"
"r2_bit": "2^48 - 2^44 - 2^42 + 2^38 - 2^30 - 2^18 - 2^16 + 2^12 + 2^10 - 2^6 - 2^3 - 1"
"znprimroot": 11
- "n": 281424376627201
"n_hex": "0xfff438000001"
"n_bit": "2^48 - 2^36 + 2^34 + 2^30 - 2^27 + 1"
"n_fac": "2^27 * 3^2 * 5^2 * 9319 + 1"
"nd": 281424376627199
"nd_hex": "0xfff437ffffff"
"nd_bit": "2^48 - 2^36 + 2^34 + 2^30 - 2^27 - 1"
"r2": 142355742403934
"r2_hex": "0x8178c7752d5e"
"r2_bit": "2^47 + 2^41 - 2^39 - 2^35 + 2^32 - 2^30 + 2^27 - 2^23 - 2^20 + 2^18 + 2^16 + 2^14 - 2^12 - 2^9 - 2^7 - 2^5 - 2"
"znprimroot": 7
- "n": 281447327858689
"n_hex": "0xfff990000001"
"n_bit": "2^48 - 2^35 + 2^33 - 2^31 + 2^28 + 1"
"n_fac": "2^28 * 3^2 * 97 * 1201 + 1"
"nd": 281447327858687
"nd_hex": "0xfff98fffffff"
"nd_bit": "2^48 - 2^35 + 2^33 - 2^31 + 2^28 - 1"
"r2": 226583144467959
"r2_hex": "0xce137fd68df7"
"r2_bit": "2^48 - 2^46 + 2^44 - 2^41 + 2^36 + 2^34 - 2^31 - 2^21 - 2^19 - 2^17 + 2^15 + 2^12 - 2^9 - 2^3 - 1"
"znprimroot": 13
- "n": 281462628679681
"n_hex": "0xfffd20000001"
"n_bit": "2^48 - 2^34 + 2^32 + 2^29 + 1"
"n_fac": "2^29 * 3 * 5 * 7 * 4993 + 1"
"nd": 281462628679679
"nd_hex": "0xfffd1fffffff"
"nd_bit": "2^48 - 2^34 + 2^32 + 2^29 - 1"
"r2": 215213831338986
"r2_hex": "0xc3bc5ff7bbea"
"r2_bit": "2^48 - 2^46 + 2^42 - 2^38 - 2^34 + 2^31 - 2^29 - 2^19 - 2^14 - 2^10 - 2^5 + 2^3 + 2"
"znprimroot": 13
- "n": 281467460517889
"n_hex": "0xfffe40000001"
"n_bit": "2^48 - 2^33 + 2^30 + 1"
"n_fac": "2^30 * 3 * 59 * 1481 + 1"
"nd": 281467460517887
"nd_hex": "0xfffe3fffffff"
"nd_bit": "2^48 - 2^33 + 2^30 - 1"
"r2": 101177618132988
"r2_hex": "0x5c053ffceffc"
"r2_bit": "2^47 - 2^45 - 2^42 + 2^34 + 2^32 + 2^30 - 2^18 + 2^16 - 2^12 - 2^2"
"znprimroot": 11
- "n": 281377266204673
"n_hex": "0xffe940000001"
"n_bit": "2^48 - 2^37 + 2^35 + 2^32 + 2^30 + 1"
"n_fac": "2^30 * 3^2 * 11 * 2647 + 1"
"nd": 281377266204671
"nd_hex": "0xffe93fffffff"
"nd_bit": "2^48 - 2^37 + 2^35 + 2^32 + 2^30 - 1"
"r2": 178670605582847
"r2_hex": "0xa27ffdfa41ff"
"r2_bit": "2^47 + 2^45 + 2^41 + 2^39 - 2^25 - 2^19 + 2^17 + 2^14 + 2^9 - 1"
"znprimroot": 10
- "n": 281357938851841
"n_hex": "0xffe4c0000001"
"n_bit": "2^48 - 2^37 + 2^34 + 2^32 - 2^30 + 1"
"n_fac": "2^30 * 3^4 * 5 * 647 + 1"
"nd": 281357938851839
"nd_hex": "0xffe4bfffffff"
"nd_bit": "2^48 - 2^37 + 2^34 + 2^32 - 2^30 - 1"
"r2": 68784926302446
"r2_hex": "0x3e8f3d1920ee"
"r2_bit": "2^46 - 2^41 + 2^39 + 2^36 - 2^32 + 2^30 - 2^26 + 2^24 + 2^21 - 2^19 + 2^16 + 2^13 + 2^8 - 2^4 - 2"
"znprimroot": 13
- "n": 281068028559361
"n_hex": "0xffa140000001"
"n_bit": "2^48 - 2^39 + 2^37 + 2^32 + 2^30 + 1"
"n_fac": "2^30 * 3^3 * 5 * 7 * 277 + 1"
"nd": 281068028559359
"nd_hex": "0xffa13fffffff"
"nd_bit": "2^48 - 2^39 + 2^37 + 2^32 + 2^30 - 1"
"r2": 177500745461874
"r2_hex": "0xa16f9ce17072"
"r2_bit": "2^47 + 2^45 + 2^41 - 2^39 - 2^36 - 2^31 + 2^29 - 2^26 + 2^24 - 2^21 + 2^17 - 2^15 - 2^12 + 2^7 - 2^4 + 2"
"znprimroot": 11
- "n": 281451354390529
"n_hex": "0xfffa80000001"
"n_bit": "2^48 - 2^35 + 2^33 + 2^31 + 1"
"n_fac": "2^31 * 3 * 7 * 79^2 + 1"
"nd": 281451354390527
"nd_hex": "0xfffa7fffffff"
"nd_bit": "2^48 - 2^35 + 2^33 + 2^31 - 1"
"r2": 109427174784859
"r2_hex": "0x6385ffe1bf5b"
"r2_bit": "2^47 - 2^45 + 2^42 - 2^39 + 2^35 - 2^33 - 2^21 + 2^17 - 2^14 - 2^7 - 2^5 - 2^2 - 1"
"znprimroot": 23
- "n": 281245195960321
"n_hex": "0xffca80000001"
"n_bit": "2^48 - 2^38 + 2^35 + 2^33 + 2^31 + 1"
"n_fac": "2^31 * 3 * 5 * 8731 + 1"
"nd": 281245195960319
"nd_hex": "0xffca7fffffff"
"nd_bit": "2^48 - 2^38 + 2^35 + 2^33 + 2^31 - 1"
"r2": 135770170943834
"r2_hex": "0x7b7b74cf695a"
"r2_bit": "2^47 - 2^42 - 2^39 - 2^34 - 2^31 - 2^28 + 2^26 + 2^24 - 2^22 + 2^20 - 2^15 - 2^13 + 2^11 + 2^9 - 2^7 - 2^5 - 2^3 + 2"
"znprimroot": 7
- "n": 280278828318721
"n_hex": "0xfee980000001"
"n_bit": "2^48 - 2^40 - 2^37 + 2^35 + 2^33 - 2^31 + 1"
"n_fac": "2^31 * 3 * 5 * 7 * 11 * 113 + 1"
"nd": 280278828318719
"nd_hex": "0xfee97fffffff"
"nd_bit": "2^48 - 2^40 - 2^37 + 2^35 + 2^33 - 2^31 - 1"
"r2": 213461212249256
"r2_hex": "0xc2244fbabca8"
"r2_bit": "2^48 - 2^46 + 2^41 + 2^37 + 2^34 + 2^30 + 2^28 - 2^22 - 2^18 - 2^16 - 2^14 - 2^10 + 2^7 + 2^5 + 2^3"
"znprimroot": 19
- "n": 278023970488321
"n_hex": "0xfcdc80000001"
"n_bit": "2^48 - 2^42 + 2^40 - 2^37 - 2^34 + 2^31 + 1"
"n_fac": "2^31 * 3^3 * 5 * 7 * 137 + 1"
"nd": 278023970488319
"nd_hex": "0xfcdc7fffffff"
"nd_bit": "2^48 - 2^42 + 2^40 - 2^37 - 2^34 + 2^31 - 1"
"r2": 46564001579646
"r2_hex": "0x2a5986c6027e"
"r2_bit": "2^45 + 2^43 + 2^41 + 2^39 - 2^37 - 2^35 + 2^33 - 2^31 + 2^27 - 2^24 - 2^22 + 2^19 - 2^17 + 2^9 + 2^7 - 2"
"znprimroot": 17
- "n": 281212983705601
"n_hex": "0xffc300000001"
"n_bit": "2^48 - 2^38 + 2^34 - 2^32 + 1"
"n_fac": "2^32 * 3^3 * 5^2 * 97 + 1"
"nd": 281212983705599
"nd_hex": "0xffc2ffffffff"
"nd_bit": "2^48 - 2^38 + 2^34 - 2^32 - 1"
"r2": 130970488637577
"r2_hex": "0x771df1738889"
"r2_bit": "2^47 - 2^43 - 2^40 + 2^37 - 2^33 - 2^28 + 2^25 - 2^23 - 2^20 + 2^18 - 2^15 + 2^11 + 2^7 + 2^3 + 1"
"znprimroot": 11
- "n": 281346127691777
"n_hex": "0xffe200000001"
"n_bit": "2^48 - 2^37 + 2^33 + 1"
"n_fac": "2^33 * 7 * 4679 + 1"
"nd": 281346127691775
"nd_hex": "0xffe1ffffffff"
"nd_bit": "2^48 - 2^37 + 2^33 - 1"
"r2": 102512220411517
"r2_hex": "0x5d3bfc7b967d"
"r2_bit": "2^47 - 2^45 - 2^42 + 2^40 + 2^38 - 2^34 - 2^26 + 2^23 - 2^18 - 2^15 + 2^13 - 2^11 - 2^9 + 2^7 - 2^2 + 1"
"znprimroot": 3
- "n": 281019710177281
"n_hex": "0xff9600000001"
"n_bit": "2^48 - 2^39 + 2^37 - 2^35 - 2^33 + 1"
"n_fac": "2^33 * 3^2 * 5 * 727 + 1"
"nd": 281019710177279
"nd_hex": "0xff95ffffffff"
"nd_bit": "2^48 - 2^39 + 2^37 - 2^35 - 2^33 - 1"
"r2": 141793312754704
"r2_hex": "0x80f5d409cc10"
"r2_bit": "2^47 + 2^40 - 2^35 - 2^33 - 2^30 + 2^28 + 2^26 + 2^19 + 2^17 - 2^14 + 2^12 - 2^10 + 2^4"
"znprimroot": 23
- "n": 279396212539393
"n_hex": "0xfe1c00000001"
"n_bit": "2^48 - 2^41 + 2^37 - 2^34 + 1"
"n_fac": "2^34 * 3^2 * 13 * 139 + 1"
"nd": 279396212539391
"nd_hex": "0xfe1bffffffff"
"nd_bit": "2^48 - 2^41 + 2^37 - 2^34 - 1"
"r2": 94387914741392
"r2_hex": "0x55d866211690"
"r2_bit": "2^47 - 2^45 - 2^43 - 2^41 - 2^37 - 2^35 + 2^31 - 2^29 + 2^27 - 2^25 + 2^21 + 2^16 + 2^13 - 2^11 - 2^9 + 2^7 + 2^4"
"znprimroot": 7
- "n": 272386825912321
"n_hex": "0xf7bc00000001"
"n_bit": "2^48 - 2^43 - 2^38 - 2^34 + 1"
"n_fac": "2^34 * 3 * 5 * 7 * 151 + 1"
"nd": 272386825912319
"nd_hex": "0xf7bbffffffff"
"nd_bit": "2^48 - 2^43 - 2^38 - 2^34 - 1"
"r2": 253976018830398
"r2_hex": "0xe6fd6662443e"
"r2_bit": "2^48 - 2^45 + 2^43 - 2^40 - 2^33 - 2^31 - 2^29 + 2^27 - 2^25 + 2^23 - 2^21 + 2^17 + 2^14 + 2^10 + 2^6 - 2"
"znprimroot": 17
- "n": 254347963269121
"n_hex": "0xe75400000001"
"n_bit": "2^48 - 2^45 + 2^43 - 2^40 + 2^38 + 2^36 + 2^34 + 1"
"n_fac": "2^34 * 3^2 * 5 * 7 * 47 + 1"
"nd": 254347963269119
"nd_hex": "0xe753ffffffff"
"nd_bit": "2^48 - 2^45 + 2^43 - 2^40 + 2^38 + 2^36 + 2^34 - 1"
"r2": 191857815426855
"r2_hex": "0xae7e60ef9727"
"r2_bit": "2^48 - 2^46 - 2^44 - 2^41 + 2^39 - 2^33 + 2^31 - 2^29 + 2^24 - 2^20 - 2^15 + 2^13 - 2^11 - 2^8 + 2^5 + 2^3 - 1"
"znprimroot": 26
- "n": 280684702728193
"n_hex": "0xff4800000001"
"n_bit": "2^48 - 2^40 + 2^38 + 2^35 + 1"
"n_fac": "2^35 * 3 * 7 * 389 + 1"
"nd": 280684702728191
"nd_hex": "0xff47ffffffff"
"nd_bit": "2^48 - 2^40 + 2^38 + 2^35 - 1"
"r2": 84350932659582
"r2_hex": "0x4cb77b60ad7e"
"r2_bit": "2^46 + 2^44 - 2^42 + 2^40 - 2^38 - 2^35 - 2^31 - 2^26 - 2^23 - 2^21 + 2^16 - 2^14 - 2^12 - 2^9 - 2^7 - 2"
"znprimroot": 15
- "n": 278004643135489
"n_hex": "0xfcd800000001"
"n_bit": "2^48 - 2^42 + 2^40 - 2^37 - 2^35 + 1"
"n_fac": "2^35 * 3^2 * 29 * 31 + 1"
"nd": 278004643135487
"nd_hex": "0xfcd7ffffffff"
"nd_bit": "2^48 - 2^42 + 2^40 - 2^37 - 2^35 - 1"
"r2": 194398439230336
"r2_hex": "0xb0cde9ea4b80"
"r2_bit": "2^48 - 2^46 - 2^44 + 2^40 - 2^38 + 2^36 - 2^33 - 2^29 + 2^27 + 2^25 - 2^21 + 2^19 + 2^17 + 2^14 + 2^12 - 2^10 - 2^7"
"znprimroot": 11
- "n": 274706108252161
"n_hex": "0xf9d800000001"
"n_bit": "2^48 - 2^43 + 2^41 - 2^37 - 2^35 + 1"
"n_fac": "2^35 * 3 * 5 * 13 * 41 + 1"
"nd": 274706108252159
"nd_hex": "0xf9d7ffffffff"
"nd_bit": "2^48 - 2^43 + 2^41 - 2^37 - 2^35 - 1"
"r2": 261070303183848
"r2_hex": "0xed712aaec3e8"
"r2_bit": "2^48 - 2^44 - 2^41 - 2^39 - 2^36 + 2^32 + 2^30 - 2^28 - 2^26 - 2^24 - 2^22 - 2^20 - 2^16 - 2^14 + 2^10 - 2^5 + 2^3"
"znprimroot": 7
- "n": 273984553746433
"n_hex": "0xf93000000001"
"n_bit": "2^48 - 2^43 + 2^40 + 2^38 - 2^36 + 1"
"n_fac": "2^36 * 3^2 * 443 + 1"
"nd": 273984553746431
"nd_hex": "0xf92fffffffff"
"nd_bit": "2^48 - 2^43 + 2^40 + 2^38 - 2^36 - 1"
"r2": 250208993666643
"r2_hex": "0xe390522fe653"
"r2_bit": "2^48 - 2^45 + 2^42 - 2^39 + 2^36 + 2^30 + 2^28 + 2^25 + 2^22 - 2^20 - 2^13 + 2^11 - 2^9 + 2^6 + 2^4 + 2^2 - 1"
"znprimroot": 7
- "n": 266975167119361
"n_hex": "0xf2d000000001"
"n_bit": "2^48 - 2^44 + 2^42 - 2^40 - 2^38 + 2^36 + 1"
"n_fac": "2^36 * 3 * 5 * 7 * 37 + 1"
"nd": 266975167119359
"nd_hex": "0xf2cfffffffff"
"nd_bit": "2^48 - 2^44 + 2^42 - 2^40 - 2^38 + 2^36 - 1"
"r2": 92945860521763
"r2_hex": "0x5488a4ffef23"
"r2_bit": "2^46 + 2^44 + 2^42 + 2^39 + 2^35 + 2^31 + 2^29 + 2^26 + 2^24 - 2^12 - 2^8 + 2^5 + 2^2 - 1"
"znprimroot": 31
- "n": 194819716546561
"n_hex": "0xb13000000001"
"n_bit": "2^48 - 2^46 - 2^44 + 2^40 + 2^38 - 2^36 + 1"
"n_fac": "2^36 * 3^4 * 5 * 7 + 1"
"nd": 194819716546559
"nd_hex": "0xb12fffffffff"
"nd_bit": "2^48 - 2^46 - 2^44 + 2^40 + 2^38 - 2^36 - 1"
"r2": 26327170847631
"r2_hex": "0x17f1c5aa938f"
"r2_bit": "2^45 - 2^43 - 2^36 + 2^33 - 2^30 + 2^27 - 2^25 - 2^23 + 2^21 + 2^19 + 2^17 + 2^15 + 2^12 + 2^10 - 2^7 + 2^4 - 1"
"znprimroot": 22
- "n": 280238026129409
"n_hex": "0xfee000000001"
"n_bit": "2^48 - 2^40 - 2^37 + 1"
"n_fac": "2^37 * 2039 + 1"
"nd": 280238026129407
"nd_hex": "0xfedfffffffff"
"nd_bit": "2^48 - 2^40 - 2^37 - 1"
"r2": 97438758200354
"r2_hex": "0x589eba91e422"
"r2_bit": "2^47 - 2^45 - 2^43 + 2^39 + 2^37 - 2^32 - 2^30 - 2^27 + 2^25 + 2^23 + 2^20 + 2^17 - 2^13 + 2^10 + 2^5 + 2"
"znprimroot": 3
- "n": 28862180229121
"n_hex": "0x1a4000000001"
"n_bit": "2^45 - 2^43 + 2^41 + 2^38 + 1"
"n_fac": "2^38 * 3 * 5 * 7 + 1"
"nd": 28862180229119
"nd_hex": "0x1a3fffffffff"
"nd_bit": "2^45 - 2^43 + 2^41 + 2^38 - 1"
"r2": 18571274970198
"r2_hex": "0x10e3f63f6456"
"r2_bit": "2^44 + 2^40 - 2^37 + 2^34 - 2^27 - 2^25 + 2^22 - 2^15 - 2^13 + 2^10 + 2^7 - 2^5 - 2^3 - 2"
"znprimroot": 19
- "n": 279825709268993
"n_hex": "0xfe8000000001"
"n_bit": "2^48 - 2^41 + 2^39 + 1"
"n_fac": "2^39 * 509 + 1"
"nd": 279825709268991
"nd_hex": "0xfe7fffffffff"
"nd_bit": "2^48 - 2^41 + 2^39 - 1"
"r2": 124784849119326
"r2_hex": "0x717dbc9ae85e"
"r2_bit": "2^47 - 2^44 + 2^41 - 2^39 - 2^33 - 2^30 - 2^26 + 2^23 + 2^21 - 2^18 - 2^16 - 2^13 + 2^11 + 2^7 - 2^5 - 2"
"znprimroot": 3
- "n": 272129127874561
"n_hex": "0xf78000000001"
"n_bit": "2^48 - 2^43 - 2^39 + 1"
"n_fac": "2^39 * 3^2 * 5 * 11 + 1"
"nd": 272129127874559
"nd_hex": "0xf77fffffffff"
"nd_bit": "2^48 - 2^43 - 2^39 - 1"
"r2": 15072194242979
"r2_hex": "0xdb544c8a9a3"
"r2_bit": "2^44 - 2^41 - 2^38 - 2^36 + 2^34 + 2^32 + 2^30 + 2^26 + 2^24 - 2^22 + 2^19 + 2^15 + 2^13 + 2^11 + 2^9 - 2^7 + 2^5 + 2^2 - 1"
"znprimroot": 14
- "n": 217703302299649
"n_hex": "0xc60000000001"
"n_bit": "2^48 - 2^46 + 2^43 - 2^41 + 1"
"n_fac": "2^41 * 3^2 * 11 + 1"
"nd": 217703302299647
"nd_hex": "0xc5ffffffffff"
"nd_bit": "2^48 - 2^46 + 2^43 - 2^41 - 1"
"r2": 214415873594381
"r2_hex": "0xc30295fad40d"
"r2_bit": "2^48 - 2^46 + 2^42 - 2^40 + 2^33 + 2^31 + 2^29 - 2^27 - 2^25 - 2^18 - 2^16 - 2^14 + 2^12 + 2^10 + 2^4 - 2^2 + 1"
"znprimroot": 7
- "n": 79164837199873
"n_hex": "0x480000000001"
"n_bit": "2^46 + 2^43 + 1"
"n_fac": "2^43 * 3^2 + 1"
"nd": 79164837199871
"nd_hex": "0x47ffffffffff"
"nd_bit": "2^46 + 2^43 - 1"
"r2": 72323431515946
"r2_hex": "0x41c71c71c72a"
"r2_bit": "2^46 + 2^41 - 2^38 + 2^35 - 2^32 + 2^29 - 2^26 + 2^23 - 2^20 + 2^17 - 2^14 + 2^11 - 2^8 + 2^5 + 2^3 + 2"
"znprimroot": 5
- "n": 263882790666241
"n_hex": "0xf00000000001"
"n_bit": "2^48 - 2^44 + 1"
"n_fac": "2^44 * 3 * 5 + 1"
"nd": 263882790666239
"nd_hex": "0xefffffffffff"
"nd_bit": "2^48 - 2^44 - 1"
"r2": 245117792218865
"r2_hex": "0xdeeeeeeeeef1"
"r2_bit": "2^48 - 2^45 - 2^40 - 2^36 - 2^32 - 2^28 - 2^24 - 2^20 - 2^16 - 2^12 - 2^8 - 2^4 + 1"
"znprimroot": 7
- "r": 49
"primes":
- "n": 562949953421231
"n_hex": "0x1ffffffffffaf"
"n_bit": "2^49 - 2^6 - 2^4 - 1"
"n_fac": "2 * 5 * 223 * 252443925301 + 1"
"nd": 340549971822769
"nd_hex": "0x135ba781948b1"
"nd_bit": "2^48 + 2^46 - 2^43 - 2^41 - 2^38 - 2^35 + 2^33 + 2^31 - 2^27 + 2^21 - 2^19 + 2^16 + 2^14 + 2^11 + 2^8 - 2^6 - 2^4 + 1"
"r2": 6561
"r2_hex": "0x19a1"
"r2_bit": "2^13 - 2^11 + 2^9 - 2^7 + 2^5 + 1"
"znprimroot": 17
- "n": 562949953421131
"n_hex": "0x1ffffffffff4b"
"n_bit": "2^49 - 2^8 + 2^6 + 2^4 - 2^2 - 1"
"n_fac": "2 * 3^2 * 5 * 11 * 568636316587 + 1"
"nd": 242597217496477
"nd_hex": "0xdca410f8ed9d"
"nd_bit": "2^48 - 2^45 - 2^42 + 2^39 + 2^37 + 2^34 + 2^28 + 2^24 - 2^19 + 2^16 - 2^12 - 2^9 - 2^7 + 2^5 - 2^2 + 1"
"r2": 32761
"r2_hex": "0x7ff9"
"r2_bit": "2^15 - 2^3 + 1"
"znprimroot": 2
- "n": 562949953419211
"n_hex": "0x1fffffffff7cb"
"n_bit": "2^49 - 2^11 - 2^6 + 2^4 - 2^2 - 1"
"n_fac": "2 * 3 * 5 * 7 * 23 * 116552785387 + 1"
"nd": 323676127431197
"nd_hex": "0x12661b8990a1d"
"nd_bit": "2^48 + 2^45 + 2^43 - 2^41 + 2^39 - 2^37 + 2^33 - 2^30 - 2^27 + 2^23 + 2^21 - 2^19 + 2^16 + 2^11 + 2^9 + 2^5 - 2^2 + 1"
"r2": 4414201
"r2_hex": "0x435af9"
"r2_bit": "2^22 + 2^18 - 2^15 - 2^13 - 2^10 - 2^8 - 2^3 + 1"
"znprimroot": 3
- "n": 562949953421173
"n_hex": "0x1ffffffffff75"
"n_bit": "2^49 - 2^7 - 2^4 + 2^2 + 1"
"n_fac": "2^2 * 3 * 31 * 1093 * 2861 * 483937 + 1"
"nd": 400949966825251
"nd_hex": "0x16ca970586723"
"nd_bit": "2^49 - 2^47 - 2^44 - 2^42 + 2^39 + 2^37 + 2^35 + 2^33 - 2^31 - 2^28 + 2^23 - 2^21 - 2^19 + 2^15 - 2^13 + 2^11 - 2^8 + 2^5 + 2^2 - 1"
"r2": 19321
"r2_hex": "0x4b79"
"r2_bit": "2^14 + 2^12 - 2^10 - 2^7 - 2^3 + 1"
"znprimroot": 2
- "n": 562949953420741
"n_hex": "0x1fffffffffdc5"
"n_bit": "2^49 - 2^9 - 2^6 + 2^2 + 1"
"n_fac": "2^2 * 3 * 5 * 47 * 199627643057 + 1"
"nd": 252390872286963
"nd_hex": "0xe58c544986f3"
"nd_bit": "2^48 - 2^45 + 2^43 - 2^41 - 2^39 + 2^36 - 2^34 + 2^30 + 2^28 + 2^26 + 2^22 + 2^19 + 2^17 - 2^15 + 2^11 - 2^8 - 2^4 + 2^2 - 1"
"r2": 326041
"r2_hex": "0x4f999"
"r2_bit": "2^18 + 2^16 - 2^11 + 2^9 - 2^7 + 2^5 - 2^3 + 1"
"znprimroot": 2
- "n": 562949953421201
"n_hex": "0x1ffffffffff91"
"n_bit": "2^49 - 2^7 + 2^4 + 1"
"n_fac": "2^4 * 5^2 * 137 * 10272809369 + 1"
"nd": 537591847411343
"nd_hex": "0x1e8efdb195e8f"
"nd_bit": "2^49 - 2^45 + 2^43 + 2^40 - 2^36 - 2^29 - 2^26 - 2^24 + 2^21 - 2^19 + 2^17 - 2^15 - 2^13 - 2^9 + 2^7 + 2^4 - 1"
"r2": 12321
"r2_hex": "0x3021"
"r2_bit": "2^14 - 2^12 + 2^5 + 1"
"znprimroot": 3
- "n": 562949953418161
"n_hex": "0x1fffffffff3b1"
"n_bit": "2^49 - 2^12 + 2^10 - 2^6 - 2^4 + 1"
"n_fac": "2^4 * 3^2 * 5 * 7 * 11 * 1171 * 8671409 + 1"
"nd": 148821742684847
"nd_hex": "0x875a431b8aaf"
"nd_bit": "2^47 + 2^43 - 2^39 - 2^37 - 2^35 + 2^33 + 2^30 + 2^26 - 2^24 + 2^21 - 2^18 - 2^15 + 2^12 - 2^10 - 2^8 - 2^6 - 2^4 - 1"
"r2": 9928801
"r2_hex": "0x978061"
"r2_bit": "2^23 + 2^21 - 2^19 - 2^15 + 2^7 - 2^5 + 1"
"znprimroot": 29
- "n": 562949953418401
"n_hex": "0x1fffffffff4a1"
"n_bit": "2^49 - 2^12 + 2^10 + 2^7 + 2^5 + 1"
"n_fac": "2^5 * 3 * 5^2 * 97 * 2418169903 + 1"
"nd": 63817754939551
"nd_hex": "0x3a0aba9d109f"
"nd_bit": "2^46 - 2^43 + 2^41 + 2^36 - 2^34 - 2^32 - 2^30 - 2^27 + 2^25 + 2^23 + 2^21 - 2^18 + 2^16 + 2^12 + 2^7 + 2^5 - 1"
"r2": 8473921
"r2_hex": "0x814d41"
"r2_bit": "2^23 + 2^16 + 2^14 + 2^12 - 2^10 + 2^8 + 2^6 + 1"
"znprimroot": 11
- "n": 562949953417441
"n_hex": "0x1fffffffff0e1"
"n_bit": "2^49 - 2^12 + 2^8 - 2^5 + 1"
"n_fac": "2^5 * 3^3 * 5 * 107 * 1217873731c + 1"
"nd": 524702514064607
"nd_hex": "0x1dd36d2f6acdf"
"nd_bit": "2^49 - 2^45 - 2^42 + 2^40 + 2^38 - 2^35 - 2^32 - 2^30 + 2^28 + 2^26 - 2^24 - 2^19 - 2^16 - 2^14 - 2^12 - 2^10 + 2^8 - 2^5 - 1"
"r2": 14984641
"r2_hex": "0xe4a5c1"
"r2_bit": "2^24 - 2^21 + 2^18 + 2^15 + 2^13 + 2^11 - 2^9 - 2^6 + 1"
"znprimroot": 11
- "n": 562949953396321
"n_hex": "0x1ffffffff9e61"
"n_bit": "2^49 - 2^15 + 2^13 - 2^9 + 2^7 - 2^5 + 1"
"n_fac": "2^5 * 3 * 5 * 7 * 17 * 1103 * 8935237 + 1"
"nd": 103687672986207
"nd_hex": "0x5e4daaea7a5f"
"nd_bit": "2^47 - 2^45 - 2^41 + 2^38 + 2^36 - 2^33 - 2^30 - 2^28 - 2^26 - 2^24 - 2^21 + 2^19 + 2^17 + 2^15 - 2^11 + 2^9 + 2^7 - 2^5 - 1"
"r2": 624550081
"r2_hex": "0x2539e0c1"
"r2_bit": "2^29 + 2^26 + 2^24 + 2^22 - 2^19 + 2^17 - 2^13 + 2^8 - 2^6 + 1"
"znprimroot": 22
- "n": 562949953420609
"n_hex": "0x1fffffffffd41"
"n_bit": "2^49 - 2^10 + 2^8 + 2^6 + 1"
"n_fac": "2^6 * 3^2 * 13 * 75180282241c + 1"
"nd": 233027647860031
"nd_hex": "0xd3effa2c6d3f"
"nd_bit": "2^48 - 2^46 + 2^44 + 2^42 - 2^36 - 2^27 + 2^25 + 2^22 - 2^20 - 2^18 + 2^15 - 2^12 - 2^10 + 2^8 + 2^6 - 1"
"r2": 494209
"r2_hex": "0x78a81"
"r2_bit": "2^19 - 2^15 + 2^11 + 2^9 + 2^7 + 1"
"znprimroot": 7
- "n": 562949953416001
"n_hex": "0x1ffffffffeb41"
"n_bit": "2^49 - 2^12 - 2^10 - 2^8 + 2^6 + 1"
"n_fac": "2^6 * 3^2 * 5^3 * 7818749353 + 1"
"nd": 537404681575231
"nd_hex": "0x1e8c447255b3f"
"nd_bit": "2^49 - 2^45 + 2^43 + 2^40 - 2^38 + 2^34 + 2^30 + 2^27 - 2^24 + 2^21 + 2^19 - 2^17 - 2^15 - 2^13 - 2^10 - 2^8 + 2^6 - 1"
"r2": 28206721
"r2_hex": "0x1ae6681"
"r2_bit": "2^25 - 2^22 - 2^20 - 2^17 + 2^15 - 2^13 + 2^11 - 2^9 + 2^7 + 1"
"znprimroot": 13
- "n": 562949953272001
"n_hex": "0x1fffffffdb8c1"
"n_bit": "2^49 - 2^17 - 2^14 - 2^11 + 2^8 - 2^6 + 1"
"n_fac": "2^6 * 3^2 * 5^3 * 7 * 31 * 197 * 182899 + 1"
"nd": 275704504985791
"nd_hex": "0xfac0751528bf"
"nd_bit": "2^48 - 2^42 - 2^40 - 2^38 + 2^31 - 2^28 + 2^26 + 2^24 + 2^20 + 2^18 + 2^16 + 2^13 + 2^11 + 2^8 - 2^6 - 1"
"r2": 22293774721
"r2_hex": "0x530d00181"
"r2_bit": "2^34 + 2^32 + 2^30 - 2^28 + 2^24 - 2^22 + 2^20 + 2^9 - 2^7 + 1"
"znprimroot": 38
- "n": 562949953345921
"n_hex": "0x1fffffffed981"
"n_bit": "2^49 - 2^16 - 2^13 - 2^11 + 2^9 - 2^7 + 1"
"n_fac": "2^7 * 3 * 5 * 7^2 * 5983736749c + 1"
"nd": 449218994280831
"nd_hex": "0x1988ff294997f"
"nd_bit": "2^49 - 2^47 + 2^45 - 2^43 + 2^39 + 2^36 - 2^28 + 2^25 + 2^23 + 2^20 + 2^18 + 2^15 + 2^13 - 2^11 + 2^9 - 2^7 - 1"
"r2": 5683802881
"r2_hex": "0x152c7f301"
"r2_bit": "2^32 + 2^30 + 2^28 + 2^26 - 2^24 - 2^22 + 2^19 - 2^12 + 2^10 - 2^8 + 1"
"znprimroot": 26
- "n": 562949953050241
"n_hex": "0x1fffffffa5681"
"n_bit": "2^49 - 2^19 + 2^17 + 2^15 - 2^13 - 2^11 - 2^9 + 2^7 + 1"
"n_fac": "2^7 * 3^3 * 5 * 7 * 29^2 * 5533909 + 1"
"nd": 440691819812479
"nd_hex": "0x190ce8f60167f"
"nd_bit": "2^49 - 2^47 + 2^44 + 2^40 - 2^38 + 2^36 - 2^33 + 2^31 + 2^28 - 2^23 - 2^21 + 2^13 - 2^11 - 2^9 + 2^7 - 1"
"r2": 137693687041
"r2_hex": "0x200f2eed01"
"r2_bit": "2^37 + 2^28 - 2^24 + 2^22 - 2^20 - 2^16 - 2^12 - 2^10 + 2^8 + 1"
"znprimroot": 31
- "n": 562949953370881
"n_hex": "0x1ffffffff3b01"
"n_bit": "2^49 - 2^16 + 2^14 - 2^10 - 2^8 + 1"
"n_fac": "2^8 * 3 * 5 * 5881 * 24927997 + 1"
"nd": 207694609136383
"nd_hex": "0xbce5ab663aff"
"nd_bit": "2^48 - 2^46 - 2^42 + 2^40 - 2^37 + 2^35 - 2^33 - 2^30 - 2^28 - 2^26 - 2^23 - 2^21 + 2^19 - 2^17 + 2^14 - 2^10 - 2^8 - 1"
"r2": 2543285761
"r2_hex": "0x97977601"
"r2_bit": "2^31 + 2^29 - 2^27 - 2^23 + 2^21 - 2^19 - 2^15 - 2^11 - 2^9 + 1"
"znprimroot": 7
- "n": 562949953240321
"n_hex": "0x1fffffffd3d01"
"n_bit": "2^49 - 2^18 + 2^16 + 2^14 - 2^10 + 2^8 + 1"
"n_fac": "2^8 * 3^6 * 5 * 603298561 + 1"
"nd": 478618345291007
"nd_hex": "0x1b34d04743cff"
"nd_bit": "2^49 - 2^46 - 2^44 + 2^42 - 2^40 + 2^38 + 2^36 - 2^34 + 2^32 + 2^26 + 2^23 - 2^20 + 2^18 + 2^14 - 2^10 + 2^8 - 1"
"r2": 32757742081
"r2_hex": "0x7a0837a01"
"r2_bit": "2^35 - 2^31 + 2^29 + 2^23 + 2^18 - 2^15 - 2^11 + 2^9 + 1"
"znprimroot": 29
- "n": 562949952687361
"n_hex": "0x1fffffff4cd01"
"n_bit": "2^49 - 2^20 + 2^18 + 2^16 - 2^14 + 2^12 - 2^10 + 2^8 + 1"
"n_fac": "2^8 * 3^3 * 5 * 7^2 * 1471 * 225989 + 1"
"nd": 522965566082303
"nd_hex": "0x1dba268cbccff"
"nd_bit": "2^49 - 2^45 - 2^42 - 2^39 + 2^37 + 2^33 + 2^31 - 2^29 + 2^27 + 2^24 - 2^22 + 2^20 - 2^18 - 2^14 + 2^12 - 2^10 + 2^8 - 1"
"r2": 538684070401
"r2_hex": "0x7d6c129a01"
"r2_bit": "2^39 - 2^33 - 2^31 - 2^28 - 2^26 + 2^20 + 2^17 + 2^15 + 2^13 - 2^11 + 2^9 + 1"
"znprimroot": 11
- "n": 562949953417729
"n_hex": "0x1fffffffff201"
"n_bit": "2^49 - 2^12 + 2^9 + 1"
"n_fac": "2^9 * 3^2 * 29 * 2819 * 1494391 + 1"
"nd": 151617835627007
"nd_hex": "0x89e5473bf1ff"
"nd_bit": "2^47 + 2^43 + 2^41 - 2^37 + 2^34 + 2^32 + 2^30 + 2^27 - 2^24 + 2^22 - 2^18 - 2^12 + 2^9 - 1"
"r2": 12837889
"r2_hex": "0xc3e401"
"r2_bit": "2^24 - 2^22 + 2^18 - 2^13 + 2^10 + 1"
"znprimroot": 7
- "n": 562949953159681
"n_hex": "0x1fffffffc0201"
"n_bit": "2^49 - 2^18 + 2^9 + 1"
"n_fac": "2^9 * 3^2 * 5 * 17 * 1437270101c + 1"
"nd": 281131781456383
"nd_hex": "0xffb017f801ff"
"nd_bit": "2^48 - 2^38 - 2^36 + 2^29 - 2^27 - 2^19 + 2^9 - 1"
"r2": 68450780161
"r2_hex": "0xfeffc0401"
"r2_bit": "2^36 - 2^28 - 2^18 + 2^10 + 1"
"znprimroot": 7
- "n": 562949953408001
"n_hex": "0x1ffffffffcc01"
"n_bit": "2^49 - 2^14 + 2^12 - 2^10 + 1"
"n_fac": "2^10 * 5^3 * 4398046511 + 1"
"nd": 119686602673151
"nd_hex": "0x6cdab56fcbff"
"nd_bit": "2^47 - 2^44 - 2^42 + 2^40 - 2^37 - 2^34 - 2^32 - 2^30 - 2^27 - 2^25 - 2^23 - 2^20 - 2^14 + 2^12 - 2^10 - 1"
"r2": 177182721
"r2_hex": "0xa8f9801"
"r2_bit": "2^27 + 2^25 + 2^23 + 2^20 - 2^15 + 2^13 - 2^11 + 1"
"znprimroot": 3
- "n": 562949953305601
"n_hex": "0x1fffffffe3c01"
"n_bit": "2^49 - 2^17 + 2^14 - 2^10 + 1"
"n_fac": "2^10 * 3 * 5^2 * 7 * 43 * 24352417 + 1"
"nd": 208806846807039
"nd_hex": "0xbde8a1ee3bff"
"nd_bit": "2^48 - 2^46 - 2^41 - 2^37 + 2^35 + 2^31 + 2^29 + 2^25 - 2^20 - 2^17 + 2^14 - 2^10 - 1"
"r2": 13389035521
"r2_hex": "0x31e0c7801"
"r2_bit": "2^34 - 2^32 + 2^29 - 2^25 + 2^20 - 2^18 + 2^15 - 2^11 + 1"
"znprimroot": 19
- "n": 562949952537601
"n_hex": "0x1fffffff28401"
"n_bit": "2^49 - 2^20 + 2^17 + 2^15 + 2^10 + 1"
"n_fac": "2^10 * 3^2 * 5^2 * 19 * 8363 * 15377 + 1"
"nd": 464828940583935
"nd_hex": "0x1a6c26be283ff"
"nd_bit": "2^49 - 2^47 + 2^45 + 2^43 - 2^40 - 2^38 + 2^33 + 2^31 - 2^28 - 2^26 - 2^21 + 2^17 + 2^15 + 2^10 - 1"
"r2": 780945131521
"r2_hex": "0xb5d3f50801"
"r2_bit": "2^40 - 2^38 - 2^35 - 2^33 - 2^30 + 2^28 + 2^26 - 2^20 + 2^18 + 2^16 + 2^11 + 1"
"znprimroot": 7
- "n": 562949951155201
"n_hex": "0x1ffffffdd6c01"
"n_bit": "2^49 - 2^21 - 2^17 - 2^15 - 2^12 - 2^10 + 1"
"n_fac": "2^10 * 3^2 * 5^2 * 7 * 79 * 1889 * 2339 + 1"
"nd": 511810219109375
"nd_hex": "0x1d17d1a4d6bff"
"nd_bit": "2^49 - 2^46 + 2^44 + 2^41 - 2^39 - 2^34 + 2^32 + 2^29 - 2^27 + 2^25 + 2^22 + 2^20 - 2^17 - 2^15 - 2^12 - 2^10 - 1"
"r2": 5135259064321
"r2_hex": "0x4aba54ad801"
"r2_bit": "2^42 + 2^40 - 2^38 - 2^36 - 2^34 - 2^31 + 2^29 + 2^26 + 2^24 + 2^22 + 2^20 - 2^18 - 2^16 - 2^13 - 2^11 + 1"
"znprimroot": 23
- "n": 562949953247233
"n_hex": "0x1fffffffd5801"
"n_bit": "2^49 - 2^17 - 2^15 - 2^13 - 2^11 + 1"
"n_fac": "2^11 * 3^3 * 10180663217 + 1"
"nd": 55108486125567
"nd_hex": "0x321ef1bd57ff"
"nd_bit": "2^46 - 2^44 + 2^41 + 2^37 - 2^32 - 2^28 + 2^25 - 2^22 - 2^17 - 2^15 - 2^13 - 2^11 - 1"
"r2": 30303498241
"r2_hex": "0x70e3ab001"
"r2_bit": "2^35 - 2^32 + 2^28 - 2^25 + 2^22 - 2^18 - 2^16 - 2^14 - 2^12 + 1"
"znprimroot": 5
- "n": 562949952337921
"n_hex": "0x1ffffffef7801"
"n_bit": "2^49 - 2^20 - 2^15 - 2^11 + 1"
"n_fac": "2^11 * 3 * 5 * 7 * 83 * 4993 * 6317 + 1"
"nd": 66575074818047
"nd_hex": "0x3c8cb7af77ff"
"nd_bit": "2^46 - 2^42 + 2^39 + 2^36 - 2^34 + 2^32 - 2^30 - 2^27 - 2^22 - 2^20 - 2^15 - 2^11 - 1"
"r2": 1173736058881
"r2_hex": "0x111481ef001"
"r2_bit": "2^40 + 2^36 + 2^32 + 2^30 + 2^27 + 2^21 - 2^16 - 2^12 + 1"
"znprimroot": 23
- "n": 562949945026561
"n_hex": "0x1ffffff7fe801"
"n_bit": "2^49 - 2^23 - 2^13 + 2^11 + 1"
"n_fac": "2^11 * 3^2 * 5 * 7 * 13 * 5003 * 13417 + 1"
"nd": 369100853340159
"nd_hex": "0x14fb1fd3fe7ff"
"nd_bit": "2^48 + 2^46 + 2^44 - 2^38 - 2^36 + 2^33 - 2^26 + 2^24 + 2^22 - 2^13 + 2^11 - 1"
"r2": 70471844352001
"r2_hex": "0x4018013fd001"
"r2_bit": "2^46 + 2^37 - 2^35 + 2^24 + 2^22 - 2^14 + 2^12 + 1"
"znprimroot": 19
- "n": 562949953392641
"n_hex": "0x1ffffffff9001"
"n_bit": "2^49 - 2^15 + 2^12 + 1"
"n_fac": "2^12 * 5 * 11 * 2498890063 + 1"
"nd": 257903374077951
"nd_hex": "0xea8fceff8fff"
"nd_bit": "2^48 - 2^45 + 2^43 + 2^41 + 2^39 + 2^36 - 2^30 + 2^28 - 2^24 - 2^15 + 2^12 - 1"
"r2": 822026241
"r2_hex": "0x30ff2001"
"r2_bit": "2^30 - 2^28 + 2^24 - 2^16 + 2^13 + 1"
"znprimroot": 6
- "n": 562949953253377
"n_hex": "0x1fffffffd7001"
"n_bit": "2^49 - 2^17 - 2^15 - 2^12 + 1"
"n_fac": "2^12 * 3 * 13 * 449 * 1289 * 6089 + 1"
"nd": 48831345291263
"nd_hex": "0x2c696efd6fff"
"nd_bit": "2^46 - 2^44 - 2^42 + 2^39 - 2^37 + 2^35 + 2^33 - 2^31 - 2^28 - 2^24 - 2^17 - 2^15 - 2^12 - 1"
"r2": 28202164225
"r2_hex": "0x690fae001"
"r2_bit": "2^35 - 2^33 + 2^31 + 2^28 + 2^24 - 2^18 - 2^16 - 2^13 + 1"
"znprimroot": 5
- "n": 562949953105921
"n_hex": "0x1fffffffb3001"
"n_bit": "2^49 - 2^18 - 2^16 + 2^14 - 2^12 + 1"
"n_fac": "2^12 * 3 * 5 * 29 * 41 * 1559 * 4943 + 1"
"nd": 433864023158783
"nd_hex": "0x18a98d6fb2fff"
"nd_bit": "2^49 - 2^47 + 2^43 + 2^41 + 2^39 + 2^37 - 2^35 + 2^32 - 2^29 - 2^27 - 2^24 - 2^18 - 2^16 + 2^14 - 2^12 - 1"
"r2": 99471482881
"r2_hex": "0x1728f66001"
"r2_bit": "2^37 - 2^35 - 2^32 + 2^29 + 2^27 + 2^24 - 2^19 - 2^17 + 2^15 - 2^13 + 1"
"znprimroot": 14
- "n": 562949951754241
"n_hex": "0x1ffffffe69001"
"n_bit": "2^49 - 2^21 + 2^19 - 2^17 + 2^15 + 2^12 + 1"
"n_fac": "2^12 * 3^3 * 5 * 23^2 * 31 * 62081 + 1"
"nd": 348583553830911
"nd_hex": "0x13d08eee68fff"
"nd_bit": "2^48 + 2^46 - 2^42 + 2^40 + 2^35 + 2^32 - 2^28 - 2^24 - 2^21 + 2^19 - 2^17 + 2^15 + 2^12 - 1"
"r2": 2779125719041
"r2_hex": "0x28710cd2001"
"r2_bit": "2^41 + 2^39 + 2^35 - 2^32 + 2^28 + 2^24 - 2^22 + 2^20 - 2^18 + 2^16 + 2^13 + 1"
"znprimroot": 11
- "n": 562949931479041
"n_hex": "0x1fffffeb13001"
"n_bit": "2^49 - 2^24 - 2^22 - 2^20 + 2^16 + 2^14 - 2^12 + 1"
"n_fac": "2^12 * 3^2 * 5 * 7 * 436314121 + 1"
"nd": 429688219578367
"nd_hex": "0x186cc95b12fff"
"nd_bit": "2^49 - 2^47 + 2^43 - 2^40 - 2^38 + 2^36 - 2^34 + 2^31 + 2^29 - 2^27 - 2^25 - 2^22 - 2^20 + 2^16 + 2^14 - 2^12 - 1"
"r2": 481463256637441
"r2_hex": "0x1b5e366626001"
"r2_bit": "2^49 - 2^46 - 2^43 - 2^41 - 2^37 + 2^34 - 2^31 - 2^29 + 2^27 - 2^25 + 2^23 - 2^21 + 2^17 + 2^15 - 2^13 + 1"
"znprimroot": 13
- "n": 562949953216513
"n_hex": "0x1fffffffce001"
"n_bit": "2^49 - 2^18 + 2^16 - 2^13 + 1"
"n_fac": "2^13 * 3 * 22906492237c + 1"
"nd": 417222719496191
"nd_hex": "0x17b763bfcdfff"
"nd_bit": "2^49 - 2^47 - 2^42 - 2^39 - 2^35 - 2^33 + 2^30 - 2^26 - 2^18 + 2^16 - 2^13 - 1"
"r2": 41942630401
"r2_hex": "0x9c3f9c001"
"r2_bit": "2^35 + 2^33 - 2^30 + 2^26 - 2^19 + 2^17 - 2^14 + 1"
"znprimroot": 5
- "n": 562949952970753
"n_hex": "0x1fffffff92001"
"n_bit": "2^49 - 2^19 + 2^16 + 2^13 + 1"
"n_fac": "2^13 * 3^4 * 848388601c + 1"
"nd": 295015867293695
"nd_hex": "0x10c50bbf91fff"
"nd_bit": "2^48 + 2^44 - 2^42 + 2^38 + 2^36 + 2^32 - 2^30 - 2^26 - 2^19 + 2^16 + 2^13 - 1"
"r2": 203003412481
"r2_hex": "0x2f43f24001"
"r2_bit": "2^38 - 2^36 - 2^32 + 2^30 + 2^26 - 2^20 + 2^17 + 2^14 + 1"
"znprimroot": 7
- "n": 562949925888001
"n_hex": "0x1fffffe5be001"
"n_bit": "2^49 - 2^25 + 2^23 - 2^21 - 2^18 - 2^13 + 1"
"n_fac": "2^13 * 3 * 5^3 * 7 * 1523 * 17189 + 1"
"nd": 455227784028159
"nd_hex": "0x19e06fa5bdfff"
"nd_bit": "2^49 - 2^47 + 2^45 - 2^41 + 2^35 - 2^32 - 2^27 + 2^25 + 2^23 - 2^21 - 2^18 - 2^13 - 1"
"r2": 195133288734720
"r2_hex": "0xb179025be000"
"r2_bit": "2^48 - 2^46 - 2^44 + 2^41 - 2^39 - 2^35 + 2^32 + 2^25 + 2^23 - 2^21 - 2^18 - 2^13"
"znprimroot": 34
- "n": 562949917286401
"n_hex": "0x1fffffdd8a001"
"n_bit": "2^49 - 2^25 - 2^21 - 2^19 + 2^15 + 2^13 + 1"
"n_fac": "2^13 * 3^2 * 5^2 * 7 * 1543 * 28277 + 1"
"nd": 205546830995455
"nd_hex": "0xbaf199d89fff"
"nd_bit": "2^48 - 2^46 - 2^42 - 2^40 - 2^36 + 2^33 - 2^31 + 2^29 - 2^27 + 2^25 - 2^21 - 2^19 + 2^15 + 2^13 - 1"
"r2": 179831958405119
"r2_hex": "0xa38e63ffffff"
"r2_bit": "2^47 + 2^45 + 2^42 - 2^39 + 2^36 - 2^33 + 2^31 - 2^29 + 2^26 - 1"
"znprimroot": 11
- "n": 562949952847873
"n_hex": "0x1fffffff74001"
"n_bit": "2^49 - 2^19 - 2^16 + 2^14 + 1"
"n_fac": "2^14 * 3 * 83 * 401 * 344117 + 1"
"nd": 21661398548479
"nd_hex": "0x13b36ff73fff"
"nd_bit": "2^44 + 2^42 - 2^38 - 2^36 + 2^34 - 2^31 - 2^28 - 2^19 - 2^16 + 2^14 - 1"
"r2": 328832286721
"r2_hex": "0x4c8fee8001"
"r2_bit": "2^38 + 2^36 - 2^34 + 2^31 + 2^28 - 2^20 - 2^17 + 2^15 + 1"
"znprimroot": 7
- "n": 562949950095361
"n_hex": "0x1ffffffcd4001"
"n_bit": "2^49 - 2^22 + 2^20 - 2^18 + 2^16 + 2^14 + 1"
"n_fac": "2^14 * 3^3 * 5 * 254516579 + 1"
"nd": 46112644612095
"nd_hex": "0x29f06fcd3fff"
"nd_bit": "2^45 + 2^43 + 2^41 - 2^36 + 2^31 - 2^28 - 2^22 + 2^20 - 2^18 + 2^16 + 2^14 - 1"
"r2": 11061950054401
"r2_hex": "0xa0f8f9a8001"
"r2_bit": "2^43 + 2^41 + 2^36 - 2^31 + 2^28 - 2^23 + 2^21 - 2^19 + 2^17 + 2^15 + 1"
"znprimroot": 14
- "n": 562949911265281
"n_hex": "0x1fffffd7cc001"
"n_bit": "2^49 - 2^25 - 2^23 - 2^18 + 2^16 - 2^14 + 1"
"n_fac": "2^14 * 3 * 5 * 7 * 11 * 3547 * 8387 + 1"
"nd": 382309760811007
"nd_hex": "0x15bb56d7cbfff"
"nd_bit": "2^49 - 2^47 - 2^45 - 2^42 - 2^38 - 2^35 - 2^33 - 2^31 - 2^28 - 2^25 - 2^23 - 2^18 + 2^16 - 2^14 - 1"
"r2": 88281215877118
"r2_hex": "0x504a92833ffe"
"r2_bit": "2^46 + 2^44 + 2^38 + 2^35 + 2^33 + 2^31 + 2^28 + 2^25 + 2^23 + 2^18 - 2^16 + 2^14 - 2"
"znprimroot": 17
- "n": 562949904384001
"n_hex": "0x1fffffd13c001"
"n_bit": "2^49 - 2^26 + 2^24 + 2^20 + 2^18 - 2^14 + 1"
"n_fac": "2^14 * 3^2 * 5^3 * 7 * 19 * 229639 + 1"
"nd": 335324959195135
"nd_hex": "0x130f9ed13bfff"
"nd_bit": "2^48 + 2^46 - 2^44 + 2^40 - 2^35 + 2^33 - 2^28 - 2^26 + 2^24 + 2^20 + 2^18 - 2^14 - 1"
"r2": 152858252574717
"r2_hex": "0x8b0615d87ffd"
"r2_bit": "2^47 + 2^44 - 2^42 - 2^40 + 2^35 - 2^33 + 2^29 - 2^27 - 2^25 - 2^21 - 2^19 + 2^15 - 2^2 + 1"
"znprimroot": 22
- "n": 562949952798721
"n_hex": "0x1fffffff68001"
"n_bit": "2^49 - 2^19 - 2^17 + 2^15 + 1"
"n_fac": "2^15 * 3 * 5 * 1145324611 + 1"
"nd": 175534239023103
"nd_hex": "0x9fa5bff67fff"
"nd_bit": "2^47 + 2^45 - 2^39 + 2^37 + 2^35 - 2^33 - 2^30 - 2^19 - 2^17 + 2^15 - 1"
"r2": 387619553281
"r2_hex": "0x5a3fed0001"
"r2_bit": "2^39 - 2^37 - 2^35 + 2^33 + 2^30 - 2^20 - 2^18 + 2^16 + 1"
"znprimroot": 7
- "n": 562949944934401
"n_hex": "0x1ffffff7e8001"
"n_bit": "2^49 - 2^23 - 2^17 + 2^15 + 1"
"n_fac": "2^15 * 3^2 * 5^2 * 17 * 4491469 + 1"
"nd": 103894176661503
"nd_hex": "0x5e7dbf7e7fff"
"nd_bit": "2^47 - 2^45 - 2^41 + 2^39 - 2^33 - 2^30 - 2^23 - 2^17 + 2^15 - 1"
"r2": 72027658321921
"r2_hex": "0x41823efd0001"
"r2_bit": "2^46 + 2^41 - 2^39 + 2^33 + 2^30 - 2^24 - 2^18 + 2^16 + 1"
"znprimroot": 7
- "n": 562949765038081
"n_hex": "0x1fffff4c58001"
"n_bit": "2^49 - 2^28 + 2^26 + 2^24 - 2^22 + 2^19 - 2^17 - 2^15 + 1"
"n_fac": "2^15 * 3^2 * 5 * 7 * 73 * 747113 + 1"
"nd": 83157894660095
"nd_hex": "0x4ba1b4c57fff"
"nd_bit": "2^46 + 2^44 - 2^42 - 2^39 + 2^37 + 2^33 - 2^30 - 2^28 + 2^26 + 2^24 - 2^22 + 2^19 - 2^17 - 2^15 - 1"
"r2": 22406524600258
"r2_hex": "0x1460ecf07fc2"
"r2_bit": "2^44 + 2^42 + 2^39 - 2^37 + 2^32 - 2^28 - 2^26 + 2^24 - 2^20 + 2^15 - 2^6 + 2"
"znprimroot": 47
- "n": 562949952700417
"n_hex": "0x1fffffff50001"
"n_bit": "2^49 - 2^20 + 2^18 + 2^16 + 1"
"n_fac": "2^16 * 3 * 2863311527c + 1"
"nd": 280955284946943
"nd_hex": "0xff86fff4ffff"
"nd_bit": "2^48 - 2^39 + 2^35 - 2^32 - 2^20 + 2^18 + 2^16 - 1"
"r2": 519689601025
"r2_hex": "0x78ffea0001"
"r2_bit": "2^39 - 2^35 + 2^32 - 2^21 + 2^19 + 2^17 + 1"
"znprimroot": 5
- "n": 562949568921601
"n_hex": "0x1ffffe9150001"
"n_bit": "2^49 - 2^29 + 2^27 + 2^24 + 2^20 + 2^18 + 2^16 + 1"
"n_fac": "2^16 * 3^2 * 5^2 * 7 * 17 * 31 * 79 * 131 + 1"
"nd": 497283813933055
"nd_hex": "0x1c446e914ffff"
"nd_bit": "2^49 - 2^46 + 2^42 + 2^38 + 2^35 - 2^32 - 2^29 + 2^27 + 2^24 + 2^20 + 2^18 + 2^16 - 1"
"r2": 347240701624059
"r2_hex": "0x13bd046abfefb"
"r2_bit": "2^48 + 2^46 - 2^42 - 2^38 + 2^36 + 2^30 + 2^27 - 2^24 - 2^22 - 2^20 - 2^18 - 2^8 - 2^2 - 1"
"znprimroot": 46
- "n": 562949951979521
"n_hex": "0x1ffffffea0001"
"n_bit": "2^49 - 2^21 + 2^19 + 2^17 + 1"
"n_fac": "2^17 * 5 * 7 * 122713351 + 1"
"nd": 560871187808255
"nd_hex": "0x1fe1bffe9ffff"
"nd_bit": "2^49 - 2^41 + 2^37 - 2^34 - 2^21 + 2^19 + 2^17 - 1"
"r2": 2078761287681
"r2_hex": "0x1e3ffd40001"
"r2_bit": "2^41 - 2^37 + 2^34 - 2^22 + 2^20 + 2^18 + 1"
"znprimroot": 6
- "n": 562949925765121
"n_hex": "0x1fffffe5a0001"
"n_bit": "2^49 - 2^25 + 2^23 - 2^21 - 2^19 + 2^17 + 1"
"n_fac": "2^17 * 3^4 * 5 * 821 * 12917 + 1"
"nd": 361034923245567
"nd_hex": "0x1485bfe59ffff"
"nd_bit": "2^48 + 2^46 + 2^43 + 2^39 - 2^37 - 2^34 - 2^25 + 2^23 - 2^21 - 2^19 + 2^17 - 1"
"r2": 201914974863360
"r2_hex": "0xb7a3fe5a0000"
"r2_bit": "2^48 - 2^46 - 2^43 - 2^39 + 2^37 + 2^34 - 2^25 + 2^23 - 2^21 - 2^19 + 2^17"
"znprimroot": 7
- "n": 562949906104321
"n_hex": "0x1fffffd2e0001"
"n_bit": "2^49 - 2^26 + 2^24 + 2^22 - 2^20 - 2^17 + 1"
"n_fac": "2^17 * 3 * 5 * 7 * 1873 * 21839 + 1"
"nd": 12902034440191
"nd_hex": "0xbbbfd2dffff"
"nd_bit": "2^44 - 2^42 - 2^38 - 2^34 - 2^26 + 2^24 + 2^22 - 2^20 - 2^17 - 1"
"r2": 550047918981118
"r2_hex": "0x1f44402d1fffe"
"r2_bit": "2^49 - 2^44 + 2^42 + 2^38 + 2^34 + 2^26 - 2^24 - 2^22 + 2^20 + 2^17 - 2"
"znprimroot": 13
- "n": 562949950537729
"n_hex": "0x1ffffffd40001"
"n_bit": "2^49 - 2^22 + 2^20 + 2^18 + 1"
"n_fac": "2^18 * 3^3 * 13 * 6118187 + 1"
"nd": 554634893852671
"nd_hex": "0x1f86fffd3ffff"
"nd_bit": "2^49 - 2^43 + 2^39 - 2^36 - 2^22 + 2^20 + 2^18 - 1"
"r2": 8315050917889
"r2_hex": "0x78fffa80001"
"r2_bit": "2^43 - 2^39 + 2^36 - 2^23 + 2^21 + 2^19 + 1"
"znprimroot": 7
- "n": 562949341839361
"n_hex": "0x1ffffdb8c0001"
"n_bit": "2^49 - 2^29 - 2^26 - 2^23 + 2^20 - 2^18 + 1"
"n_fac": "2^18 * 3^4 * 5 * 7 * 401 * 1889 + 1"
"nd": 329234401460223
"nd_hex": "0x12b6fdb8bffff"
"nd_bit": "2^48 + 2^46 - 2^44 - 2^42 - 2^39 - 2^36 - 2^29 - 2^26 - 2^23 + 2^20 - 2^18 - 1"
"r2": 234119807630697
"r2_hex": "0xd4ee43f7fd69"
"r2_bit": "2^48 - 2^46 + 2^44 + 2^42 + 2^40 - 2^36 - 2^33 + 2^30 + 2^26 - 2^19 - 2^9 - 2^7 - 2^5 + 2^3 + 1"
"znprimroot": 19
- "n": 562949927731201
"n_hex": "0x1fffffe780001"
"n_bit": "2^49 - 2^25 + 2^23 - 2^19 + 1"
"n_fac": "2^19 * 3 * 5^2 * 19 * 23 * 181^2 + 1"
"nd": 465918026579967
"nd_hex": "0x1a7bffe77ffff"
"nd_bit": "2^49 - 2^47 + 2^45 + 2^43 - 2^38 - 2^25 + 2^23 - 2^19 - 1"
"r2": 97031875461120
"r2_hex": "0x583ffe780000"
"r2_bit": "2^47 - 2^45 - 2^43 + 2^38 - 2^25 + 2^23 - 2^19"
"znprimroot": 7
- "n": 562949849088001
"n_hex": "0x1fffff9c80001"
"n_bit": "2^49 - 2^27 + 2^25 - 2^22 + 2^19 + 1"
"n_fac": "2^19 * 3^2 * 5^3 * 11 * 86767 + 1"
"nd": 373558971203583
"nd_hex": "0x153bff9c7ffff"
"nd_bit": "2^48 + 2^46 + 2^44 + 2^42 - 2^38 - 2^27 + 2^25 - 2^22 + 2^19 - 1"
"r2": 189392651550702
"r2_hex": "0xac4069b7ffee"
"r2_bit": "2^48 - 2^46 - 2^44 - 2^42 + 2^38 + 2^31 - 2^29 + 2^27 + 2^25 - 2^22 - 2^19 - 2^4 - 2"
"znprimroot": 26
- "n": 562949534515201
"n_hex": "0x1ffffe7080001"
"n_bit": "2^49 - 2^29 + 2^27 - 2^24 + 2^19 + 1"
"n_fac": "2^19 * 3 * 5^2 * 7 * 193 * 10597 + 1"
"nd": 158054377586687
"nd_hex": "0x8fbfe707ffff"
"nd_bit": "2^47 + 2^44 - 2^38 - 2^29 + 2^27 - 2^24 + 2^19 - 1"
"r2": 405024598916810
"r2_hex": "0x1705e2357feca"
"r2_bit": "2^49 - 2^47 - 2^44 + 2^39 - 2^37 - 2^33 + 2^29 + 2^26 - 2^23 - 2^21 - 2^19 - 2^8 - 2^6 + 2^3 + 2"
"znprimroot": 13
- "n": 562949948178433
"n_hex": "0x1ffffffb00001"
"n_bit": "2^49 - 2^22 - 2^20 + 1"
"n_fac": "2^20 * 3^2 * 59652323 + 1"
"nd": 535462157484031
"nd_hex": "0x1e6ffffafffff"
"nd_bit": "2^49 - 2^45 + 2^43 - 2^40 - 2^22 - 2^20 - 1"
"r2": 27487780208641
"r2_hex": "0x18ffff600001"
"r2_bit": "2^45 - 2^43 + 2^40 - 2^23 - 2^21 + 1"
"znprimroot": 5
- "n": 562949523505153
"n_hex": "0x1ffffe6600001"
"n_bit": "2^49 - 2^29 + 2^27 - 2^25 + 2^23 - 2^21 + 1"
"n_fac": "2^21 * 3^2 * 7 * 4260877 + 1"
"nd": 382629616549887
"nd_hex": "0x15bffe65fffff"
"nd_bit": "2^49 - 2^47 - 2^45 - 2^42 - 2^29 + 2^27 - 2^25 + 2^23 - 2^21 - 1"
"r2": 180460059623097
"r2_hex": "0xa420a1bffeb9"
"r2_bit": "2^47 + 2^45 + 2^42 + 2^37 + 2^31 + 2^29 + 2^25 - 2^22 - 2^8 - 2^6 - 2^3 + 1"
"znprimroot": 5
- "n": 562948818862081
"n_hex": "0x1ffffbc600001"
"n_bit": "2^49 - 2^30 - 2^26 + 2^23 - 2^21 + 1"
"n_fac": "2^21 * 3 * 5 * 7 * 2556523 + 1"
"nd": 241891423551487
"nd_hex": "0xdbffbc5fffff"
"nd_bit": "2^48 - 2^45 - 2^42 - 2^30 - 2^26 + 2^23 - 2^21 - 1"
"r2": 323648728594195
"r2_hex": "0x1265b577ff713"
"r2_bit": "2^48 + 2^45 + 2^43 - 2^41 + 2^39 - 2^37 - 2^34 - 2^31 - 2^29 - 2^27 - 2^23 - 2^11 - 2^8 + 2^4 + 2^2 - 1"
"znprimroot": 13
- "n": 562947938058241
"n_hex": "0x1ffff87e00001"
"n_bit": "2^49 - 2^31 + 2^27 - 2^21 + 1"
"n_fac": "2^21 * 3^2 * 5 * 7^2 * 23 * 67 * 79 + 1"
"nd": 558549891547135
"nd_hex": "0x1fbff87dfffff"
"nd_bit": "2^49 - 2^42 - 2^31 + 2^27 - 2^21 - 1"
"r2": 18934860342226
"r2_hex": "0x11389d9fe3d2"
"r2_bit": "2^44 + 2^40 + 2^38 - 2^35 + 2^31 + 2^29 - 2^25 - 2^23 + 2^21 - 2^13 + 2^10 - 2^6 + 2^4 + 2"
"znprimroot": 11
- "n": 562949907283969
"n_hex": "0x1fffffd400001"
"n_bit": "2^49 - 2^26 + 2^24 + 2^22 + 1"
"n_fac": "2^22 * 3 * 4889 * 9151 + 1"
"nd": 123145256173567
"nd_hex": "0x6ffffd3fffff"
"nd_bit": "2^47 - 2^44 - 2^26 + 2^24 + 2^22 - 1"
"r2": 439804697247742
"r2_hex": "0x1900002bffffe"
"r2_bit": "2^49 - 2^47 + 2^44 + 2^26 - 2^24 - 2^22 - 2"
"znprimroot": 11
- "n": 562949605294081
"n_hex": "0x1ffffeb400001"
"n_bit": "2^49 - 2^28 - 2^26 - 2^24 + 2^22 + 1"
"n_fac": "2^22 * 3 * 5 * 8947843 + 1"
"nd": 404619930894335
"nd_hex": "0x16fffeb3fffff"
"nd_bit": "2^49 - 2^47 - 2^44 - 2^28 - 2^26 - 2^24 + 2^22 - 1"
"r2": 158403825499946
"r2_hex": "0x901143bfff2a"
"r2_bit": "2^47 + 2^44 + 2^36 + 2^32 + 2^30 + 2^26 - 2^22 - 2^8 + 2^5 + 2^3 + 2"
"znprimroot": 21
- "n": 562949353635841
"n_hex": "0x1ffffdc400001"
"n_bit": "2^49 - 2^29 - 2^26 + 2^22 + 1"
"n_fac": "2^22 * 3^2 * 5 * 1019 * 2927 + 1"
"nd": 545357167591423
"nd_hex": "0x1efffdc3fffff"
"nd_bit": "2^49 - 2^44 - 2^29 - 2^26 + 2^22 - 1"
"r2": 17974249389442
"r2_hex": "0x1058f4bffd82"
"r2_bit": "2^44 + 2^39 - 2^37 - 2^35 + 2^32 - 2^28 + 2^26 + 2^24 - 2^22 - 2^9 - 2^7 + 2"
"znprimroot": 11
- "n": 562949894701057
"n_hex": "0x1fffffc800001"
"n_bit": "2^49 - 2^26 + 2^23 + 1"
"n_fac": "2^23 * 3 * 1493 * 14983 + 1"
"nd": 492581150523391
"nd_hex": "0x1bffffc7fffff"
"nd_bit": "2^49 - 2^46 - 2^26 + 2^23 - 1"
"r2": 70368979058683
"r2_hex": "0x40000dfffffb"
"r2_bit": "2^46 + 2^28 - 2^25 - 2^2 - 1"
"znprimroot": 5
- "n": 562949391384577
"n_hex": "0x1ffffde800001"
"n_bit": "2^49 - 2^29 - 2^25 + 2^23 + 1"
"n_fac": "2^23 * 3^3 * 7 * 355073 + 1"
"nd": 492580647206911
"nd_hex": "0x1bfffde7fffff"
"nd_bit": "2^49 - 2^46 - 2^29 - 2^25 + 2^23 - 1"
"r2": 70682922712528
"r2_hex": "0x4049267ffdd0"
"r2_bit": "2^46 + 2^38 + 2^35 + 2^32 + 2^29 + 2^27 - 2^25 + 2^23 - 2^9 - 2^6 + 2^4"
"znprimroot": 5
- "n": 562945515847681
"n_hex": "0x1fffef7800001"
"n_bit": "2^49 - 2^32 - 2^27 - 2^23 + 1"
"n_fac": "2^23 * 3 * 5 * 7 * 31 * 53 * 389 + 1"
"nd": 492576771670015
"nd_hex": "0x1bffef77fffff"
"nd_bit": "2^49 - 2^46 - 2^32 - 2^27 - 2^23 - 1"
"r2": 225586194642781
"r2_hex": "0xcd2b60ff775d"
"r2_bit": "2^48 - 2^46 + 2^44 - 2^42 + 2^40 + 2^38 - 2^36 - 2^34 - 2^31 - 2^29 + 2^24 - 2^15 - 2^11 - 2^7 - 2^5 - 2^2 + 1"
"znprimroot": 23
- "n": 562904998871041
"n_hex": "0x1fff588800001"
"n_bit": "2^49 - 2^35 - 2^33 - 2^31 + 2^27 + 2^23 + 1"
"n_fac": "2^23 * 3^3 * 5 * 7 * 17 * 4177 + 1"
"nd": 492536254693375
"nd_hex": "0x1bff5887fffff"
"nd_bit": "2^49 - 2^46 - 2^35 - 2^33 - 2^31 + 2^27 + 2^23 - 1"
"r2": 459990993811455
"r2_hex": "0x1a25bffc937ff"
"r2_bit": "2^49 - 2^47 + 2^45 + 2^41 + 2^39 - 2^37 - 2^34 - 2^22 + 2^19 + 2^16 + 2^14 - 2^11 - 1"
"znprimroot": 13
- "n": 562949869535233
"n_hex": "0x1fffffb000001"
"n_bit": "2^49 - 2^26 - 2^24 + 1"
"n_fac": "2^24 * 3 * 641 * 17449 + 1"
"nd": 281474892824575
"nd_hex": "0xfffffaffffff"
"nd_bit": "2^48 - 2^26 - 2^24 - 1"
"r2": 281475815571445
"r2_hex": "0x1000031fffff5"
"r2_bit": "2^48 + 2^30 - 2^28 + 2^25 - 2^4 + 2^2 + 1"
"znprimroot": 5
- "n": 562949164892161
"n_hex": "0x1ffffd1000001"
"n_bit": "2^49 - 2^30 + 2^28 + 2^24 + 1"
"n_fac": "2^24 * 3^3 * 5 * 199 * 1249 + 1"
"nd": 281474188181503
"nd_hex": "0xffffd0ffffff"
"nd_bit": "2^48 - 2^30 + 2^28 + 2^24 - 1"
"r2": 282343935835057
"r2_hex": "0x100ca51fffbb1"
"r2_bit": "2^48 + 2^40 - 2^38 + 2^35 + 2^33 + 2^30 + 2^28 + 2^25 - 2^10 - 2^6 - 2^4 + 1"
"znprimroot": 7
- "n": 562949517213697
"n_hex": "0x1ffffe6000001"
"n_bit": "2^49 - 2^29 + 2^27 - 2^25 + 1"
"n_fac": "2^25 * 3 * 53 * 105517 + 1"
"nd": 562949517213695
"nd_hex": "0x1ffffe5ffffff"
"nd_bit": "2^49 - 2^29 + 2^27 - 2^25 - 1"
"r2": 146565758639
"r2_hex": "0x221ffffeaf"
"r2_bit": "2^37 + 2^33 + 2^29 - 2^8 - 2^6 - 2^4 - 1"
"znprimroot": 10
- "n": 562921734144001
"n_hex": "0x1fff96e000001"
"n_bit": "2^49 - 2^35 + 2^33 - 2^31 - 2^28 - 2^25 + 1"
"n_fac": "2^25 * 3 * 5^3 * 7^2 * 11 * 83 + 1"
"nd": 562921734143999
"nd_hex": "0x1fff96dffffff"
"nd_bit": "2^49 - 2^35 + 2^33 - 2^31 - 2^28 - 2^25 - 1"
"r2": 513339522968089
"r2_hex": "0x1d2e12bea6a19"
"r2_bit": "2^49 - 2^46 + 2^44 + 2^42 - 2^40 - 2^37 + 2^32 + 2^30 - 2^28 - 2^26 - 2^21 + 2^19 + 2^17 + 2^15 - 2^13 + 2^11 + 2^9 + 2^5 - 2^3 + 1"
"znprimroot": 13
- "n": 562886501990401
"n_hex": "0x1fff13a000001"
"n_bit": "2^49 - 2^36 + 2^32 + 2^30 - 2^27 + 2^25 + 1"
"n_fac": "2^25 * 3^2 * 5^2 * 7 * 10651 + 1"
"nd": 562886501990399
"nd_hex": "0x1fff139ffffff"
"nd_bit": "2^49 - 2^36 + 2^32 + 2^30 - 2^27 + 2^25 - 1"
"r2": 102884927790153
"r2_hex": "0x5d92c392dc49"
"r2_bit": "2^47 - 2^45 - 2^41 - 2^39 + 2^36 + 2^34 - 2^32 - 2^30 + 2^26 - 2^23 + 2^20 + 2^18 - 2^16 - 2^13 - 2^10 + 2^6 + 2^3 + 1"
"znprimroot": 11
- "n": 562948409917441
"n_hex": "0x1ffffa4000001"
"n_bit": "2^49 - 2^31 + 2^29 + 2^26 + 1"
"n_fac": "2^26 * 3^2 * 5 * 131 * 1423 + 1"
"nd": 562948409917439
"nd_hex": "0x1ffffa3ffffff"
"nd_bit": "2^49 - 2^31 + 2^29 + 2^26 - 1"
"r2": 6529021374329
"r2_hex": "0x5f027ffef79"
"r2_bit": "2^43 - 2^41 - 2^36 + 2^29 + 2^27 - 2^12 - 2^7 - 2^3 + 1"
"znprimroot": 26
- "n": 562949282332673
"n_hex": "0x1ffffd8000001"
"n_bit": "2^49 - 2^29 - 2^27 + 1"
"n_fac": "2^27 * 29 * 61 * 2371 + 1"
"nd": 562949282332671
"nd_hex": "0x1ffffd7ffffff"
"nd_bit": "2^49 - 2^29 - 2^27 - 1"
"r2": 535528733921
"r2_hex": "0x7caffffce1"
"r2_bit": "2^39 - 2^34 + 2^32 - 2^30 - 2^28 - 2^10 + 2^8 - 2^5 + 1"
"znprimroot": 3
- "n": 562911164497921
"n_hex": "0x1fff6f8000001"
"n_bit": "2^49 - 2^35 - 2^32 - 2^27 + 1"
"n_fac": "2^27 * 3 * 5 * 7 * 59 * 677 + 1"
"nd": 562911164497919
"nd_hex": "0x1fff6f7ffffff"
"nd_bit": "2^49 - 2^35 - 2^32 - 2^27 - 1"
"r2": 94337611806505
"r2_hex": "0x55ccafd73729"
"r2_bit": "2^47 - 2^45 - 2^43 - 2^41 - 2^38 + 2^36 - 2^34 + 2^32 - 2^30 - 2^28 - 2^21 - 2^19 - 2^16 + 2^14 - 2^11 - 2^8 + 2^5 + 2^3 + 1"
"znprimroot": 11
- "n": 562903111434241
"n_hex": "0x1fff518000001"
"n_bit": "2^49 - 2^36 + 2^34 + 2^32 + 2^29 - 2^27 + 1"
"n_fac": "2^27 * 3^2 * 5 * 93199 + 1"
"nd": 562903111434239
"nd_hex": "0x1fff517ffffff"
"nd_bit": "2^49 - 2^36 + 2^34 + 2^32 + 2^29 - 2^27 - 1"
"r2": 192125962847645
"r2_hex": "0xaebccfc4859d"
"r2_bit": "2^48 - 2^46 - 2^44 - 2^40 - 2^38 - 2^34 + 2^32 - 2^30 + 2^28 - 2^22 + 2^18 + 2^15 + 2^11 - 2^9 - 2^7 + 2^5 - 2^2 + 1"
"znprimroot": 11
- "n": 562685678714881
"n_hex": "0x1ffc278000001"
"n_bit": "2^49 - 2^38 + 2^33 + 2^31 - 2^27 + 1"
"n_fac": "2^27 * 3^2 * 5 * 7 * 13309 + 1"
"nd": 562685678714879
"nd_hex": "0x1ffc277ffffff"
"nd_bit": "2^49 - 2^38 + 2^33 + 2^31 - 2^27 - 1"
"r2": 77707913859141
"r2_hex": "0x46acc89a1045"
"r2_bit": "2^46 + 2^43 - 2^40 - 2^38 - 2^36 - 2^34 + 2^32 - 2^30 + 2^27 + 2^23 + 2^21 - 2^19 + 2^17 + 2^12 + 2^6 + 2^2 + 1"
"znprimroot": 11
- "n": 562940558180353
"n_hex": "0x1fffdd0000001"
"n_bit": "2^49 - 2^33 - 2^30 + 2^28 + 1"
"n_fac": "2^28 * 3^3 * 11 * 23 * 307 + 1"
"nd": 562940558180351
"nd_hex": "0x1fffdcfffffff"
"nd_bit": "2^49 - 2^33 - 2^30 + 2^28 - 1"
"r2": 347273875528575
"r2_hex": "0x13bd7fffd9b7f"
"r2_bit": "2^48 + 2^46 - 2^42 - 2^37 - 2^35 - 2^17 - 2^15 + 2^13 - 2^10 - 2^7 - 1"
"znprimroot": 10
- "n": 562389728624641
"n_hex": "0x1ff7d90000001"
"n_bit": "2^49 - 2^39 - 2^33 - 2^31 + 2^28 + 1"
"n_fac": "2^28 * 3^4 * 5 * 7 * 739 + 1"
"nd": 562389728624639
"nd_hex": "0x1ff7d8fffffff"
"nd_bit": "2^49 - 2^39 - 2^33 - 2^31 + 2^28 - 1"
"r2": 377800871415323
"r2_hex": "0x1579b9ebc8e1b"
"r2_bit": "2^49 - 2^47 - 2^45 - 2^43 - 2^39 + 2^37 - 2^34 - 2^31 + 2^29 - 2^24 - 2^22 - 2^18 + 2^15 + 2^12 - 2^9 + 2^5 - 2^2 - 1"
"znprimroot": 26
- "n": 562756143022081
"n_hex": "0x1ffd2e0000001"
"n_bit": "2^49 - 2^38 + 2^36 + 2^34 - 2^32 - 2^29 + 1"
"n_fac": "2^29 * 3 * 5 * 7 * 67 * 149 + 1"
"nd": 562756143022079
"nd_hex": "0x1ffd2dfffffff"
"nd_bit": "2^49 - 2^38 + 2^36 + 2^34 - 2^32 - 2^29 - 1"
"r2": 299501424575550
"r2_hex": "0x110651c05843e"
"r2_bit": "2^48 + 2^44 + 2^39 - 2^37 + 2^34 + 2^32 + 2^29 - 2^26 + 2^19 - 2^17 - 2^15 + 2^10 + 2^6 - 2"
"znprimroot": 11
- "n": 558922884710401
"n_hex": "0x1fc5660000001"
"n_bit": "2^49 - 2^42 + 2^39 - 2^37 - 2^35 - 2^33 + 2^31 - 2^29 + 1"
"n_fac": "2^29 * 3^2 * 5^2 * 7 * 661 + 1"
"nd": 558922884710399
"nd_hex": "0x1fc565fffffff"
"nd_bit": "2^49 - 2^42 + 2^39 - 2^37 - 2^35 - 2^33 + 2^31 - 2^29 - 1"
"r2": 339721688354160
"r2_hex": "0x134f99e8e8d70"
"r2_bit": "2^48 + 2^46 - 2^44 + 2^42 + 2^40 - 2^35 + 2^33 - 2^31 + 2^29 - 2^25 + 2^23 + 2^20 - 2^17 + 2^15 + 2^12 - 2^9 - 2^7 - 2^4"
"znprimroot": 17
- "n": 562948879679489
"n_hex": "0x1ffffc0000001"
"n_bit": "2^49 - 2^30 + 1"
"n_fac": "2^30 * 524287 + 1"
"nd": 562948879679487
"nd_hex": "0x1ffffbfffffff"
"nd_bit": "2^49 - 2^30 - 1"
"r2": 2196875769857
"r2_hex": "0x1ff7ffff801"
"r2_bit": "2^41 - 2^31 - 2^11 + 1"
"znprimroot": 3
- "n": 562860832849921
"n_hex": "0x1ffeb40000001"
"n_bit": "2^49 - 2^36 - 2^34 - 2^32 + 2^30 + 1"
"n_fac": "2^30 * 3^3 * 5 * 11 * 353 + 1"
"nd": 562860832849919
"nd_hex": "0x1ffeb3fffffff"
"nd_bit": "2^49 - 2^36 - 2^34 - 2^32 + 2^30 - 1"
"r2": 504492213186376
"r2_hex": "0x1cad53f28af48"
"r2_bit": "2^49 - 2^46 + 2^44 - 2^42 - 2^40 - 2^38 + 2^36 + 2^34 + 2^32 + 2^30 - 2^24 + 2^21 + 2^19 + 2^16 - 2^14 - 2^12 - 2^8 + 2^6 + 2^3"
"znprimroot": 23
- "n": 558415541698561
"n_hex": "0x1fbe040000001"
"n_bit": "2^49 - 2^42 - 2^37 + 2^30 + 1"
"n_fac": "2^30 * 3^2 * 5 * 7 * 13 * 127 + 1"
"nd": 558415541698559
"nd_hex": "0x1fbe03fffffff"
"nd_bit": "2^49 - 2^42 - 2^37 + 2^30 - 1"
"r2": 373705865336106
"r2_hex": "0x153e22d5a952a"
"r2_bit": "2^48 + 2^46 + 2^44 + 2^42 - 2^37 + 2^33 + 2^30 - 2^28 - 2^25 - 2^23 - 2^21 - 2^19 + 2^17 + 2^15 + 2^12 + 2^10 + 2^8 + 2^5 + 2^3 + 2"
"znprimroot": 23
- "n": 561942783590401
"n_hex": "0x1ff1580000001"
"n_bit": "2^49 - 2^40 + 2^37 - 2^35 - 2^33 - 2^31 + 1"
"n_fac": "2^31 * 3^2 * 5^2 * 1163 + 1"
"nd": 561942783590399
"nd_hex": "0x1ff157fffffff"
"nd_bit": "2^49 - 2^40 + 2^37 - 2^35 - 2^33 - 2^31 - 1"
"r2": 238401092032628
"r2_hex": "0xd8d314679874"
"r2_bit": "2^48 - 2^45 - 2^43 + 2^40 - 2^38 + 2^36 + 2^34 - 2^32 + 2^28 + 2^26 + 2^23 - 2^21 + 2^19 - 2^15 + 2^13 - 2^11 + 2^7 - 2^4 + 2^2"
"znprimroot": 7
- "n": 562361542901761
"n_hex": "0x1ff7700000001"
"n_bit": "2^49 - 2^39 - 2^35 - 2^32 + 1"
"n_fac": "2^32 * 3 * 5 * 7 * 29 * 43 + 1"
"nd": 562361542901759
"nd_hex": "0x1ff76ffffffff"
"nd_bit": "2^49 - 2^39 - 2^35 - 2^32 - 1"
"r2": 485244789435979
"r2_hex": "0x1b953db4dae4b"
"r2_bit": "2^49 - 2^46 - 2^43 + 2^40 + 2^38 + 2^36 + 2^34 - 2^29 - 2^26 - 2^24 + 2^22 + 2^20 - 2^17 - 2^14 - 2^12 - 2^9 + 2^6 + 2^4 - 2^2 - 1"
"znprimroot": 38
- "n": 562310003294209
"n_hex": "0x1ff6b00000001"
"n_bit": "2^49 - 2^39 - 2^36 - 2^34 - 2^32 + 1"
"n_fac": "2^32 * 3^3 * 13 * 373 + 1"
"nd": 562310003294207
"nd_hex": "0x1ff6affffffff"
"nd_bit": "2^49 - 2^39 - 2^36 - 2^34 - 2^32 - 1"
"r2": 236179523296745
"r2_hex": "0xd6cdd496dde9"
"r2_bit": "2^48 - 2^45 - 2^43 - 2^40 - 2^38 + 2^36 - 2^33 - 2^30 + 2^28 + 2^26 + 2^23 + 2^21 - 2^19 - 2^16 - 2^13 - 2^9 - 2^5 + 2^3 + 1"
"znprimroot": 19
- "n": 561846146826241
"n_hex": "0x1feff00000001"
"n_bit": "2^49 - 2^40 - 2^32 + 1"
"n_fac": "2^32 * 3^4 * 5 * 17 * 19 + 1"
"nd": 561846146826239
"nd_hex": "0x1fefeffffffff"
"nd_bit": "2^49 - 2^40 - 2^32 - 1"
"r2": 193851180359344
"r2_hex": "0xb04e7ebe9eb0"
"r2_bit": "2^48 - 2^46 - 2^44 + 2^38 + 2^36 - 2^33 + 2^31 - 2^24 - 2^22 - 2^17 + 2^15 + 2^13 - 2^8 - 2^6 - 2^4"
"znprimroot": 11
- "n": 562941363486721
"n_hex": "0x1fffe00000001"
"n_bit": "2^49 - 2^33 + 1"
"n_fac": "2^33 * 3 * 5 * 17 * 257 + 1"
"nd": 562941363486719
"nd_hex": "0x1fffdffffffff"
"nd_bit": "2^49 - 2^33 - 1"
"r2": 562941363355648
"r2_hex": "0x1fffdfffe0000"
"r2_bit": "2^49 - 2^33 - 2^17"
"znprimroot": 13
- "n": 562932773552129
"n_hex": "0x1fffc00000001"
"n_bit": "2^49 - 2^34 + 1"
"n_fac": "2^34 * 7 * 31 * 151 + 1"
"nd": 562932773552127
"nd_hex": "0x1fffbffffffff"
"nd_bit": "2^49 - 2^34 - 1"
"r2": 240517644273
"r2_hex": "0x37fff7fff1"
"r2_bit": "2^38 - 2^35 - 2^19 - 2^4 + 1"
"znprimroot": 3
- "n": 562451737214977
"n_hex": "0x1ff8c00000001"
"n_bit": "2^49 - 2^39 + 2^36 - 2^34 + 1"
"n_fac": "2^34 * 3 * 7 * 1559 + 1"
"nd": 562451737214975
"nd_hex": "0x1ff8bffffffff"
"nd_bit": "2^49 - 2^39 + 2^36 - 2^34 - 1"
"r2": 369074688363096
"r2_hex": "0x14fabe5b20a58"
"r2_bit": "2^48 + 2^46 + 2^44 - 2^38 - 2^36 - 2^34 - 2^29 + 2^27 - 2^25 - 2^22 - 2^20 + 2^17 + 2^11 + 2^9 + 2^7 - 2^5 - 2^3"
"znprimroot": 5
- "n": 561008628203521
"n_hex": "0x1fe3c00000001"
"n_bit": "2^49 - 2^41 + 2^38 - 2^34 + 1"
"n_fac": "2^34 * 3 * 5 * 7 * 311 + 1"
"nd": 561008628203519
"nd_hex": "0x1fe3bffffffff"
"nd_bit": "2^49 - 2^41 + 2^38 - 2^34 - 1"
"r2": 256145131733729
"r2_hex": "0xe8f66f9682e1"
"r2_bit": "2^48 - 2^45 + 2^43 + 2^40 - 2^35 - 2^33 + 2^31 - 2^28 - 2^23 + 2^21 - 2^19 - 2^17 + 2^15 + 2^10 - 2^8 - 2^5 + 1"
"znprimroot": 51
- "n": 561266326241281
"n_hex": "0x1fe7800000001"
"n_bit": "2^49 - 2^41 + 2^39 - 2^35 + 1"
"n_fac": "2^35 * 3^3 * 5 * 11^2 + 1"
"nd": 561266326241279
"nd_hex": "0x1fe77ffffffff"
"nd_bit": "2^49 - 2^41 + 2^39 - 2^35 - 1"
"r2": 337063983023885
"r2_hex": "0x1328ed2f9870d"
"r2_bit": "2^48 + 2^46 - 2^44 + 2^41 + 2^39 + 2^36 - 2^32 - 2^30 + 2^28 + 2^26 - 2^24 - 2^19 + 2^17 - 2^15 + 2^11 - 2^8 + 2^4 - 2^2 + 1"
"znprimroot": 7
- "n": 562194039177217
"n_hex": "0x1ff5000000001"
"n_bit": "2^49 - 2^40 + 2^38 + 2^36 + 1"
"n_fac": "2^36 * 3^4 * 101 + 1"
"nd": 562194039177215
"nd_hex": "0x1ff4fffffffff"
"nd_bit": "2^49 - 2^40 + 2^38 + 2^36 - 1"
"r2": 327790887644377
"r2_hex": "0x12a1fc36b2cd9"
"r2_bit": "2^48 + 2^45 + 2^43 + 2^41 + 2^37 - 2^30 + 2^26 - 2^23 - 2^20 - 2^18 - 2^16 + 2^14 - 2^12 - 2^10 + 2^8 - 2^5 - 2^3 + 1"
"znprimroot": 5
- "n": 541165879296001
"n_hex": "0x1ec3000000001"
"n_bit": "2^49 - 2^44 - 2^42 + 2^38 - 2^36 + 1"
"n_fac": "2^36 * 3^2 * 5^3 * 7 + 1"
"nd": 541165879295999
"nd_hex": "0x1ec2fffffffff"
"nd_bit": "2^49 - 2^44 - 2^42 + 2^38 - 2^36 - 1"
"r2": 172296185946439
"r2_hex": "0x9cb3d4f5a147"
"r2_bit": "2^47 + 2^45 - 2^42 + 2^40 - 2^38 - 2^36 + 2^34 - 2^30 + 2^28 + 2^26 + 2^24 - 2^19 - 2^17 - 2^15 + 2^13 + 2^8 + 2^6 + 2^3 - 1"
"znprimroot": 13
- "n": 548381424353281
"n_hex": "0x1f2c000000001"
"n_bit": "2^49 - 2^44 + 2^42 - 2^40 - 2^38 + 1"
"n_fac": "2^38 * 3 * 5 * 7 * 19 + 1"
"nd": 548381424353279
"nd_hex": "0x1f2bfffffffff"
"nd_bit": "2^49 - 2^44 + 2^42 - 2^40 - 2^38 - 1"
"r2": 317096948916008
"r2_hex": "0x12065e2ffdf28"
"r2_bit": "2^48 + 2^45 + 2^39 - 2^37 + 2^35 - 2^33 - 2^29 + 2^26 - 2^24 - 2^13 - 2^8 + 2^5 + 2^3"
"znprimroot": 17
- "n": 531888749936641
"n_hex": "0x1e3c000000001"
"n_bit": "2^49 - 2^45 + 2^42 - 2^38 + 1"
"n_fac": "2^38 * 3^2 * 5 * 43 + 1"
"nd": 531888749936639
"nd_hex": "0x1e3bfffffffff"
"nd_bit": "2^49 - 2^45 + 2^42 - 2^38 - 1"
"r2": 295054229425223
"r2_hex": "0x10c59aa88cc47"
"r2_bit": "2^48 + 2^44 - 2^42 + 2^39 - 2^37 - 2^35 + 2^33 - 2^31 + 2^29 + 2^27 + 2^25 + 2^23 + 2^19 + 2^16 - 2^14 + 2^12 - 2^10 + 2^6 + 2^3 - 1"
"znprimroot": 19
- "n": 559101662724097
"n_hex": "0x1fc8000000001"
"n_bit": "2^49 - 2^42 + 2^39 + 1"
"n_fac": "2^39 * 3^2 * 113 + 1"
"nd": 559101662724095
"nd_hex": "0x1fc7fffffffff"
"nd_bit": "2^49 - 2^42 + 2^39 - 1"
"r2": 183042198281460
"r2_hex": "0xa679d5351cf4"
"r2_bit": "2^47 + 2^45 + 2^43 - 2^41 + 2^39 - 2^35 + 2^33 - 2^30 + 2^28 + 2^26 + 2^24 + 2^22 - 2^20 + 2^18 + 2^16 + 2^13 - 2^10 + 2^8 - 2^4 + 2^2"
"znprimroot": 5
- "n": 519519244124161
"n_hex": "0x1d88000000001"
"n_bit": "2^49 - 2^45 - 2^43 + 2^39 + 1"
"n_fac": "2^39 * 3^3 * 5 * 7 + 1"
"nd": 519519244124159
"nd_hex": "0x1d87fffffffff"
"nd_bit": "2^49 - 2^45 - 2^43 + 2^39 - 1"
"r2": 342715447369045
"r2_hex": "0x137b2a87fdd55"
"r2_bit": "2^48 + 2^46 - 2^43 - 2^38 - 2^36 + 2^33 + 2^31 + 2^29 + 2^27 + 2^23 - 2^13 - 2^10 + 2^8 + 2^6 + 2^4 + 2^2 + 1"
"znprimroot": 26
- "n": 560750930165761
"n_hex": "0x1fe0000000001"
"n_bit": "2^49 - 2^41 + 1"
"n_fac": "2^41 * 3 * 5 * 17 + 1"
"nd": 560750930165759
"nd_hex": "0x1fdffffffffff"
"nd_bit": "2^49 - 2^41 - 1"
"r2": 560742306545152
"r2_hex": "0x1fdfdfdfdfe00"
"r2_bit": "2^49 - 2^41 - 2^33 - 2^25 - 2^17 - 2^9"
"znprimroot": 14
- "n": 505775348776961
"n_hex": "0x1cc0000000001"
"n_bit": "2^49 - 2^46 + 2^44 - 2^42 + 1"
"n_fac": "2^42 * 5 * 23 + 1"
"nd": 505775348776959
"nd_hex": "0x1cbffffffffff"
"nd_bit": "2^49 - 2^46 + 2^44 - 2^42 - 1"
"r2": 191448876822494
"r2_hex": "0xae1f2a4bafde"
"r2_bit": "2^48 - 2^46 - 2^44 - 2^41 + 2^37 - 2^32 + 2^29 + 2^27 + 2^25 + 2^22 + 2^20 - 2^18 - 2^14 - 2^12 - 2^5 - 2"
"znprimroot": 3
- "n": 474989023199233
"n_hex": "0x1b00000000001"
"n_bit": "2^49 - 2^46 - 2^44 + 1"
"n_fac": "2^44 * 3^3 + 1"
"nd": 474989023199231
"nd_hex": "0x1afffffffffff"
"nd_bit": "2^49 - 2^46 - 2^44 - 1"
"r2": 300370287647253
"r2_hex": "0x1112f684bda15"
"r2_bit": "2^48 + 2^44 + 2^40 + 2^38 - 2^36 - 2^31 - 2^29 + 2^27 + 2^22 + 2^20 - 2^18 - 2^13 - 2^11 + 2^9 + 2^4 + 2^2 + 1"
"znprimroot": 5
- "n": 263882790666241
"n_hex": "0xf00000000001"
"n_bit": "2^48 - 2^44 + 1"
"n_fac": "2^44 * 3 * 5 + 1"
"nd": 263882790666239
"nd_hex": "0xefffffffffff"
"nd_bit": "2^48 - 2^44 - 1"
"r2": 188822796876737
"r2_hex": "0xabbbbbbbbbc1"
"r2_bit": "2^48 - 2^46 - 2^44 - 2^42 - 2^38 - 2^34 - 2^30 - 2^26 - 2^22 - 2^18 - 2^14 - 2^10 - 2^6 + 1"
"znprimroot": 7
- "r": 50
"primes":
- "n": 1125899906842597
"n_hex": "0x3ffffffffffe5"
"n_bit": "2^50 - 2^5 + 2^2 + 1"
"n_fac": "2^2 * 3 * 6637 * 14136656959c + 1"
"nd": 458699962046995
"nd_hex": "0x1a12f684bda13"
"nd_bit": "2^49 - 2^47 + 2^45 + 2^40 + 2^38 - 2^36 - 2^31 - 2^29 + 2^27 + 2^22 + 2^20 - 2^18 - 2^13 - 2^11 + 2^9 + 2^4 + 2^2 - 1"
"r2": 729
"r2_hex": "0x2d9"
"r2_bit": "2^10 - 2^8 - 2^5 - 2^3 + 1"
"znprimroot": 6
- "n": 1125899906841973
"n_hex": "0x3fffffffffd75"
"n_bit": "2^50 - 2^9 - 2^7 - 2^4 + 2^2 + 1"
"n_fac": "2^2 * 3^2 * 19 * 31 * 59 * 373 * 2412799 + 1"
"nd": 480799038559523
"nd_hex": "0x1b548bfe6d523"
"nd_bit": "2^49 - 2^46 - 2^44 + 2^42 + 2^40 + 2^38 + 2^35 + 2^32 - 2^30 - 2^21 + 2^19 - 2^16 - 2^14 + 2^12 + 2^10 + 2^8 + 2^5 + 2^2 - 1"
"r2": 423801
"r2_hex": "0x67779"
"r2_bit": "2^19 - 2^17 + 2^15 - 2^11 - 2^7 - 2^3 + 1"
"znprimroot": 2
- "n": 1125899906841901
"n_hex": "0x3fffffffffd2d"
"n_bit": "2^50 - 2^10 + 2^8 + 2^6 - 2^4 - 2^2 + 1"
"n_fac": "2^2 * 3^4 * 5^2 * 138999988499c + 1"
"nd": 844035614811483
"nd_hex": "0x2ffa55affa55b"
"nd_bit": "2^50 - 2^48 - 2^39 + 2^37 + 2^35 - 2^33 - 2^31 - 2^29 - 2^26 - 2^24 - 2^15 + 2^13 + 2^11 - 2^9 - 2^7 - 2^5 - 2^2 - 1"
"r2": 522729
"r2_hex": "0x7f9e9"
"r2_bit": "2^19 - 2^11 + 2^9 - 2^5 + 2^3 + 1"
"znprimroot": 2
- "n": 1125899906840101
"n_hex": "0x3fffffffff625"
"n_bit": "2^50 - 2^11 - 2^9 + 2^5 + 2^2 + 1"
"n_fac": "2^2 * 3^2 * 5^2 * 7 * 101 * 103 * 17179109 + 1"
"nd": 126736255863379
"nd_hex": "0x73441582ca53"
"nd_bit": "2^47 - 2^44 + 2^42 - 2^40 + 2^38 + 2^34 + 2^29 - 2^27 - 2^25 - 2^23 + 2^18 - 2^16 - 2^14 + 2^11 + 2^9 + 2^6 + 2^4 + 2^2 - 1"
"r2": 6365529
"r2_hex": "0x612159"
"r2_bit": "2^23 - 2^21 + 2^16 + 2^13 + 2^9 - 2^7 - 2^5 - 2^3 + 1"
"znprimroot": 6
- "n": 1125899906842553
"n_hex": "0x3ffffffffffb9"
"n_bit": "2^50 - 2^6 - 2^3 + 1"
"n_fac": "2^3 * 17 * 8278675785607 + 1"
"nd": 364728138836343
"nd_hex": "0x14bb7e327a977"
"nd_bit": "2^48 + 2^46 + 2^44 - 2^42 - 2^38 - 2^35 - 2^29 + 2^26 - 2^24 + 2^21 + 2^19 - 2^15 + 2^13 + 2^11 + 2^9 - 2^7 - 2^3 - 1"
"r2": 5041
"r2_hex": "0x13b1"
"r2_bit": "2^12 + 2^10 - 2^6 - 2^4 + 1"
"znprimroot": 3
- "n": 1125899906842201
"n_hex": "0x3fffffffffe59"
"n_bit": "2^50 - 2^9 + 2^7 - 2^5 - 2^3 + 1"
"n_fac": "2^3 * 3 * 5^2 * 7 * 19 * 139 * 101503751 + 1"
"nd": 867714821821975
"nd_hex": "0x3152e99b89617"
"nd_bit": "2^50 - 2^48 + 2^44 + 2^42 + 2^40 + 2^38 - 2^36 - 2^33 + 2^31 + 2^29 - 2^27 + 2^25 - 2^22 - 2^19 + 2^15 + 2^13 - 2^11 - 2^9 + 2^5 - 2^3 - 1"
"r2": 178929
"r2_hex": "0x2baf1"
"r2_bit": "2^18 - 2^16 - 2^14 - 2^10 - 2^8 - 2^4 + 1"
"znprimroot": 22
- "n": 1125899906842273
"n_hex": "0x3fffffffffea1"
"n_bit": "2^50 - 2^9 + 2^7 + 2^5 + 1"
"n_fac": "2^5 * 3 * 263 * 44593627489 + 1"
"nd": 468323038173855
"nd_hex": "0x1a9eff4549a9f"
"nd_bit": "2^49 - 2^47 + 2^45 + 2^43 + 2^41 - 2^36 - 2^28 + 2^26 + 2^22 + 2^20 + 2^18 + 2^15 + 2^13 - 2^11 + 2^9 + 2^7 + 2^5 - 1"
"r2": 123201
"r2_hex": "0x1e141"
"r2_bit": "2^17 - 2^13 + 2^8 + 2^6 + 1"
"znprimroot": 5
- "n": 1125899906838241
"n_hex": "0x3ffffffffeee1"
"n_bit": "2^50 - 2^12 - 2^8 - 2^5 + 1"
"n_fac": "2^5 * 3 * 5 * 29 * 43 * 1881014279 + 1"
"nd": 811993977989855
"nd_hex": "0x2e281149e2adf"
"nd_bit": "2^50 - 2^48 - 2^45 + 2^41 + 2^39 + 2^32 + 2^28 + 2^26 + 2^23 + 2^21 - 2^17 + 2^14 - 2^12 - 2^10 - 2^8 - 2^5 - 1"
"r2": 19210689
"r2_hex": "0x12521c1"
"r2_bit": "2^24 + 2^21 + 2^18 + 2^16 + 2^13 + 2^9 - 2^6 + 1"
"znprimroot": 7
- "n": 1125899906836321
"n_hex": "0x3ffffffffe761"
"n_bit": "2^50 - 2^13 + 2^11 - 2^7 - 2^5 + 1"
"n_fac": "2^5 * 3^2 * 5 * 7 * 11 * 1171 * 8671409 + 1"
"nd": 483192011424607
"nd_hex": "0x1b775e833035f"
"nd_bit": "2^49 - 2^46 - 2^43 - 2^39 - 2^35 - 2^33 - 2^29 + 2^27 + 2^22 - 2^20 + 2^18 - 2^16 + 2^10 - 2^7 - 2^5 - 1"
"r2": 39727809
"r2_hex": "0x25e32c1"
"r2_bit": "2^25 + 2^23 - 2^21 - 2^17 + 2^14 - 2^12 + 2^10 - 2^8 - 2^6 + 1"
"znprimroot": 23
- "n": 1125899906842177
"n_hex": "0x3fffffffffe41"
"n_bit": "2^50 - 2^9 + 2^6 + 1"
"n_fac": "2^6 * 3 * 419 * 13995374737 + 1"
"nd": 662442227068479
"nd_hex": "0x25a7cd9a0ee3f"
"nd_bit": "2^49 + 2^47 - 2^45 - 2^43 + 2^41 + 2^39 - 2^34 + 2^32 - 2^29 - 2^27 + 2^25 - 2^23 + 2^21 + 2^16 - 2^12 - 2^9 + 2^6 - 1"
"r2": 199809
"r2_hex": "0x30c81"
"r2_bit": "2^18 - 2^16 + 2^12 - 2^10 + 2^7 + 1"
"znprimroot": 5
- "n": 1125899906839489
"n_hex": "0x3fffffffff3c1"
"n_bit": "2^50 - 2^12 + 2^10 - 2^6 + 1"
"n_fac": "2^6 * 3^2 * 11 * 177698848933c + 1"
"nd": 935915520648127
"nd_hex": "0x35335d025e3bf"
"nd_bit": "2^50 - 2^48 + 2^46 + 2^44 + 2^42 - 2^40 + 2^38 - 2^35 - 2^33 - 2^30 + 2^28 + 2^21 + 2^19 - 2^17 - 2^13 + 2^10 - 2^6 - 1"
"r2": 9828225
"r2_hex": "0x95f781"
"r2_bit": "2^23 + 2^21 - 2^19 - 2^17 - 2^11 - 2^7 + 1"
"znprimroot": 13
- "n": 1125899906840833
"n_hex": "0x3fffffffff901"
"n_bit": "2^50 - 2^11 + 2^8 + 1"
"n_fac": "2^8 * 3 * 19 * 77158710721 + 1"
"nd": 369013537306879
"nd_hex": "0x14f9da8cef8ff"
"nd_bit": "2^48 + 2^46 + 2^44 - 2^39 + 2^37 - 2^33 - 2^31 + 2^29 + 2^27 + 2^24 - 2^22 + 2^20 - 2^16 - 2^11 + 2^8 - 1"
"r2": 3207681
"r2_hex": "0x30f201"
"r2_bit": "2^22 - 2^20 + 2^16 - 2^12 + 2^9 + 1"
"znprimroot": 5
- "n": 1125899906826241
"n_hex": "0x3ffffffffc001"
"n_bit": "2^50 - 2^14 + 1"
"n_fac": "2^14 * 3^3 * 5 * 7 * 13 * 19 * 37 * 73 * 109 + 1"
"nd": 1121501591879679
"nd_hex": "0x3fbffefffbfff"
"nd_bit": "2^50 - 2^42 - 2^28 - 2^14 - 1"
"r2": 268402689
"r2_hex": "0xfff8001"
"r2_bit": "2^28 - 2^15 + 1"
"znprimroot": 22
- "n": 1125899904679937
"n_hex": "0x3ffffffdf0001"
"n_bit": "2^50 - 2^21 - 2^16 + 1"
"n_fac": "2^16 * 17179869151c + 1"
"nd": 839747708583935
"nd_hex": "0x2fbbeffdeffff"
"nd_bit": "2^50 - 2^48 - 2^42 - 2^38 - 2^32 - 2^21 - 2^16 - 1"
"r2": 4677215059969
"r2_hex": "0x440ffbe0001"
"r2_bit": "2^42 + 2^38 + 2^32 - 2^22 - 2^17 + 1"
"znprimroot": 3
- "n": 1125899901665281
"n_hex": "0x3ffffffb10001"
"n_bit": "2^50 - 2^22 - 2^20 + 2^16 + 1"
"n_fac": "2^16 * 3^2 * 5 * 7 * 54539267 + 1"
"nd": 254670080638975
"nd_hex": "0xe79effb0ffff"
"nd_bit": "2^48 - 2^45 + 2^43 - 2^39 + 2^37 - 2^32 - 2^22 - 2^20 + 2^16 - 1"
"r2": 26804880539649
"r2_hex": "0x1860ff620001"
"r2_bit": "2^45 - 2^43 + 2^39 - 2^37 + 2^32 - 2^23 - 2^21 + 2^17 + 1"
"znprimroot": 17
- "n": 1125899903827969
"n_hex": "0x3ffffffd20001"
"n_bit": "2^50 - 2^22 + 2^20 + 2^17 + 1"
"n_fac": "2^17 * 3 * 103 * 193 * 144037 + 1"
"nd": 1116811753029631
"nd_hex": "0x3f7bbffd1ffff"
"nd_bit": "2^50 - 2^43 - 2^38 - 2^34 - 2^22 + 2^20 + 2^17 - 1"
"r2": 9088144769025
"r2_hex": "0x843ffa40001"
"r2_bit": "2^43 + 2^38 + 2^34 - 2^23 + 2^21 + 2^18 + 1"
"znprimroot": 11
- "n": 1125899885740033
"n_hex": "0x3fffffebe0001"
"n_bit": "2^50 - 2^24 - 2^22 - 2^17 + 1"
"n_fac": "2^17 * 3^2 * 13 * 43^2 * 59 * 673 + 1"
"nd": 680580496621567
"nd_hex": "0x26afbfebdffff"
"nd_bit": "2^49 + 2^47 - 2^44 - 2^42 - 2^40 - 2^34 - 2^24 - 2^22 - 2^17 - 1"
"r2": 445319346913281
"r2_hex": "0x19503fd7c0001"
"r2_bit": "2^49 - 2^47 + 2^44 + 2^42 + 2^40 + 2^34 - 2^25 - 2^23 - 2^18 + 1"
"znprimroot": 7
- "n": 1125899882987521
"n_hex": "0x3fffffe940001"
"n_bit": "2^50 - 2^25 + 2^23 + 2^20 + 2^18 + 1"
"n_fac": "2^18 * 3 * 5 * 286331147 + 1"
"nd": 556833896136703
"nd_hex": "0x1fa6ffe93ffff"
"nd_bit": "2^49 - 2^43 + 2^41 + 2^39 - 2^36 - 2^25 + 2^23 + 2^20 + 2^18 - 1"
"r2": 569065939140609
"r2_hex": "0x2058ffd280001"
"r2_bit": "2^49 + 2^43 - 2^41 - 2^39 + 2^36 - 2^26 + 2^24 + 2^21 + 2^19 + 1"
"znprimroot": 35
- "n": 1125899870404609
"n_hex": "0x3fffffdd40001"
"n_bit": "2^50 - 2^25 - 2^22 + 2^20 + 2^18 + 1"
"n_fac": "2^18 * 3^2 * 13 * 19 * 1932059 + 1"
"nd": 924070767230975
"nd_hex": "0x3486ffdd3ffff"
"nd_bit": "2^50 - 2^48 + 2^46 + 2^43 + 2^39 - 2^36 - 2^25 - 2^22 + 2^20 + 2^18 - 1"
"r2": 201829066735616
"r2_hex": "0xb78ffdd40000"
"r2_bit": "2^48 - 2^46 - 2^43 - 2^39 + 2^36 - 2^25 - 2^22 + 2^20 + 2^18"
"znprimroot": 21
- "n": 1125899851530241
"n_hex": "0x3fffffcb40001"
"n_bit": "2^50 - 2^26 + 2^24 - 2^22 - 2^20 + 2^18 + 1"
"n_fac": "2^18 * 3^4 * 5 * 821 * 12917 + 1"
"nd": 318239841452031
"nd_hex": "0x1216ffcb3ffff"
"nd_bit": "2^48 + 2^45 + 2^41 - 2^39 - 2^36 - 2^26 + 2^24 - 2^22 - 2^20 + 2^18 - 1"
"r2": 807660010078207
"r2_hex": "0x2de8fffffffff"
"r2_bit": "2^50 - 2^48 - 2^45 - 2^41 + 2^39 + 2^36 - 1"
"znprimroot": 11
- "n": 1125899902124033
"n_hex": "0x3ffffffb80001"
"n_bit": "2^50 - 2^22 - 2^19 + 1"
"n_fac": "2^19 * 7 * 17 * 18046081 + 1"
"nd": 1103634791661567
"nd_hex": "0x3ebbfffb7ffff"
"nd_bit": "2^50 - 2^44 - 2^42 - 2^38 - 2^22 - 2^19 - 1"
"r2": 22265101025281
"r2_hex": "0x143fff700001"
"r2_bit": "2^44 + 2^42 + 2^38 - 2^23 - 2^20 + 1"
"znprimroot": 3
- "n": 1125899784683521
"n_hex": "0x3fffff8b80001"
"n_bit": "2^50 - 2^27 + 2^24 - 2^22 - 2^19 + 1"
"n_fac": "2^19 * 3 * 5 * 7 * 11 * 53 * 35081 + 1"
"nd": 839751883554815
"nd_hex": "0x2fbbff8b7ffff"
"nd_bit": "2^50 - 2^48 - 2^42 - 2^38 - 2^27 + 2^24 - 2^22 - 2^19 - 1"
"r2": 286149244878836
"r2_hex": "0x104405017fff4"
"r2_bit": "2^48 + 2^42 + 2^38 + 2^30 + 2^28 + 2^21 - 2^19 - 2^4 + 2^2"
"znprimroot": 17
- "n": 1125899674583041
"n_hex": "0x3fffff2280001"
"n_bit": "2^50 - 2^28 + 2^25 + 2^21 + 2^19 + 1"
"n_fac": "2^19 * 3^3 * 5 * 7 * 23 * 29 * 3407 + 1"
"nd": 98680936333311
"nd_hex": "0x59bff227ffff"
"nd_bit": "2^47 - 2^45 - 2^43 + 2^41 - 2^38 - 2^28 + 2^25 + 2^21 + 2^19 - 1"
"r2": 1027229189930962
"r2_hex": "0x3a6426ef7ffd2"
"r2_bit": "2^50 - 2^47 + 2^45 + 2^43 - 2^41 + 2^38 + 2^33 + 2^31 - 2^28 - 2^24 - 2^19 - 2^6 + 2^4 + 2"
"znprimroot": 13
- "n": 1125899865948161
"n_hex": "0x3fffffd900001"
"n_bit": "2^50 - 2^25 - 2^23 + 2^20 + 1"
"n_fac": "2^20 * 5 * 214748357 + 1"
"nd": 579442586943487
"nd_hex": "0x20efffd8fffff"
"nd_bit": "2^49 + 2^44 - 2^40 - 2^25 - 2^23 + 2^20 - 1"
"r2": 546457238110208
"r2_hex": "0x1f0fffd900000"
"r2_bit": "2^49 - 2^44 + 2^40 - 2^25 - 2^23 + 2^20"
"znprimroot": 3
- "n": 1125899861753857
"n_hex": "0x3fffffd500001"
"n_bit": "2^50 - 2^26 + 2^24 + 2^22 + 2^20 + 1"
"n_fac": "2^20 * 3 * 7 * 631 * 81031 + 1"
"nd": 218802768838655
"nd_hex": "0xc6fffd4fffff"
"nd_bit": "2^48 - 2^46 + 2^43 - 2^40 - 2^26 + 2^24 + 2^22 + 2^20 - 1"
"r2": 907097047826432
"r2_hex": "0x338fffd500000"
"r2_bit": "2^50 - 2^48 + 2^46 - 2^43 + 2^40 - 2^26 + 2^24 + 2^22 + 2^20"
"znprimroot": 5
- "n": 1125899792547841
"n_hex": "0x3fffff9300001"
"n_bit": "2^50 - 2^27 + 2^24 + 2^22 - 2^20 + 1"
"n_fac": "2^20 * 3^2 * 5 * 23860927 + 1"
"nd": 447501118210047
"nd_hex": "0x196fff92fffff"
"nd_bit": "2^49 - 2^47 + 2^45 - 2^43 - 2^40 - 2^27 + 2^24 + 2^22 - 2^20 - 1"
"r2": 678399702990838
"r2_hex": "0x269003d4ffff6"
"r2_bit": "2^49 + 2^47 - 2^45 + 2^43 + 2^40 + 2^30 - 2^26 + 2^24 + 2^22 + 2^20 - 2^3 - 2"
"znprimroot": 7
- "n": 1125899069030401
"n_hex": "0x3ffffce100001"
"n_bit": "2^50 - 2^30 + 2^28 - 2^25 + 2^20 + 1"
"n_fac": "2^20 * 3 * 5^2 * 7 * 193 * 10597 + 1"
"nd": 632218348158975
"nd_hex": "0x23effce0fffff"
"nd_bit": "2^49 + 2^46 - 2^40 - 2^30 + 2^28 - 2^25 + 2^20 - 1"
"r2": 494201002261906
"r2_hex": "0x1c179232ffd92"
"r2_bit": "2^49 - 2^46 + 2^41 - 2^39 - 2^35 + 2^32 + 2^29 + 2^26 - 2^24 + 2^22 - 2^20 - 2^9 - 2^7 + 2^4 + 2"
"znprimroot": 11
- "n": 1125898188226561
"n_hex": "0x3ffff99900001"
"n_bit": "2^50 - 2^31 + 2^29 - 2^27 + 2^25 - 2^23 + 2^20 + 1"
"n_fac": "2^20 * 3^3 * 5 * 7^2 * 37 * 41 * 107 + 1"
"nd": 720178397577215
"nd_hex": "0x28eff998fffff"
"nd_bit": "2^49 + 2^47 + 2^44 - 2^40 - 2^31 + 2^29 - 2^27 + 2^25 - 2^23 + 2^20 - 1"
"r2": 410224283350466
"r2_hex": "0x17518c8aff5c2"
"r2_bit": "2^49 - 2^47 - 2^44 + 2^42 + 2^40 + 2^37 - 2^35 + 2^32 - 2^30 + 2^27 + 2^24 - 2^22 - 2^20 - 2^11 - 2^9 - 2^6 + 2"
"znprimroot": 33
- "n": 1125899846025217
"n_hex": "0x3fffffc600001"
"n_bit": "2^50 - 2^26 + 2^23 - 2^21 + 1"
"n_fac": "2^21 * 3 * 317 * 564533 + 1"
"nd": 804842450714623
"nd_hex": "0x2dbfffc5fffff"
"nd_bit": "2^50 - 2^48 - 2^45 - 2^42 - 2^26 + 2^23 - 2^21 - 1"
"r2": 321057456127998
"r2_hex": "0x12400039ffffe"
"r2_bit": "2^48 + 2^45 + 2^42 + 2^26 - 2^23 + 2^21 - 2"
"znprimroot": 5
- "n": 1125899745361921
"n_hex": "0x3fffff6600001"
"n_bit": "2^50 - 2^27 - 2^25 + 2^23 - 2^21 + 1"
"n_fac": "2^21 * 3^5 * 5 * 73 * 6053 + 1"
"nd": 945579838406655
"nd_hex": "0x35bfff65fffff"
"nd_bit": "2^50 - 2^47 - 2^45 - 2^42 - 2^27 - 2^25 + 2^23 - 2^21 - 1"
"r2": 180323298050026
"r2_hex": "0xa400ca1fffea"
"r2_bit": "2^47 + 2^45 + 2^42 + 2^32 - 2^30 + 2^27 + 2^25 + 2^21 - 2^5 + 2^3 + 2"
"znprimroot": 14
- "n": 1125892573102081
"n_hex": "0x3fffe4ae00001"
"n_bit": "2^50 - 2^33 + 2^30 + 2^28 - 2^26 - 2^24 - 2^21 + 1"
"n_fac": "2^21 * 3^2 * 5 * 7 * 103 * 16547 + 1"
"nd": 488175828991999
"nd_hex": "0x1bbfe4adfffff"
"nd_bit": "2^49 - 2^46 - 2^42 - 2^33 + 2^30 + 2^28 - 2^26 - 2^24 - 2^21 - 1"
"r2": 988027528627560
"r2_hex": "0x3829b15df4568"
"r2_bit": "2^50 - 2^47 + 2^41 + 2^39 + 2^37 - 2^34 - 2^32 + 2^29 - 2^27 - 2^25 - 2^21 - 2^16 + 2^14 + 2^11 - 2^9 - 2^7 - 2^5 + 2^3"
"znprimroot": 26
- "n": 1125899726487553
"n_hex": "0x3fffff5400001"
"n_bit": "2^50 - 2^28 + 2^26 + 2^24 + 2^22 + 1"
"n_fac": "2^22 * 3^2 * 29826157 + 1"
"nd": 123145121955839
"nd_hex": "0x6ffff53fffff"
"nd_bit": "2^47 - 2^44 - 2^28 + 2^26 + 2^24 + 2^22 - 1"
"r2": 1002759293763557
"r2_hex": "0x39001177fffe5"
"r2_bit": "2^50 - 2^47 + 2^44 + 2^32 + 2^29 - 2^27 - 2^23 - 2^5 + 2^2 + 1"
"znprimroot": 5
- "n": 1125897637724161
"n_hex": "0x3ffff78c00001"
"n_bit": "2^50 - 2^31 - 2^27 + 2^24 - 2^22 + 1"
"n_fac": "2^22 * 3 * 5 * 7 * 2556523 + 1"
"nd": 967567963324415
"nd_hex": "0x36fff78bfffff"
"nd_bit": "2^50 - 2^47 - 2^44 - 2^31 - 2^27 + 2^24 - 2^22 - 1"
"r2": 168701814894116
"r2_hex": "0x996ef3bfee24"
"r2_bit": "2^47 + 2^45 - 2^43 + 2^41 - 2^39 - 2^36 - 2^32 - 2^28 + 2^26 - 2^22 - 2^12 - 2^9 + 2^5 + 2^2"
"znprimroot": 19
- "n": 1125872094412801
"n_hex": "0x3fff986400001"
"n_bit": "2^50 - 2^35 + 2^33 - 2^31 + 2^27 - 2^25 + 2^22 + 1"
"n_fac": "2^22 * 3^2 * 5^2 * 7 * 131 * 1301 + 1"
"nd": 263854978236415
"nd_hex": "0xeff9863fffff"
"nd_bit": "2^48 - 2^44 - 2^35 + 2^33 - 2^31 + 2^27 - 2^25 + 2^22 - 1"
"r2": 830192984884279
"r2_hex": "0x2f30e5df58437"
"r2_bit": "2^50 - 2^48 - 2^44 + 2^42 - 2^40 + 2^36 - 2^33 + 2^31 - 2^29 - 2^25 - 2^19 - 2^17 - 2^15 + 2^10 + 2^6 - 2^3 - 1"
"znprimroot": 11
- "n": 1125899831345153
"n_hex": "0x3fffffb800001"
"n_bit": "2^50 - 2^26 - 2^23 + 1"
"n_fac": "2^23 * 23 * 5835553 + 1"
"nd": 1055531087167487
"nd_hex": "0x3bffffb7fffff"
"nd_bit": "2^50 - 2^46 - 2^26 - 2^23 - 1"
"r2": 70368970670076
"r2_hex": "0x40000d7ffffc"
"r2_bit": "2^46 + 2^28 - 2^25 - 2^23 - 2^2"
"znprimroot": 3
- "n": 1125899462246401
"n_hex": "0x3ffffe5800001"
"n_bit": "2^50 - 2^29 + 2^27 - 2^25 - 2^23 + 1"
"n_fac": "2^23 * 3^3 * 5^2 * 198841 + 1"
"nd": 492580764647423
"nd_hex": "0x1bfffe57fffff"
"nd_bit": "2^49 - 2^46 - 2^29 + 2^27 - 2^25 - 2^23 - 1"
"r2": 633395612745554
"r2_hex": "0x24011e87fff52"
"r2_bit": "2^49 + 2^46 + 2^36 + 2^33 - 2^29 + 2^27 + 2^23 - 2^8 + 2^6 + 2^4 + 2"
"znprimroot": 7
- "n": 1125854918737921
"n_hex": "0x3fff586800001"
"n_bit": "2^50 - 2^35 - 2^33 - 2^31 + 2^27 - 2^25 + 2^23 + 1"
"n_fac": "2^23 * 3^2 * 5 * 7 * 17 * 71 * 353 + 1"
"nd": 492536221138943
"nd_hex": "0x1bff5867fffff"
"nd_bit": "2^49 - 2^46 - 2^35 - 2^33 - 2^31 + 2^27 - 2^25 + 2^23 - 1"
"r2": 442741467419087
"r2_hex": "0x192abc7e491cf"
"r2_bit": "2^49 - 2^47 + 2^44 + 2^42 - 2^40 - 2^38 - 2^36 - 2^34 - 2^30 + 2^27 - 2^21 + 2^18 + 2^15 + 2^12 + 2^9 - 2^6 + 2^4 - 1"
"znprimroot": 23
- "n": 1125897272819713
"n_hex": "0x3ffff63000001"
"n_bit": "2^50 - 2^31 - 2^29 + 2^26 - 2^24 + 1"
"n_fac": "2^24 * 3^2 * 17 * 31 * 14149 + 1"
"nd": 844422296109055
"nd_hex": "0x2ffff62ffffff"
"nd_bit": "2^50 - 2^48 - 2^31 - 2^29 + 2^26 - 2^24 - 1"
"r2": 297700557842415
"r2_hex": "0x10ec1cfffe7ef"
"r2_bit": "2^48 + 2^44 - 2^40 - 2^38 + 2^33 - 2^30 + 2^28 - 2^13 + 2^11 - 2^4 - 1"
"znprimroot": 5
- "n": 1125899437080577
"n_hex": "0x3ffffe4000001"
"n_bit": "2^50 - 2^29 + 2^26 + 1"
"n_fac": "2^26 * 3 * 19 * 294337 + 1"
"nd": 1125899437080575
"nd_hex": "0x3ffffe3ffffff"
"nd_bit": "2^50 - 2^29 + 2^26 - 1"
"r2": 91133837117
"r2_hex": "0x1537ffff3d"
"r2_bit": "2^36 + 2^34 + 2^32 + 2^30 - 2^27 - 2^8 + 2^6 - 2^2 + 1"
"znprimroot": 5
- "n": 1125815282565121
"n_hex": "0x3ffec4c000001"
"n_bit": "2^50 - 2^36 - 2^34 + 2^30 + 2^28 - 2^26 + 1"
"n_fac": "2^26 * 3^2 * 5 * 7 * 19 * 2803 + 1"
"nd": 1125815282565119
"nd_hex": "0x3ffec4bffffff"
"nd_bit": "2^50 - 2^36 - 2^34 + 2^30 + 2^28 - 2^26 - 1"
"r2": 111488754708607
"r2_hex": "0x6565ff9ef07f"
"r2_bit": "2^47 - 2^45 + 2^43 - 2^41 - 2^39 - 2^37 + 2^35 - 2^33 - 2^23 + 2^21 - 2^16 - 2^12 + 2^7 - 1"
"znprimroot": 13
- "n": 1125897625141249
"n_hex": "0x3ffff78000001"
"n_bit": "2^50 - 2^31 - 2^27 + 1"
"n_fac": "2^27 * 3 * 223 * 12539 + 1"
"nd": 1125897625141247
"nd_hex": "0x3ffff77ffffff"
"nd_bit": "2^50 - 2^31 - 2^27 - 1"
"r2": 10546023755249
"r2_hex": "0x9976fffedf1"
"r2_bit": "2^43 + 2^41 - 2^39 + 2^37 - 2^35 - 2^31 - 2^28 - 2^12 - 2^9 - 2^4 + 1"
"znprimroot": 29
- "n": 1125896819834881
"n_hex": "0x3ffff48000001"
"n_bit": "2^50 - 2^32 + 2^30 + 2^27 + 1"
"n_fac": "2^27 * 3^2 * 5 * 131 * 1423 + 1"
"nd": 1125896819834879
"nd_hex": "0x3ffff47ffffff"
"nd_bit": "2^50 - 2^32 + 2^30 + 2^27 - 1"
"r2": 26122259521265
"r2_hex": "0x17c20fffdef1"
"r2_bit": "2^45 - 2^43 - 2^38 + 2^33 + 2^28 - 2^13 - 2^8 - 2^4 + 1"
"znprimroot": 14
- "n": 1125892793303041
"n_hex": "0x3fffe58000001"
"n_bit": "2^50 - 2^33 + 2^31 - 2^29 - 2^27 + 1"
"n_fac": "2^27 * 3 * 5 * 7^2 * 101 * 113 + 1"
"nd": 1125892793303039
"nd_hex": "0x3fffe57ffffff"
"nd_bit": "2^50 - 2^33 + 2^31 - 2^29 - 2^27 - 1"
"r2": 319696695939185
"r2_hex": "0x122c32fff5071"
"r2_bit": "2^48 + 2^45 + 2^42 - 2^40 - 2^38 + 2^34 - 2^32 + 2^30 - 2^28 - 2^16 + 2^14 + 2^12 + 2^7 - 2^4 + 1"
"znprimroot": 17
- "n": 1125751864688641
"n_hex": "0x3ffdd88000001"
"n_bit": "2^50 - 2^37 - 2^33 - 2^31 + 2^27 + 1"
"n_fac": "2^27 * 3^2 * 5 * 7 * 26627 + 1"
"nd": 1125751864688639
"nd_hex": "0x3ffdd87ffffff"
"nd_bit": "2^50 - 2^37 - 2^33 - 2^31 + 2^27 - 1"
"r2": 951352819118066
"r2_hex": "0x3614016d6eff2"
"r2_bit": "2^50 - 2^47 - 2^45 + 2^40 + 2^38 + 2^29 - 2^27 - 2^24 - 2^21 - 2^19 - 2^16 - 2^12 - 2^4 + 2"
"znprimroot": 13
- "n": 1125872257990657
"n_hex": "0x3fff990000001"
"n_bit": "2^50 - 2^35 + 2^33 - 2^31 + 2^28 + 1"
"n_fac": "2^28 * 3 * 11 * 149 * 853 + 1"
"nd": 1125872257990655
"nd_hex": "0x3fff98fffffff"
"nd_bit": "2^50 - 2^35 + 2^33 - 2^31 + 2^28 - 1"
"r2": 758895487591345
"r2_hex": "0x2b2361ff5a3b1"
"r2_bit": "2^50 - 2^48 - 2^46 - 2^44 + 2^41 + 2^38 - 2^35 - 2^33 + 2^29 - 2^19 - 2^17 - 2^15 + 2^13 + 2^10 - 2^6 - 2^4 + 1"
"znprimroot": 5
- "n": 1125871452684289
"n_hex": "0x3fff960000001"
"n_bit": "2^50 - 2^35 + 2^33 - 2^31 - 2^29 + 1"
"n_fac": "2^29 * 3^2 * 389 * 599 + 1"
"nd": 1125871452684287
"nd_hex": "0x3fff95fffffff"
"nd_bit": "2^50 - 2^35 + 2^33 - 2^31 - 2^29 - 1"
"r2": 195756018697967
"r2_hex": "0xb209fff506ef"
"r2_bit": "2^48 - 2^46 - 2^44 + 2^41 + 2^35 + 2^33 - 2^20 + 2^18 + 2^16 + 2^11 - 2^8 - 2^4 - 1"
"znprimroot": 7
- "n": 1125845146009601
"n_hex": "0x3fff340000001"
"n_bit": "2^50 - 2^36 + 2^34 - 2^32 + 2^30 + 1"
"n_fac": "2^30 * 5^2 * 41941 + 1"
"nd": 1125845146009599
"nd_hex": "0x3fff33fffffff"
"nd_bit": "2^50 - 2^36 + 2^34 - 2^32 + 2^30 - 1"
"r2": 617183576546176
"r2_hex": "0x231533fd75b80"
"r2_bit": "2^49 + 2^46 - 2^44 + 2^40 + 2^38 + 2^36 + 2^34 - 2^32 + 2^30 - 2^21 - 2^19 - 2^15 - 2^13 - 2^10 - 2^7"
"znprimroot": 3
- "n": 1125844072267777
"n_hex": "0x3fff300000001"
"n_bit": "2^50 - 2^36 + 2^34 - 2^32 + 1"
"n_fac": "2^32 * 3 * 23 * 29 * 131 + 1"
"nd": 1125844072267775
"nd_hex": "0x3fff2ffffffff"
"nd_bit": "2^50 - 2^36 + 2^34 - 2^32 - 1"
"r2": 359381385723768
"r2_hex": "0x146daffd5bf78"
"r2_bit": "2^48 + 2^46 + 2^43 - 2^40 - 2^37 - 2^34 - 2^32 - 2^21 - 2^19 - 2^17 - 2^14 - 2^7 - 2^3"
"znprimroot": 5
- "n": 1125818302464001
"n_hex": "0x3ffed00000001"
"n_bit": "2^50 - 2^36 - 2^34 + 2^32 + 1"
"n_fac": "2^32 * 3^2 * 5^3 * 233 + 1"
"nd": 1125818302463999
"nd_hex": "0x3ffecffffffff"
"nd_bit": "2^50 - 2^36 - 2^34 + 2^32 - 1"
"r2": 808819645333077
"r2_hex": "0x2df9dffa5be55"
"r2_bit": "2^50 - 2^48 - 2^45 - 2^39 + 2^37 - 2^33 - 2^23 + 2^21 + 2^19 - 2^17 - 2^14 - 2^9 + 2^6 + 2^4 + 2^2 + 1"
"znprimroot": 7
- "n": 1125625028935681
"n_hex": "0x3ffc000000001"
"n_bit": "2^50 - 2^38 + 1"
"n_fac": "2^38 * 3^2 * 5 * 7 * 13 + 1"
"nd": 1125625028935679
"nd_hex": "0x3ffbfffffffff"
"nd_bit": "2^50 - 2^38 - 1"
"r2": 549688688637
"r2_hex": "0x7ffbffbffd"
"r2_bit": "2^39 - 2^26 - 2^14 - 2^2 + 1"
"znprimroot": 11
- "n": 1114355034750977
"n_hex": "0x3f58000000001"
"n_bit": "2^50 - 2^43 - 2^41 - 2^39 + 1"
"n_fac": "2^39 * 2027 + 1"
"nd": 1114355034750975
"nd_hex": "0x3f57fffffffff"
"nd_bit": "2^50 - 2^43 - 2^41 - 2^39 - 1"
"r2": 424291881851915
"r2_hex": "0x181e426e61c0b"
"r2_bit": "2^49 - 2^47 + 2^41 - 2^37 + 2^34 + 2^29 + 2^27 - 2^24 - 2^21 + 2^19 - 2^17 + 2^13 - 2^10 + 2^4 - 2^2 - 1"
"znprimroot": 3
- "n": 1096762848706561
"n_hex": "0x3e58000000001"
"n_bit": "2^50 - 2^45 + 2^43 - 2^41 - 2^39 + 1"
"n_fac": "2^39 * 3 * 5 * 7 * 19 + 1"
"nd": 1096762848706559
"nd_hex": "0x3e57fffffffff"
"nd_bit": "2^50 - 2^45 + 2^43 - 2^41 - 2^39 - 1"
"r2": 230673130438222
"r2_hex": "0xd1cbc5ffbe4e"
"r2_bit": "2^48 - 2^46 + 2^44 + 2^41 - 2^38 + 2^36 - 2^34 - 2^30 + 2^27 - 2^25 - 2^14 - 2^9 + 2^6 + 2^4 - 2"
"znprimroot": 61
- "n": 1063777499873281
"n_hex": "0x3c78000000001"
"n_bit": "2^50 - 2^46 + 2^43 - 2^39 + 1"
"n_fac": "2^39 * 3^2 * 5 * 43 + 1"
"nd": 1063777499873279
"nd_hex": "0x3c77fffffffff"
"nd_bit": "2^50 - 2^46 + 2^43 - 2^39 - 1"
"r2": 244312051914892
"r2_hex": "0xde335511988c"
"r2_bit": "2^48 - 2^45 - 2^41 + 2^38 - 2^36 + 2^34 - 2^32 + 2^30 + 2^28 + 2^26 + 2^24 + 2^20 + 2^17 - 2^15 + 2^13 - 2^11 + 2^7 + 2^4 - 2^2"
"znprimroot": 19
- "n": 865865406873601
"n_hex": "0x3138000000001"
"n_bit": "2^50 - 2^48 + 2^44 + 2^42 - 2^39 + 1"
"n_fac": "2^39 * 3^2 * 5^2 * 7 + 1"
"nd": 865865406873599
"nd_hex": "0x3137fffffffff"
"nd_bit": "2^50 - 2^48 + 2^44 + 2^42 - 2^39 - 1"
"r2": 268803017937712
"r2_hex": "0xf47994661330"
"r2_bit": "2^48 - 2^44 + 2^42 + 2^39 - 2^35 + 2^33 - 2^31 + 2^28 + 2^26 + 2^23 - 2^21 + 2^19 - 2^17 + 2^12 + 2^10 - 2^8 + 2^6 - 2^4"
"znprimroot": 31
- "n": 1072023837081601
"n_hex": "0x3cf0000000001"
"n_bit": "2^50 - 2^46 + 2^44 - 2^40 + 1"
"n_fac": "2^40 * 3 * 5^2 * 13 + 1"
"nd": 1072023837081599
"nd_hex": "0x3ceffffffffff"
"nd_bit": "2^50 - 2^46 + 2^44 - 2^40 - 1"
"r2": 962663591322417
"r2_hex": "0x36b8995662331"
"r2_bit": "2^50 - 2^47 - 2^44 - 2^42 - 2^39 + 2^35 + 2^33 - 2^31 + 2^29 - 2^27 - 2^25 - 2^23 - 2^21 + 2^19 - 2^17 + 2^13 + 2^10 - 2^8 + 2^6 - 2^4 + 1"
"znprimroot": 11
- "n": 940082441748481
"n_hex": "0x3570000000001"
"n_bit": "2^50 - 2^47 - 2^45 - 2^43 - 2^40 + 1"
"n_fac": "2^40 * 3^2 * 5 * 19 + 1"
"nd": 940082441748479
"nd_hex": "0x356ffffffffff"
"nd_bit": "2^50 - 2^47 - 2^45 - 2^43 - 2^40 - 1"
"r2": 38037958407003
"r2_hex": "0x229866ffb35b"
"r2_bit": "2^45 + 2^41 + 2^39 + 2^37 - 2^35 + 2^31 - 2^29 + 2^27 - 2^24 - 2^14 - 2^12 + 2^10 - 2^7 - 2^5 - 2^2 - 1"
"znprimroot": 7
- "n": 1022545813831681
"n_hex": "0x3a20000000001"
"n_bit": "2^50 - 2^47 + 2^45 + 2^41 + 1"
"n_fac": "2^41 * 3 * 5 * 31 + 1"
"nd": 1022545813831679
"nd_hex": "0x3a1ffffffffff"
"nd_bit": "2^50 - 2^47 + 2^45 + 2^41 - 1"
"r2": 295217689787290
"r2_hex": "0x10c7fb987fb9a"
"r2_bit": "2^48 + 2^44 - 2^42 + 2^39 - 2^30 - 2^27 + 2^25 - 2^23 + 2^19 - 2^10 - 2^7 + 2^5 - 2^3 + 2"
"znprimroot": 11
- "n": 659706976665601
"n_hex": "0x2580000000001"
"n_bit": "2^49 + 2^47 - 2^45 - 2^43 + 1"
"n_fac": "2^43 * 3 * 5^2 + 1"
"nd": 659706976665599
"nd_hex": "0x257ffffffffff"
"nd_bit": "2^49 + 2^47 - 2^45 - 2^43 - 1"
"r2": 471001461029168
"r2_hex": "0x1ac5f92c5f930"
"r2_bit": "2^49 - 2^46 - 2^44 - 2^42 + 2^39 - 2^37 - 2^31 + 2^28 + 2^26 - 2^24 - 2^22 + 2^19 - 2^17 - 2^11 + 2^8 + 2^6 - 2^4"
"znprimroot": 11
- "n": 1108307720798209
"n_hex": "0x3f00000000001"
"n_bit": "2^50 - 2^44 + 1"
"n_fac": "2^44 * 3^2 * 7 + 1"
"nd": 1108307720798207
"nd_hex": "0x3efffffffffff"
"nd_bit": "2^50 - 2^44 - 1"
"r2": 34905131040509
"r2_hex": "0x1fbefbefbefd"
"r2_bit": "2^45 - 2^38 - 2^32 - 2^26 - 2^20 - 2^14 - 2^8 - 2^2 + 1"
"znprimroot": 11
- "n": 263882790666241
"n_hex": "0xf00000000001"
"n_bit": "2^48 - 2^44 + 1"
"n_fac": "2^44 * 3 * 5 + 1"
"nd": 263882790666239
"nd_hex": "0xefffffffffff"
"nd_bit": "2^48 - 2^44 - 1"
"r2": 227525606174466
"r2_hex": "0xceeeeeeeef02"
"r2_bit": "2^48 - 2^46 + 2^44 - 2^40 - 2^36 - 2^32 - 2^28 - 2^24 - 2^20 - 2^16 - 2^12 - 2^8 + 2"
"znprimroot": 7
- "r": 51
"primes":
- "n": 2251799813685119
"n_hex": "0x7ffffffffff7f"
"n_bit": "2^51 - 2^7 - 1"
"n_fac": "2 * 701 * 1531 * 1049075089 + 1"
"nd": 1693213813391233
"nd_hex": "0x603f80fe03f81"
"nd_bit": "2^51 - 2^49 + 2^42 - 2^35 + 2^28 - 2^21 + 2^14 - 2^7 + 1"
"r2": 16641
"r2_hex": "0x4101"
"r2_bit": "2^14 + 2^8 + 1"
"znprimroot": 11
- "n": 2251799813683351
"n_hex": "0x7fffffffff897"
"n_bit": "2^51 - 2^11 + 2^7 + 2^5 - 2^3 - 1"
"n_fac": "2 * 3^2 * 5^2 * 7 * 714857083709c + 1"
"nd": 1835151561390297
"nd_hex": "0x6850f84ecf8d9"
"nd_bit": "2^51 - 2^49 + 2^47 + 2^42 + 2^40 + 2^36 - 2^31 + 2^26 + 2^24 - 2^20 - 2^18 + 2^16 - 2^11 + 2^8 - 2^5 - 2^3 + 1"
"r2": 3598609
"r2_hex": "0x36e911"
"r2_bit": "2^22 - 2^19 - 2^16 - 2^13 + 2^11 + 2^8 + 2^4 + 1"
"znprimroot": 6
- "n": 2251799813685109
"n_hex": "0x7ffffffffff75"
"n_bit": "2^51 - 2^7 - 2^4 + 2^2 + 1"
"n_fac": "2^2 * 3 * 433 * 433371788623 + 1"
"nd": 2089799827089187
"nd_hex": "0x76ca970586723"
"nd_bit": "2^51 - 2^47 - 2^44 - 2^42 + 2^39 + 2^37 + 2^35 + 2^33 - 2^31 - 2^28 + 2^23 - 2^21 - 2^19 + 2^15 - 2^13 + 2^11 - 2^8 + 2^5 + 2^2 - 1"
"r2": 19321
"r2_hex": "0x4b79"
"r2_bit": "2^14 + 2^12 - 2^10 - 2^7 - 2^3 + 1"
"znprimroot": 6
- "n": 2251799813683261
"n_hex": "0x7fffffffff83d"
"n_bit": "2^51 - 2^11 + 2^6 - 2^2 + 1"
"n_fac": "2^2 * 3^3 * 5 * 19 * 53 * 2617 * 1582351 + 1"
"nd": 2107875014320363
"nd_hex": "0x77d19e575a0eb"
"nd_bit": "2^51 - 2^47 - 2^42 + 2^40 + 2^37 - 2^35 + 2^33 - 2^29 + 2^27 - 2^25 - 2^23 - 2^19 - 2^17 - 2^15 + 2^13 + 2^8 - 2^4 - 2^2 - 1"
"r2": 3948169
"r2_hex": "0x3c3e89"
"r2_bit": "2^22 - 2^18 + 2^14 - 2^9 + 2^7 + 2^3 + 1"
"znprimroot": 10
- "n": 2251799813685017
"n_hex": "0x7ffffffffff19"
"n_bit": "2^51 - 2^8 + 2^5 - 2^3 + 1"
"n_fac": "2^3 * 7 * 181 * 222158624081c + 1"
"nd": 1764397256610519
"nd_hex": "0x644b5bfb912d7"
"nd_bit": "2^51 - 2^49 + 2^46 + 2^42 + 2^40 - 2^38 - 2^35 - 2^33 - 2^30 - 2^22 - 2^19 + 2^16 + 2^12 + 2^10 - 2^8 - 2^5 - 2^3 - 1"
"r2": 53361
"r2_hex": "0xd071"
"r2_bit": "2^16 - 2^14 + 2^12 + 2^7 - 2^4 + 1"
"znprimroot": 3
- "n": 2251799813685001
"n_hex": "0x7ffffffffff09"
"n_bit": "2^51 - 2^8 + 2^3 + 1"
"n_fac": "2^3 * 3 * 5^4 * 150119987579c + 1"
"nd": 1139574804496583
"nd_hex": "0x40c6fef6ac0c7"
"nd_bit": "2^50 + 2^44 - 2^42 + 2^39 - 2^36 - 2^28 - 2^23 - 2^20 - 2^18 - 2^16 - 2^14 + 2^8 - 2^6 + 2^3 - 1"
"r2": 61009
"r2_hex": "0xee51"
"r2_bit": "2^16 - 2^12 - 2^9 + 2^6 + 2^4 + 1"
"znprimroot": 14
- "n": 2251799813684809
"n_hex": "0x7fffffffffe49"
"n_bit": "2^51 - 2^9 + 2^6 + 2^3 + 1"
"n_fac": "2^3 * 3^2 * 31274997412289c + 1"
"nd": 1749120128625671
"nd_hex": "0x636d0c3efac07"
"nd_bit": "2^51 - 2^49 + 2^46 - 2^43 - 2^40 - 2^38 + 2^36 + 2^32 - 2^30 + 2^26 - 2^20 - 2^14 - 2^12 - 2^10 + 2^3 - 1"
"r2": 192721
"r2_hex": "0x2f0d1"
"r2_bit": "2^18 - 2^16 - 2^12 + 2^8 - 2^6 + 2^4 + 1"
"znprimroot": 7
- "n": 2251799813684753
"n_hex": "0x7fffffffffe11"
"n_bit": "2^51 - 2^9 + 2^4 + 1"
"n_fac": "2^4 * 23 * 67 * 91328675117 + 1"
"nd": 2174465274629391
"nd_hex": "0x7b9aa26454d0f"
"nd_bit": "2^51 - 2^46 - 2^43 + 2^41 - 2^39 + 2^37 + 2^35 + 2^33 + 2^29 + 2^27 - 2^25 + 2^22 + 2^18 + 2^16 + 2^14 + 2^12 - 2^10 + 2^8 + 2^4 - 1"
"r2": 245025
"r2_hex": "0x3bd21"
"r2_bit": "2^18 - 2^14 - 2^10 + 2^8 + 2^5 + 1"
"znprimroot": 3
- "n": 2251799813684401
"n_hex": "0x7fffffffffcb1"
"n_bit": "2^51 - 2^10 + 2^8 - 2^6 - 2^4 + 1"
"n_fac": "2^4 * 3 * 5^2 * 7 * 19 * 139 * 101503751 + 1"
"nd": 685908325774255
"nd_hex": "0x26fd47a1b33af"
"nd_bit": "2^49 + 2^47 - 2^44 - 2^38 + 2^36 + 2^34 + 2^31 - 2^27 + 2^25 + 2^21 - 2^18 - 2^16 + 2^14 - 2^12 + 2^10 - 2^6 - 2^4 - 1"
"r2": 717409
"r2_hex": "0xaf261"
"r2_bit": "2^20 - 2^18 - 2^16 - 2^12 + 2^9 + 2^7 - 2^5 + 1"
"znprimroot": 11
- "n": 2251799813682721
"n_hex": "0x7fffffffff621"
"n_bit": "2^51 - 2^11 - 2^9 + 2^5 + 1"
"n_fac": "2^5 * 3^3 * 5 * 7 * 1021 * 72932693 + 1"
"nd": 1533576366977567
"nd_hex": "0x572c79296f21f"
"nd_bit": "2^51 - 2^49 - 2^47 - 2^44 + 2^42 - 2^40 - 2^38 + 2^35 - 2^31 + 2^28 + 2^25 + 2^23 + 2^21 - 2^19 - 2^16 - 2^12 + 2^9 + 2^5 - 1"
"r2": 6385729
"r2_hex": "0x617041"
"r2_bit": "2^23 - 2^21 + 2^17 - 2^15 - 2^12 + 2^6 + 1"
"znprimroot": 19
- "n": 2251799813511361
"n_hex": "0x7fffffffd58c1"
"n_bit": "2^51 - 2^17 - 2^15 - 2^13 - 2^11 + 2^8 - 2^6 + 1"
"n_fac": "2^6 * 3^2 * 5 * 7 * 43 * 953 * 2725699 + 1"
"nd": 2147631717730495
"nd_hex": "0x7a14279a4c8bf"
"nd_bit": "2^51 - 2^47 + 2^45 + 2^40 + 2^38 + 2^33 + 2^31 - 2^27 + 2^25 - 2^23 + 2^21 + 2^18 + 2^16 - 2^14 + 2^11 + 2^8 - 2^6 - 1"
"r2": 30236688769
"r2_hex": "0x70a3f4181"
"r2_bit": "2^35 - 2^32 + 2^27 + 2^25 + 2^22 - 2^16 + 2^14 + 2^9 - 2^7 + 1"
"znprimroot": 17
- "n": 2251799813681281
"n_hex": "0x7fffffffff081"
"n_bit": "2^51 - 2^12 + 2^7 + 1"
"n_fac": "2^7 * 3^2 * 5 * 390937467653 + 1"
"nd": 1501389086765183
"nd_hex": "0x55581632fb07f"
"nd_bit": "2^51 - 2^49 - 2^47 - 2^45 - 2^43 - 2^41 - 2^39 + 2^33 - 2^31 - 2^29 + 2^26 - 2^24 + 2^22 - 2^20 - 2^14 - 2^12 + 2^7 - 1"
"r2": 15737089
"r2_hex": "0xf02101"
"r2_bit": "2^24 - 2^20 + 2^13 + 2^8 + 1"
"znprimroot": 11
- "n": 2251799813316481
"n_hex": "0x7fffffffa5f81"
"n_bit": "2^51 - 2^19 + 2^17 + 2^15 - 2^13 - 2^7 + 1"
"n_fac": "2^7 * 3 * 5 * 7 * 167544628967c + 1"
"nd": 729036577447807
"nd_hex": "0x2970e0e3a1f7f"
"nd_bit": "2^49 + 2^47 + 2^45 - 2^43 - 2^40 + 2^36 - 2^33 + 2^28 - 2^25 + 2^22 - 2^19 + 2^17 + 2^13 - 2^7 - 1"
"r2": 135989100289
"r2_hex": "0x1fa994ff01"
"r2_bit": "2^37 - 2^31 + 2^29 + 2^27 + 2^25 - 2^23 + 2^20 + 2^18 + 2^16 - 2^8 + 1"
"znprimroot": 33
- "n": 2251799813640961
"n_hex": "0x7ffffffff5301"
"n_bit": "2^51 - 2^16 + 2^14 + 2^12 + 2^10 - 2^8 + 1"
"n_fac": "2^8 * 3^2 * 5 * 11 * 23 * 137 * 277 * 20359 + 1"
"nd": 905916347470591
"nd_hex": "0x337ed161652ff"
"nd_bit": "2^50 - 2^48 + 2^46 - 2^43 - 2^36 - 2^34 + 2^32 + 2^29 - 2^27 - 2^25 + 2^21 - 2^19 - 2^17 + 2^14 + 2^12 + 2^10 - 2^8 - 1"
"r2": 1961338369
"r2_hex": "0x74e7a601"
"r2_bit": "2^31 - 2^28 + 2^26 + 2^24 - 2^21 + 2^19 - 2^15 + 2^13 + 2^11 - 2^9 + 1"
"znprimroot": 17
- "n": 2251799813034241
"n_hex": "0x7fffffff61101"
"n_bit": "2^51 - 2^19 - 2^17 + 2^12 + 2^8 + 1"
"n_fac": "2^8 * 3 * 5 * 7 * 83772314473 + 1"
"nd": 418439400591615
"nd_hex": "0x17c9183d510ff"
"nd_bit": "2^49 - 2^47 - 2^42 + 2^39 + 2^36 + 2^33 - 2^31 + 2^26 - 2^22 + 2^20 + 2^18 + 2^16 + 2^12 + 2^8 - 1"
"r2": 423810114049
"r2_hex": "0x62ad0d2201"
"r2_bit": "2^39 - 2^37 + 2^34 - 2^32 - 2^30 - 2^28 - 2^26 + 2^24 + 2^20 - 2^18 + 2^16 + 2^13 + 2^9 + 1"
"znprimroot": 11
- "n": 2251799813684737
"n_hex": "0x7fffffffffe01"
"n_bit": "2^51 - 2^9 + 1"
"n_fac": "2^9 * 3^2 * 7^2 * 43 * 127 * 337 * 5419 + 1"
"nd": 2216546587639295
"nd_hex": "0x7dfeff7fbfdff"
"nd_bit": "2^51 - 2^45 - 2^36 - 2^27 - 2^18 - 2^9 - 1"
"r2": 261121
"r2_hex": "0x3fc01"
"r2_bit": "2^18 - 2^10 + 1"
"znprimroot": 10
- "n": 2251799813667841
"n_hex": "0x7ffffffffbc01"
"n_bit": "2^51 - 2^14 - 2^10 + 1"
"n_fac": "2^10 * 3 * 5 * 103 * 1423316023 + 1"
"nd": 1612106007821311
"nd_hex": "0x5ba33adefbbff"
"nd_bit": "2^51 - 2^49 - 2^46 - 2^43 + 2^41 + 2^38 - 2^36 + 2^34 - 2^30 - 2^28 - 2^25 - 2^20 - 2^14 - 2^10 - 1"
"r2": 303003649
"r2_hex": "0x120f7801"
"r2_bit": "2^28 + 2^25 + 2^20 - 2^15 - 2^11 + 1"
"znprimroot": 7
- "n": 2251799813624833
"n_hex": "0x7ffffffff1401"
"n_bit": "2^51 - 2^16 + 2^12 + 2^10 + 1"
"n_fac": "2^10 * 3^4 * 701 * 3929 * 9857 + 1"
"nd": 1625552350811135
"nd_hex": "0x5c66e666f13ff"
"nd_bit": "2^51 - 2^49 - 2^46 + 2^43 - 2^41 + 2^39 - 2^36 - 2^33 + 2^31 - 2^29 + 2^27 - 2^25 + 2^23 - 2^20 - 2^16 + 2^12 + 2^10 - 1"
"r2": 3649972225
"r2_hex": "0xd98e2801"
"r2_bit": "2^32 - 2^29 - 2^27 + 2^25 - 2^23 + 2^20 - 2^17 + 2^13 + 2^11 + 1"
"znprimroot": 5
- "n": 2251799812899841
"n_hex": "0x7fffffff40401"
"n_bit": "2^51 - 2^20 + 2^18 + 2^10 + 1"
"n_fac": "2^10 * 3 * 5 * 7 * 17 * 1433 * 859697 + 1"
"nd": 1895766887236607
"nd_hex": "0x6bc309fe403ff"
"nd_bit": "2^51 - 2^48 - 2^46 - 2^42 + 2^38 - 2^36 + 2^31 + 2^29 - 2^21 + 2^18 + 2^10 - 1"
"r2": 616864155649
"r2_hex": "0x8f9ff80801"
"r2_bit": "2^39 + 2^36 - 2^31 + 2^29 - 2^19 + 2^11 + 1"
"znprimroot": 11
- "n": 2251799812684801
"n_hex": "0x7fffffff0bc01"
"n_bit": "2^51 - 2^20 + 2^16 - 2^14 - 2^10 + 1"
"n_fac": "2^10 * 3^3 * 5^2 * 7 * 6619 * 70313 + 1"
"nd": 352370758302719
"nd_hex": "0x1407ab5e0bbff"
"nd_bit": "2^48 + 2^46 + 2^39 - 2^34 - 2^32 - 2^30 - 2^27 - 2^25 - 2^21 + 2^16 - 2^14 - 2^10 - 1"
"r2": 1000894199809
"r2_hex": "0xe909f17801"
"r2_bit": "2^40 - 2^37 + 2^35 + 2^32 + 2^27 + 2^25 - 2^20 + 2^17 - 2^15 - 2^11 + 1"
"znprimroot": 34
- "n": 2251799813560321
"n_hex": "0x7fffffffe1801"
"n_bit": "2^51 - 2^17 + 2^13 - 2^11 + 1"
"n_fac": "2^11 * 3^2 * 5 * 24433591727c + 1"
"nd": 1128865007015935
"nd_hex": "0x402b25dbe17ff"
"nd_bit": "2^50 + 2^42 - 2^40 - 2^38 - 2^36 + 2^33 + 2^31 - 2^29 - 2^25 - 2^22 - 2^17 + 2^13 - 2^11 - 1"
"r2": 15606755329
"r2_hex": "0x3a23c3001"
"r2_bit": "2^34 - 2^31 + 2^29 + 2^25 + 2^22 - 2^18 + 2^14 - 2^12 + 1"
"znprimroot": 13
- "n": 2251799806986241
"n_hex": "0x7ffffff99c801"
"n_bit": "2^51 - 2^23 + 2^21 - 2^19 + 2^17 - 2^14 + 2^11 + 1"
"n_fac": "2^11 * 3 * 5 * 7^2 * 1495934183 + 1"
"nd": 2111068018690047
"nd_hex": "0x780015359c7ff"
"nd_bit": "2^51 - 2^47 + 2^32 + 2^30 + 2^28 + 2^26 - 2^23 - 2^21 - 2^19 + 2^17 - 2^14 + 2^11 - 1"
"r2": 44876694786049
"r2_hex": "0x28d0ab739001"
"r2_bit": "2^45 + 2^43 + 2^40 - 2^38 + 2^36 + 2^32 - 2^30 - 2^28 - 2^26 - 2^23 - 2^20 + 2^18 - 2^15 + 2^12 + 1"
"znprimroot": 11
- "n": 2251799813640193
"n_hex": "0x7ffffffff5001"
"n_bit": "2^51 - 2^16 + 2^14 + 2^12 + 1"
"n_fac": "2^12 * 3 * 353 * 2437 * 213019 + 1"
"nd": 1878857183350783
"nd_hex": "0x6accf86ff4fff"
"nd_bit": "2^51 - 2^48 - 2^46 - 2^44 - 2^42 + 2^40 - 2^38 + 2^36 - 2^31 + 2^27 - 2^24 - 2^16 + 2^14 + 2^12 - 1"
"r2": 2029953025
"r2_hex": "0x78fea001"
"r2_bit": "2^31 - 2^27 + 2^24 - 2^17 + 2^15 + 2^13 + 1"
"znprimroot": 5
- "n": 2251799813283841
"n_hex": "0x7fffffff9e001"
"n_bit": "2^51 - 2^19 + 2^17 - 2^13 + 1"
"n_fac": "2^13 * 3^2 * 5 * 61 * 191 * 269 * 1949 + 1"
"nd": 623811719979007
"nd_hex": "0x2375a7bf9dfff"
"nd_bit": "2^49 + 2^46 - 2^43 - 2^39 - 2^37 - 2^35 + 2^33 + 2^31 - 2^26 - 2^19 + 2^17 - 2^13 - 1"
"r2": 161127579649
"r2_hex": "0x2583f3c001"
"r2_bit": "2^37 + 2^35 - 2^33 - 2^31 + 2^26 - 2^20 + 2^18 - 2^14 + 1"
"znprimroot": 13
- "n": 2251799805911041
"n_hex": "0x7ffffff896001"
"n_bit": "2^51 - 2^23 + 2^19 + 2^17 - 2^15 - 2^13 + 1"
"n_fac": "2^13 * 3^4 * 5 * 7 * 11 * 47 * 167 * 1123 + 1"
"nd": 495364810039295
"nd_hex": "0x1c2881b895fff"
"nd_bit": "2^49 - 2^46 + 2^41 + 2^39 + 2^35 + 2^29 - 2^26 - 2^23 + 2^19 + 2^17 - 2^15 - 2^13 - 1"
"r2": 60438294478849
"r2_hex": "0x36f7e312c001"
"r2_bit": "2^46 - 2^43 - 2^40 - 2^35 - 2^29 + 2^26 - 2^24 + 2^20 + 2^18 - 2^16 - 2^14 + 1"
"znprimroot": 17
- "n": 2251799813406721
"n_hex": "0x7fffffffbc001"
"n_bit": "2^51 - 2^18 - 2^14 + 1"
"n_fac": "2^14 * 3 * 5 * 9162596897c + 1"
"nd": 910318049673215
"nd_hex": "0x33bedeffbbfff"
"nd_bit": "2^50 - 2^48 + 2^46 - 2^42 - 2^36 - 2^33 - 2^28 - 2^18 - 2^14 - 1"
"r2": 77577289729
"r2_hex": "0x120ff78001"
"r2_bit": "2^36 + 2^33 + 2^28 - 2^19 - 2^15 + 1"
"znprimroot": 22
- "n": 2251799811735553
"n_hex": "0x7ffffffe24001"
"n_bit": "2^51 - 2^21 + 2^17 + 2^14 + 1"
"n_fac": "2^14 * 3^2 * 13 * 1174691909 + 1"
"nd": 1513524729888767
"nd_hex": "0x5608aefe23fff"
"nd_bit": "2^51 - 2^49 - 2^47 - 2^45 + 2^39 + 2^36 - 2^34 - 2^32 - 2^28 - 2^21 + 2^17 + 2^14 - 1"
"r2": 3801310593025
"r2_hex": "0x3750fc48001"
"r2_bit": "2^42 - 2^39 - 2^36 + 2^34 + 2^32 + 2^28 - 2^22 + 2^18 + 2^15 + 1"
"znprimroot": 15
- "n": 2251799793008641
"n_hex": "0x7fffffec48001"
"n_bit": "2^51 - 2^24 - 2^22 + 2^18 + 2^15 + 1"
"n_fac": "2^15 * 3^2 * 5 * 7 * 89 * 2451203 + 1"
"nd": 452087163158527
"nd_hex": "0x19b2bbec47fff"
"nd_bit": "2^49 - 2^47 + 2^45 - 2^42 - 2^40 + 2^38 - 2^36 - 2^34 - 2^30 - 2^24 - 2^22 + 2^18 + 2^15 - 1"
"r2": 427522077032449
"r2_hex": "0x184d43d890001"
"r2_bit": "2^49 - 2^47 + 2^42 + 2^40 - 2^38 + 2^36 + 2^34 + 2^30 - 2^25 - 2^23 + 2^19 + 2^16 + 1"
"znprimroot": 13
- "n": 2251799805100033
"n_hex": "0x7ffffff7d0001"
"n_bit": "2^51 - 2^23 - 2^18 + 2^16 + 1"
"n_fac": "2^16 * 3^2 * 11 * 347068063 + 1"
"nd": 1333668941201407
"nd_hex": "0x4bcf6ff7cffff"
"nd_bit": "2^50 + 2^48 - 2^46 - 2^42 + 2^40 - 2^35 - 2^32 - 2^23 - 2^18 + 2^16 - 1"
"r2": 73705916596225
"r2_hex": "0x4308fefa0001"
"r2_bit": "2^46 + 2^42 - 2^40 + 2^35 + 2^32 - 2^24 - 2^19 + 2^17 + 1"
"znprimroot": 5
- "n": 2251799804313601
"n_hex": "0x7ffffff710001"
"n_bit": "2^51 - 2^23 - 2^20 + 2^16 + 1"
"n_fac": "2^16 * 3 * 5^2 * 19 * 71 * 229 * 1483 + 1"
"nd": 193647181103103
"nd_hex": "0xb01eff70ffff"
"nd_bit": "2^48 - 2^46 - 2^44 + 2^37 - 2^32 - 2^23 - 2^20 + 2^16 - 1"
"r2": 87827767492609
"r2_hex": "0x4fe0fee20001"
"r2_bit": "2^46 + 2^44 - 2^37 + 2^32 - 2^24 - 2^21 + 2^17 + 1"
"znprimroot": 7
- "n": 2251799782686721
"n_hex": "0x7fffffe270001"
"n_bit": "2^51 - 2^25 + 2^21 + 2^19 - 2^16 + 1"
"n_fac": "2^16 * 3^4 * 5 * 7 * 12119837 + 1"
"nd": 1009416067809279
"nd_hex": "0x3960efe26ffff"
"nd_bit": "2^50 - 2^47 + 2^45 - 2^43 - 2^41 + 2^36 - 2^32 - 2^25 + 2^21 + 2^19 - 2^16 - 1"
"r2": 960908676169729
"r2_hex": "0x369f0fc4e0001"
"r2_bit": "2^50 - 2^47 - 2^45 + 2^43 + 2^41 - 2^36 + 2^32 - 2^26 + 2^22 + 2^20 - 2^17 + 1"
"znprimroot": 26
- "n": 2251799813554177
"n_hex": "0x7fffffffe0001"
"n_bit": "2^51 - 2^17 + 1"
"n_fac": "2^17 * 3 * 5726623061c + 1"
"nd": 2251782633684991
"nd_hex": "0x7fffbfffdffff"
"nd_bit": "2^51 - 2^34 - 2^17 - 1"
"r2": 17179607041
"r2_hex": "0x3fffc0001"
"r2_bit": "2^34 - 2^18 + 1"
"znprimroot": 5
- "n": 2251799473029121
"n_hex": "0x7ffffebb20001"
"n_bit": "2^51 - 2^28 - 2^26 - 2^22 - 2^20 + 2^17 + 1"
"n_fac": "2^17 * 3^3 * 5 * 7 * 18179753 + 1"
"nd": 1046992427024383
"nd_hex": "0x3b83bebb1ffff"
"nd_bit": "2^50 - 2^46 - 2^43 + 2^38 - 2^34 - 2^28 - 2^26 - 2^22 - 2^20 + 2^17 - 1"
"r2": 1204823738154958
"r2_hex": "0x447c7e2edffce"
"r2_bit": "2^50 + 2^46 + 2^43 - 2^38 + 2^35 - 2^29 + 2^26 - 2^24 - 2^20 - 2^17 - 2^6 + 2^4 - 2"
"znprimroot": 19
- "n": 2251799807131649
"n_hex": "0x7ffffff9c0001"
"n_bit": "2^51 - 2^23 + 2^21 - 2^18 + 1"
"n_fac": "2^18 * 8589934567 + 1"
"nd": 2208850134171647
"nd_hex": "0x7d8efff9bffff"
"nd_bit": "2^51 - 2^45 - 2^43 + 2^40 - 2^36 - 2^23 + 2^21 - 2^18 - 1"
"r2": 42949659852801
"r2_hex": "0x270fff380001"
"r2_bit": "2^45 + 2^43 - 2^40 + 2^36 - 2^24 + 2^22 - 2^19 + 1"
"znprimroot": 3
- "n": 2251799797432321
"n_hex": "0x7ffffff080001"
"n_bit": "2^51 - 2^24 + 2^19 + 1"
"n_fac": "2^19 * 3^2 * 5 * 95443717 + 1"
"nd": 1987642128859135
"nd_hex": "0x70fbfff07ffff"
"nd_bit": "2^51 - 2^48 + 2^44 - 2^38 - 2^24 + 2^19 - 1"
"r2": 264157636067329
"r2_hex": "0xf03ffe100001"
"r2_bit": "2^48 - 2^44 + 2^38 - 2^25 + 2^20 + 1"
"znprimroot": 7
- "n": 2251798853713921
"n_hex": "0x7ffffc6c80001"
"n_bit": "2^51 - 2^30 + 2^27 - 2^24 - 2^22 + 2^19 + 1"
"n_fac": "2^19 * 3^6 * 5 * 7 * 168331 + 1"
"nd": 1692972068896767
"nd_hex": "0x603bfc6c7ffff"
"nd_bit": "2^51 - 2^49 + 2^42 - 2^38 - 2^30 + 2^27 - 2^24 - 2^22 + 2^19 - 1"
"r2": 559217493147240
"r2_hex": "0x1fc9af807fe68"
"r2_bit": "2^49 - 2^42 + 2^39 + 2^37 - 2^34 - 2^32 - 2^27 + 2^19 - 2^9 + 2^7 - 2^5 + 2^3"
"znprimroot": 11
- "n": 2251799806345217
"n_hex": "0x7ffffff900001"
"n_bit": "2^51 - 2^23 + 2^20 + 1"
"n_fac": "2^20 * 2699 * 795659 + 1"
"nd": 2197923736584191
"nd_hex": "0x7ceffff8fffff"
"nd_bit": "2^51 - 2^46 + 2^44 - 2^40 - 2^23 + 2^20 - 1"
"r2": 53876055080961
"r2_hex": "0x30ffff200001"
"r2_bit": "2^46 - 2^44 + 2^40 - 2^24 + 2^21 + 1"
"znprimroot": 3
- "n": 2251799789568001
"n_hex": "0x7fffffe900001"
"n_bit": "2^51 - 2^25 + 2^23 + 2^20 + 1"
"n_fac": "2^20 * 3 * 5^3 * 7 * 199 * 4111 + 1"
"nd": 1670158138474495
"nd_hex": "0x5eefffe8fffff"
"nd_bit": "2^51 - 2^49 - 2^44 - 2^40 - 2^25 + 2^23 + 2^20 - 1"
"r2": 581641602859009
"r2_hex": "0x210fffd200001"
"r2_bit": "2^49 + 2^44 + 2^40 - 2^26 + 2^24 + 2^21 + 1"
"znprimroot": 22
- "n": 2251799726653441
"n_hex": "0x7fffffad00001"
"n_bit": "2^51 - 2^26 - 2^24 - 2^22 + 2^20 + 1"
"n_fac": "2^20 * 3^2 * 5 * 103 * 463319 + 1"
"nd": 1432663563960319
"nd_hex": "0x516fffacfffff"
"nd_bit": "2^50 + 2^48 + 2^45 - 2^43 - 2^40 - 2^26 - 2^24 - 2^22 + 2^20 - 1"
"r2": 819136249724926
"r2_hex": "0x2e900052ffffe"
"r2_bit": "2^50 - 2^48 - 2^45 + 2^43 + 2^40 + 2^26 + 2^24 + 2^22 - 2^20 - 2"
"znprimroot": 11
- "n": 2251796706754561
"n_hex": "0x7ffff46d00001"
"n_bit": "2^51 - 2^32 + 2^30 + 2^27 - 2^24 - 2^22 + 2^20 + 1"
"n_fac": "2^20 * 3^2 * 5 * 7 * 101 * 67499 + 1"
"nd": 447498125574143
"nd_hex": "0x196ff46cfffff"
"nd_bit": "2^49 - 2^47 + 2^45 - 2^43 - 2^40 - 2^32 + 2^30 + 2^27 - 2^24 - 2^22 + 2^20 - 1"
"r2": 1817608672243523
"r2_hex": "0x6751aff3fef43"
"r2_bit": "2^51 - 2^49 + 2^47 - 2^44 + 2^42 + 2^40 + 2^37 - 2^34 - 2^32 - 2^24 + 2^22 - 2^12 - 2^8 + 2^6 + 2^2 - 1"
"znprimroot": 11
- "n": 2251794614845441
"n_hex": "0x7fffeca200001"
"n_bit": "2^51 - 2^32 - 2^30 + 2^27 + 2^25 + 2^21 + 1"
"n_fac": "2^21 * 3 * 5 * 7 * 1109 * 9221 + 1"
"nd": 417809219715071
"nd_hex": "0x17bfeca1fffff"
"nd_bit": "2^49 - 2^47 - 2^42 - 2^32 - 2^30 + 2^27 + 2^25 + 2^21 - 1"
"r2": 1896371472814367
"r2_hex": "0x6bcbd63ffd11f"
"r2_bit": "2^51 - 2^48 - 2^46 - 2^42 + 2^40 - 2^38 - 2^33 - 2^31 - 2^29 + 2^26 - 2^14 + 2^12 + 2^8 + 2^5 - 1"
"znprimroot": 11
- "n": 2251783164395521
"n_hex": "0x7fffc1fa00001"
"n_bit": "2^51 - 2^34 + 2^29 - 2^23 + 2^21 + 1"
"n_fac": "2^21 * 3^2 * 5 * 7 * 3408679 + 1"
"nd": 2212200745795583
"nd_hex": "0x7dbfc1f9fffff"
"nd_bit": "2^51 - 2^45 - 2^42 - 2^34 + 2^29 - 2^23 + 2^21 - 1"
"r2": 2089093334703908
"r2_hex": "0x76c04f21e1f24"
"r2_bit": "2^51 - 2^47 - 2^44 - 2^42 + 2^34 + 2^32 - 2^28 + 2^25 + 2^21 - 2^17 + 2^13 - 2^8 + 2^5 + 2^2"
"znprimroot": 19
- "n": 2251799708827649
"n_hex": "0x7fffff9c00001"
"n_bit": "2^51 - 2^27 + 2^25 - 2^22 + 1"
"n_fac": "2^22 * 7 * 76695841 + 1"
"nd": 263882685808639
"nd_hex": "0xeffff9bfffff"
"nd_bit": "2^48 - 2^44 - 2^27 + 2^25 - 2^22 - 1"
"r2": 1987917232734205
"r2_hex": "0x710000c7ffffd"
"r2_bit": "2^51 - 2^48 + 2^44 + 2^28 - 2^26 + 2^23 - 2^2 + 1"
"znprimroot": 3
- "n": 2251799666884609
"n_hex": "0x7fffff7400001"
"n_bit": "2^51 - 2^27 - 2^24 + 2^22 + 1"
"n_fac": "2^22 * 3 * 4691 * 38149 + 1"
"nd": 967570085642239
"nd_hex": "0x36ffff73fffff"
"nd_bit": "2^50 - 2^47 - 2^44 - 2^27 - 2^24 + 2^22 - 1"
"r2": 1284230608846840
"r2_hex": "0x490003d3ffff8"
"r2_bit": "2^50 + 2^47 + 2^44 + 2^30 - 2^26 + 2^24 + 2^22 - 2^3"
"znprimroot": 11
- "n": 2251799490723841
"n_hex": "0x7ffffecc00001"
"n_bit": "2^51 - 2^28 - 2^26 + 2^24 - 2^22 + 1"
"n_fac": "2^22 * 3^5 * 5 * 73 * 6053 + 1"
"nd": 1530519862902783
"nd_hex": "0x56fffecbfffff"
"nd_bit": "2^51 - 2^49 - 2^47 - 2^44 - 2^28 - 2^26 + 2^24 - 2^22 - 1"
"r2": 721293838122963
"r2_hex": "0x290034effffd3"
"r2_bit": "2^49 + 2^47 + 2^44 + 2^34 - 2^32 + 2^30 + 2^28 - 2^24 - 2^6 + 2^4 + 2^2 - 1"
"znprimroot": 17
- "n": 2251793954242561
"n_hex": "0x7fffea2c00001"
"n_bit": "2^51 - 2^33 + 2^31 + 2^29 + 2^26 - 2^24 - 2^22 + 1"
"n_fac": "2^22 * 3 * 5 * 7 * 13 * 393311 + 1"
"nd": 123139442868223
"nd_hex": "0x6ffea2bfffff"
"nd_bit": "2^47 - 2^44 - 2^33 + 2^31 + 2^29 + 2^26 - 2^24 - 2^22 - 1"
"r2": 2217975855694963
"r2_hex": "0x7e13cbeffc473"
"r2_bit": "2^51 - 2^45 + 2^40 + 2^38 - 2^34 + 2^32 - 2^30 - 2^24 - 2^14 + 2^10 + 2^7 - 2^4 + 2^2 - 1"
"znprimroot": 29
- "n": 2251782503792641
"n_hex": "0x7fffbf8400001"
"n_bit": "2^51 - 2^34 - 2^27 + 2^22 + 1"
"n_fac": "2^22 * 3^4 * 5 * 7^2 * 13 * 2081 + 1"
"nd": 1108290410905599
"nd_hex": "0x3effbf83fffff"
"nd_bit": "2^50 - 2^44 - 2^34 - 2^27 + 2^22 - 1"
"r2": 1194981209274425
"r2_hex": "0x43ed43e7df839"
"r2_bit": "2^50 + 2^46 - 2^40 - 2^38 + 2^36 + 2^34 + 2^30 - 2^25 + 2^23 - 2^17 - 2^11 + 2^6 - 2^3 + 1"
"znprimroot": 11
- "n": 2251793513840641
"n_hex": "0x7fffe88800001"
"n_bit": "2^51 - 2^33 + 2^31 + 2^27 + 2^23 + 1"
"n_fac": "2^23 * 3 * 5 * 7 * 11 * 232411 + 1"
"nd": 2181424769662975
"nd_hex": "0x7bffe887fffff"
"nd_bit": "2^51 - 2^46 - 2^33 + 2^31 + 2^27 + 2^23 - 1"
"r2": 181390905686824
"r2_hex": "0xa4f95c7fbb28"
"r2_bit": "2^47 + 2^45 + 2^42 + 2^40 - 2^35 + 2^33 - 2^31 - 2^29 - 2^26 + 2^23 - 2^14 - 2^10 - 2^8 + 2^5 + 2^3"
"znprimroot": 23
- "n": 2251799696244737
"n_hex": "0x7fffff9000001"
"n_bit": "2^51 - 2^27 + 2^24 + 1"
"n_fac": "2^24 * 11 * 12201611 + 1"
"nd": 1970324719534079
"nd_hex": "0x6fffff8ffffff"
"nd_bit": "2^51 - 2^48 - 2^27 + 2^24 - 1"
"r2": 281475446472699
"r2_hex": "0x100001bfffffb"
"r2_bit": "2^48 + 2^29 - 2^26 - 2^2 - 1"
"znprimroot": 3
- "n": 2251798924492801
"n_hex": "0x7ffffcb000001"
"n_bit": "2^51 - 2^30 + 2^28 - 2^26 - 2^24 + 1"
"n_fac": "2^24 * 3^3 * 5^2 * 198841 + 1"
"nd": 1970323947782143
"nd_hex": "0x6ffffcaffffff"
"nd_bit": "2^51 - 2^48 - 2^30 + 2^28 - 2^26 - 2^24 - 1"
"r2": 281785304874658
"r2_hex": "0x1004840fffea2"
"r2_bit": "2^48 + 2^38 + 2^35 + 2^30 + 2^24 - 2^9 + 2^7 + 2^5 + 2"
"znprimroot": 17
- "n": 2251787348213761
"n_hex": "0x7fffd19000001"
"n_bit": "2^51 - 2^34 + 2^32 + 2^29 - 2^27 + 2^24 + 1"
"n_fac": "2^24 * 3 * 5 * 7 * 41 * 31177 + 1"
"nd": 1970312371503103
"nd_hex": "0x6fffd18ffffff"
"nd_bit": "2^51 - 2^48 - 2^34 + 2^32 + 2^29 - 2^27 + 2^24 - 1"
"r2": 1141642371199603
"r2_hex": "0x40e5153fef273"
"r2_bit": "2^50 + 2^44 - 2^41 + 2^38 + 2^36 + 2^32 + 2^30 + 2^28 + 2^26 - 2^16 - 2^12 + 2^9 + 2^7 - 2^4 + 2^2 - 1"
"znprimroot": 11
- "n": 2251797162885121
"n_hex": "0x7ffff62000001"
"n_bit": "2^51 - 2^31 - 2^29 + 2^25 + 1"
"n_fac": "2^25 * 3 * 5 * 761 * 5879 + 1"
"nd": 1125897256042495
"nd_hex": "0x3ffff61ffffff"
"nd_bit": "2^50 - 2^31 - 2^29 + 2^25 - 1"
"r2": 1134165101638609
"r2_hex": "0x4078463fff3d1"
"r2_bit": "2^50 + 2^43 - 2^39 + 2^34 + 2^31 - 2^29 + 2^26 - 2^12 + 2^10 - 2^6 + 2^4 + 1"
"znprimroot": 13
- "n": 2251792129720321
"n_hex": "0x7fffe36000001"
"n_bit": "2^51 - 2^33 + 2^30 - 2^27 - 2^25 + 1"
"n_fac": "2^25 * 3^3 * 5 * 11 * 45191 + 1"
"nd": 1125892222877695
"nd_hex": "0x3fffe35ffffff"
"nd_bit": "2^50 - 2^33 + 2^30 - 2^27 - 2^25 - 1"
"r2": 1327358099298709
"r2_hex": "0x4b739a3ff9995"
"r2_bit": "2^50 + 2^48 - 2^46 - 2^43 - 2^40 + 2^38 - 2^35 + 2^33 - 2^31 + 2^29 + 2^26 - 2^15 + 2^13 - 2^11 + 2^9 - 2^7 + 2^4 + 2^2 + 1"
"znprimroot": 7
- "n": 2251760924098561
"n_hex": "0x7fff6f2000001"
"n_bit": "2^51 - 2^35 - 2^32 - 2^28 + 2^25 + 1"
"n_fac": "2^25 * 3 * 5 * 7^2 * 91303 + 1"
"nd": 1125861017255935
"nd_hex": "0x3fff6f1ffffff"
"nd_bit": "2^50 - 2^35 - 2^32 - 2^28 + 2^25 - 1"
"r2": 224493040943197
"r2_hex": "0xcc2cdbf5c05d"
"r2_bit": "2^48 - 2^46 + 2^44 - 2^42 + 2^38 - 2^36 - 2^34 + 2^32 - 2^29 - 2^26 - 2^19 - 2^17 - 2^14 + 2^7 - 2^5 - 2^2 + 1"
"znprimroot": 17
- "n": 2251798270181377
"n_hex": "0x7ffffa4000001"
"n_bit": "2^51 - 2^31 + 2^29 + 2^26 + 1"
"n_fac": "2^26 * 3 * 7 * 1597829 + 1"
"nd": 2251798270181375
"nd_hex": "0x7ffffa3ffffff"
"nd_bit": "2^51 - 2^31 + 2^29 + 2^26 - 1"
"r2": 1629940087775
"r2_hex": "0x17b7ffffbdf"
"r2_bit": "2^41 - 2^39 - 2^34 - 2^31 - 2^10 - 2^5 - 1"
"znprimroot": 5
- "n": 2251797867528193
"n_hex": "0x7ffff8c000001"
"n_bit": "2^51 - 2^31 + 2^28 - 2^26 + 1"
"n_fac": "2^26 * 3^2 * 3728267 + 1"
"nd": 2251797867528191
"nd_hex": "0x7ffff8bffffff"
"nd_bit": "2^51 - 2^31 + 2^28 - 2^26 - 1"
"r2": 3269543852399
"r2_hex": "0x2f93ffff96f"
"r2_bit": "2^42 - 2^40 - 2^35 + 2^32 + 2^30 - 2^11 + 2^9 - 2^7 - 2^4 - 1"
"znprimroot": 11
- "n": 2251788606504961
"n_hex": "0x7fffd64000001"
"n_bit": "2^51 - 2^33 - 2^31 - 2^29 + 2^26 + 1"
"n_fac": "2^26 * 3 * 5 * 2236951 + 1"
"nd": 2251788606504959
"nd_hex": "0x7fffd63ffffff"
"nd_bit": "2^51 - 2^33 - 2^31 - 2^29 + 2^26 - 1"
"r2": 625091687687711
"r2_hex": "0x238847fff261f"
"r2_bit": "2^49 + 2^46 - 2^43 + 2^39 + 2^34 + 2^31 - 2^16 + 2^13 + 2^11 - 2^9 + 2^5 - 1"
"znprimroot": 7
- "n": 2251782768033793
"n_hex": "0x7fffc08000001"
"n_bit": "2^51 - 2^34 + 2^27 + 1"
"n_fac": "2^27 * 3^2 * 7 * 283 * 941 + 1"
"nd": 2251782768033791
"nd_hex": "0x7fffc07ffffff"
"nd_bit": "2^51 - 2^34 + 2^27 - 1"
"r2": 2199400407238649
"r2_hex": "0x7d057cffe07f9"
"r2_bit": "2^51 - 2^46 + 2^44 + 2^39 - 2^37 - 2^35 - 2^30 + 2^28 - 2^17 + 2^11 - 2^3 + 1"
"znprimroot": 13
- "n": 2251759414149121
"n_hex": "0x7fff698000001"
"n_bit": "2^51 - 2^35 - 2^33 + 2^31 + 2^29 - 2^27 + 1"
"n_fac": "2^27 * 3 * 5 * 601 * 1861 + 1"
"nd": 2251759414149119
"nd_hex": "0x7fff697ffffff"
"nd_bit": "2^51 - 2^35 - 2^33 + 2^31 + 2^29 - 2^27 - 1"
"r2": 8953798127788
"r2_hex": "0x824b7f4f0ac"
"r2_bit": "2^43 + 2^37 + 2^34 + 2^32 - 2^30 - 2^27 - 2^20 + 2^18 + 2^16 - 2^12 + 2^8 - 2^6 - 2^4 - 2^2"
"znprimroot": 11
- "n": 2251797934637057
"n_hex": "0x7ffff90000001"
"n_bit": "2^51 - 2^31 + 2^28 + 1"
"n_fac": "2^28 * 13 * 67 * 9631 + 1"
"nd": 2251797934637055
"nd_hex": "0x7ffff8fffffff"
"nd_bit": "2^51 - 2^31 + 2^28 - 1"
"r2": 2942589467105
"r2_hex": "0x2ad1ffff9e1"
"r2_bit": "2^42 - 2^40 - 2^38 - 2^36 - 2^34 + 2^32 + 2^29 - 2^11 + 2^9 - 2^5 + 1"
"znprimroot": 3
- "n": 2251774312316929
"n_hex": "0x7fffa10000001"
"n_bit": "2^51 - 2^35 + 2^33 + 2^28 + 1"
"n_fac": "2^28 * 3^2 * 7 * 47 * 2833 + 1"
"nd": 2251774312316927
"nd_hex": "0x7fffa0fffffff"
"nd_bit": "2^51 - 2^35 + 2^33 + 2^28 - 1"
"r2": 609421230839774
"r2_hex": "0x22a43effb97de"
"r2_bit": "2^49 + 2^45 + 2^43 + 2^41 + 2^38 + 2^34 - 2^28 - 2^18 - 2^15 + 2^13 - 2^11 - 2^5 - 2"
"znprimroot": 29
- "n": 2251757400883201
"n_hex": "0x7fff620000001"
"n_bit": "2^51 - 2^35 - 2^33 + 2^29 + 1"
"n_fac": "2^29 * 3^2 * 5^2 * 7 * 2663 + 1"
"nd": 2251757400883199
"nd_hex": "0x7fff61fffffff"
"nd_bit": "2^51 - 2^35 - 2^33 + 2^29 - 1"
"r2": 104936250789746
"r2_hex": "0x5f705ff3cf72"
"r2_bit": "2^47 - 2^45 - 2^39 - 2^36 + 2^31 - 2^29 - 2^20 + 2^18 - 2^14 + 2^12 - 2^7 - 2^4 + 2"
"znprimroot": 17
- "n": 2251792297492481
"n_hex": "0x7fffe40000001"
"n_bit": "2^51 - 2^33 + 2^30 + 1"
"n_fac": "2^30 * 5 * 419429 + 1"
"nd": 2251792297492479
"nd_hex": "0x7fffe3fffffff"
"nd_bit": "2^51 - 2^33 + 2^30 - 1"
"r2": 188551211752961
"r2_hex": "0xab7c7fff9e01"
"r2_bit": "2^48 - 2^46 - 2^44 - 2^42 - 2^39 - 2^34 + 2^31 - 2^15 + 2^13 - 2^9 + 1"
"znprimroot": 3
- "n": 2251552853065729
"n_hex": "0x7ffc680000001"
"n_bit": "2^51 - 2^38 + 2^35 - 2^33 + 2^31 + 1"
"n_fac": "2^31 * 3 * 137 * 2551 + 1"
"nd": 2251552853065727
"nd_hex": "0x7ffc67fffffff"
"nd_bit": "2^51 - 2^38 + 2^35 - 2^33 + 2^31 - 1"
"r2": 1766520021757031
"r2_hex": "0x646a3fe62ac67"
"r2_bit": "2^51 - 2^49 + 2^46 + 2^43 - 2^41 + 2^39 + 2^37 + 2^34 - 2^25 + 2^23 - 2^21 + 2^18 - 2^16 - 2^14 - 2^12 - 2^10 + 2^7 - 2^5 + 2^3 - 1"
"znprimroot": 7
- "n": 2251475543654401
"n_hex": "0x7ffb480000001"
"n_bit": "2^51 - 2^38 - 2^36 + 2^34 + 2^31 + 1"
"n_fac": "2^31 * 3 * 5^2 * 7 * 1997 + 1"
"nd": 2251475543654399
"nd_hex": "0x7ffb47fffffff"
"nd_bit": "2^51 - 2^38 - 2^36 + 2^34 + 2^31 - 1"
"r2": 1084953789423036
"r2_hex": "0x3dac27d375dbc"
"r2_bit": "2^50 - 2^45 - 2^42 - 2^40 - 2^38 + 2^33 + 2^31 - 2^26 + 2^24 + 2^22 - 2^19 - 2^15 - 2^13 - 2^9 - 2^6 - 2^2"
"znprimroot": 61
- "n": 2250573600522241
"n_hex": "0x7fee280000001"
"n_bit": "2^51 - 2^40 - 2^37 + 2^33 + 2^31 + 1"
"n_fac": "2^31 * 3^3 * 5 * 7 * 1109 + 1"
"nd": 2250573600522239
"nd_hex": "0x7fee27fffffff"
"nd_bit": "2^51 - 2^40 - 2^37 + 2^33 + 2^31 - 1"
"r2": 544463746083551
"r2_hex": "0x1ef2fd82daadf"
"r2_bit": "2^49 - 2^44 - 2^40 + 2^38 - 2^36 - 2^29 - 2^27 + 2^22 - 2^20 - 2^17 - 2^14 - 2^12 - 2^10 - 2^8 - 2^5 - 1"
"znprimroot": 13
- "n": 2251366021988353
"n_hex": "0x7ff9b00000001"
"n_bit": "2^51 - 2^39 + 2^37 - 2^34 - 2^32 + 1"
"n_fac": "2^32 * 3^2 * 58243 + 1"
"nd": 2251366021988351
"nd_hex": "0x7ff9affffffff"
"nd_bit": "2^51 - 2^39 + 2^37 - 2^34 - 2^32 - 1"
"r2": 1248559794266396
"r2_hex": "0x46f8efb04a11c"
"r2_bit": "2^50 + 2^47 - 2^44 - 2^39 + 2^36 - 2^32 - 2^26 - 2^24 + 2^18 + 2^15 + 2^13 + 2^8 + 2^5 - 2^2"
"znprimroot": 5
- "n": 2248093256908801
"n_hex": "0x7fca100000001"
"n_bit": "2^51 - 2^42 + 2^39 + 2^37 + 2^32 + 1"
"n_fac": "2^32 * 3 * 5^2 * 7 * 997 + 1"
"nd": 2248093256908799
"nd_hex": "0x7fca0ffffffff"
"nd_bit": "2^51 - 2^42 + 2^39 + 2^37 + 2^32 - 1"
"r2": 1155975746576859
"r2_hex": "0x41b5a93be61db"
"r2_bit": "2^50 + 2^45 - 2^42 - 2^39 - 2^37 - 2^35 + 2^33 + 2^31 + 2^28 + 2^26 - 2^22 - 2^17 + 2^15 - 2^13 + 2^9 - 2^5 - 2^2 - 1"
"znprimroot": 19
- "n": 2251756864012289
"n_hex": "0x7fff600000001"
"n_bit": "2^51 - 2^35 - 2^33 + 1"
"n_fac": "2^33 * 262139 + 1"
"nd": 2251756864012287
"nd_hex": "0x7fff5ffffffff"
"nd_bit": "2^51 - 2^35 - 2^33 - 1"
"r2": 1407933228482546
"r2_hex": "0x50081fff37ff2"
"r2_bit": "2^50 + 2^48 + 2^39 + 2^33 - 2^20 + 2^18 - 2^15 - 2^4 + 2"
"znprimroot": 3
- "n": 2251172748460033
"n_hex": "0x7ff6e00000001"
"n_bit": "2^51 - 2^39 - 2^36 - 2^33 + 1"
"n_fac": "2^33 * 3^2 * 37 * 787 + 1"
"nd": 2251172748460031
"nd_hex": "0x7ff6dffffffff"
"nd_bit": "2^51 - 2^39 - 2^36 - 2^33 - 1"
"r2": 1507275648188929
"r2_hex": "0x55adbf596c201"
"r2_bit": "2^51 - 2^49 - 2^47 - 2^45 - 2^42 - 2^40 - 2^37 - 2^34 - 2^27 - 2^25 - 2^23 + 2^21 - 2^19 - 2^16 - 2^14 + 2^9 + 1"
"znprimroot": 5
- "n": 2234113138360321
"n_hex": "0x7efea00000001"
"n_bit": "2^51 - 2^44 - 2^37 + 2^35 + 2^33 + 1"
"n_fac": "2^33 * 3 * 5 * 7 * 2477 + 1"
"nd": 2234113138360319
"nd_hex": "0x7efe9ffffffff"
"nd_bit": "2^51 - 2^44 - 2^37 + 2^35 + 2^33 - 1"
"r2": 1077372786197922
"r2_hex": "0x3d3dd663645a2"
"r2_bit": "2^50 - 2^46 + 2^44 + 2^42 - 2^37 - 2^33 - 2^31 - 2^29 + 2^27 - 2^25 + 2^22 - 2^19 - 2^17 + 2^14 + 2^11 - 2^9 - 2^7 + 2^5 + 2"
"znprimroot": 41
- "n": 2250476963758081
"n_hex": "0x7fecc00000001"
"n_bit": "2^51 - 2^40 - 2^38 + 2^36 - 2^34 + 1"
"n_fac": "2^34 * 3^2 * 5 * 41 * 71 + 1"
"nd": 2250476963758079
"nd_hex": "0x7fecbffffffff"
"nd_bit": "2^51 - 2^40 - 2^38 + 2^36 - 2^34 - 1"
"r2": 794173035186080
"r2_hex": "0x2d24bd1a707a0"
"r2_bit": "2^50 - 2^48 - 2^46 + 2^44 + 2^41 + 2^38 + 2^36 - 2^34 - 2^30 + 2^28 + 2^25 - 2^23 + 2^21 + 2^19 - 2^16 + 2^11 - 2^7 + 2^5"
"znprimroot": 13
- "n": 2224191763906561
"n_hex": "0x7e6e400000001"
"n_bit": "2^51 - 2^45 + 2^43 - 2^40 - 2^37 + 2^34 + 1"
"n_fac": "2^34 * 3^3 * 5 * 7 * 137 + 1"
"nd": 2224191763906559
"nd_hex": "0x7e6e3ffffffff"
"nd_bit": "2^51 - 2^45 + 2^43 - 2^40 - 2^37 + 2^34 - 1"
"r2": 1144815851934696
"r2_hex": "0x41134363013e8"
"r2_bit": "2^50 + 2^44 + 2^40 + 2^38 - 2^36 + 2^34 + 2^30 - 2^27 - 2^25 + 2^22 - 2^20 + 2^12 + 2^10 - 2^5 + 2^3"
"znprimroot": 13
- "n": 2250116186505217
"n_hex": "0x7fe7800000001"
"n_bit": "2^51 - 2^41 + 2^39 - 2^35 + 1"
"n_fac": "2^35 * 3 * 83 * 263 + 1"
"nd": 2250116186505215
"nd_hex": "0x7fe77ffffffff"
"nd_bit": "2^51 - 2^41 + 2^39 - 2^35 - 1"
"r2": 531269014888633
"r2_hex": "0x1e32fb4e9a0b9"
"r2_bit": "2^49 - 2^45 + 2^42 - 2^40 + 2^38 - 2^36 - 2^30 - 2^28 + 2^26 + 2^24 - 2^21 + 2^19 + 2^17 - 2^15 + 2^13 + 2^8 - 2^6 - 2^3 + 1"
"znprimroot": 11
- "n": 2249085394354177
"n_hex": "0x7fd8800000001"
"n_bit": "2^51 - 2^41 - 2^39 + 2^35 + 1"
"n_fac": "2^35 * 3^2 * 7 * 1039 + 1"
"nd": 2249085394354175
"nd_hex": "0x7fd87ffffffff"
"nd_bit": "2^51 - 2^41 - 2^39 + 2^35 - 1"
"r2": 864831338692081
"r2_hex": "0x3128f3cbbbdf1"
"r2_bit": "2^50 - 2^48 + 2^44 + 2^41 + 2^39 + 2^36 - 2^32 + 2^30 - 2^26 + 2^24 - 2^22 - 2^18 - 2^14 - 2^9 - 2^4 + 1"
"znprimroot": 20
- "n": 2231149610926081
"n_hex": "0x7ed3800000001"
"n_bit": "2^51 - 2^44 - 2^42 + 2^40 + 2^38 - 2^35 + 1"
"n_fac": "2^35 * 3^3 * 5 * 13 * 37 + 1"
"nd": 2231149610926079
"nd_hex": "0x7ed37ffffffff"
"nd_bit": "2^51 - 2^44 - 2^42 + 2^40 + 2^38 - 2^35 - 1"
"r2": 586020370218706
"r2_hex": "0x214fb7fff7ed2"
"r2_bit": "2^49 + 2^44 + 2^42 + 2^40 - 2^34 - 2^31 - 2^15 - 2^8 - 2^6 + 2^4 + 2"
"znprimroot": 7
- "n": 2251318777348097
"n_hex": "0x7ff9000000001"
"n_bit": "2^51 - 2^39 + 2^36 + 1"
"n_fac": "2^36 * 181^2 + 1"
"nd": 2251318777348095
"nd_hex": "0x7ff8fffffffff"
"nd_bit": "2^51 - 2^39 + 2^36 - 1"
"r2": 1553472388311613
"r2_hex": "0x584dff9dfaa3d"
"r2_bit": "2^51 - 2^49 - 2^47 + 2^42 + 2^40 - 2^37 - 2^27 + 2^25 - 2^21 - 2^15 + 2^13 + 2^11 + 2^9 + 2^6 - 2^2 + 1"
"znprimroot": 3
- "n": 2248982315139073
"n_hex": "0x7fd7000000001"
"n_bit": "2^51 - 2^41 - 2^39 - 2^36 + 1"
"n_fac": "2^36 * 3 * 10909 + 1"
"nd": 2248982315139071
"nd_hex": "0x7fd6fffffffff"
"nd_bit": "2^51 - 2^41 - 2^39 - 2^36 - 1"
"r2": 2195377593556012
"r2_hex": "0x7ccaf2d9c9c2c"
"r2_bit": "2^51 - 2^46 + 2^44 - 2^42 + 2^40 - 2^38 - 2^36 - 2^32 + 2^30 - 2^28 - 2^25 - 2^23 + 2^21 - 2^18 + 2^15 + 2^13 - 2^10 + 2^6 - 2^4 - 2^2"
"znprimroot": 5
- "n": 2215172332584961
"n_hex": "0x7deb000000001"
"n_bit": "2^51 - 2^45 - 2^40 - 2^38 - 2^36 + 1"
"n_fac": "2^36 * 3 * 5 * 7 * 307 + 1"
"nd": 2215172332584959
"nd_hex": "0x7deafffffffff"
"nd_bit": "2^51 - 2^45 - 2^40 - 2^38 - 2^36 - 1"
"r2": 1914812346167650
"r2_hex": "0x6cd82fdb47162"
"r2_bit": "2^51 - 2^48 - 2^46 + 2^44 - 2^41 - 2^39 + 2^34 - 2^32 - 2^25 - 2^22 - 2^20 + 2^18 + 2^15 - 2^12 + 2^9 - 2^7 - 2^5 + 2"
"znprimroot": 11
- "n": 2121370246840321
"n_hex": "0x7896000000001"
"n_bit": "2^51 - 2^47 + 2^43 + 2^41 - 2^39 - 2^37 + 1"
"n_fac": "2^37 * 3^2 * 5 * 7^3 + 1"
"nd": 2121370246840319
"nd_hex": "0x7895fffffffff"
"nd_bit": "2^51 - 2^47 + 2^43 + 2^41 - 2^39 - 2^37 - 1"
"r2": 991024468114446
"r2_hex": "0x38554dd62bc0e"
"r2_bit": "2^50 - 2^47 + 2^42 + 2^40 + 2^38 + 2^36 + 2^34 + 2^32 - 2^29 - 2^25 - 2^23 - 2^21 + 2^18 - 2^16 - 2^14 - 2^10 + 2^4 - 2"
"znprimroot": 23
- "n": 2247126889267201
"n_hex": "0x7fbc000000001"
"n_bit": "2^51 - 2^42 - 2^38 + 1"
"n_fac": "2^38 * 3 * 5^2 * 109 + 1"
"nd": 2247126889267199
"nd_hex": "0x7fbbfffffffff"
"nd_bit": "2^51 - 2^42 - 2^38 - 1"
"r2": 757828672048266
"r2_hex": "0x2b13dbccc4c8a"
"r2_bit": "2^50 - 2^48 - 2^46 - 2^44 + 2^40 + 2^38 - 2^33 - 2^30 - 2^26 + 2^24 - 2^22 + 2^20 - 2^18 + 2^14 + 2^12 - 2^10 + 2^7 + 2^3 + 2"
"znprimroot": 23
- "n": 2049214796267521
"n_hex": "0x747c000000001"
"n_bit": "2^51 - 2^48 + 2^46 + 2^43 - 2^38 + 1"
"n_fac": "2^38 * 3 * 5 * 7 * 71 + 1"
"nd": 2049214796267519
"nd_hex": "0x747bfffffffff"
"nd_bit": "2^51 - 2^48 + 2^46 + 2^43 - 2^38 - 1"
"r2": 1743864009364430
"r2_hex": "0x63208fad093ce"
"r2_bit": "2^51 - 2^49 + 2^46 - 2^44 + 2^41 + 2^35 + 2^32 - 2^26 - 2^24 - 2^22 + 2^20 + 2^15 + 2^12 + 2^10 - 2^6 + 2^4 - 2"
"znprimroot": 38
- "n": 1298798110310401
"n_hex": "0x49d4000000001"
"n_bit": "2^50 + 2^47 + 2^45 - 2^42 + 2^40 + 2^38 + 1"
"n_fac": "2^38 * 3^3 * 5^2 * 7 + 1"
"nd": 1298798110310399
"nd_hex": "0x49d3fffffffff"
"nd_bit": "2^50 + 2^47 + 2^45 - 2^42 + 2^40 + 2^38 - 1"
"r2": 429652261046398
"r2_hex": "0x186c43665887e"
"r2_bit": "2^49 - 2^47 + 2^43 - 2^40 - 2^38 + 2^34 + 2^30 - 2^27 - 2^25 + 2^23 - 2^21 + 2^19 - 2^17 - 2^15 + 2^11 + 2^7 - 2"
"znprimroot": 17
- "n": 2249051034615809
"n_hex": "0x7fd8000000001"
"n_bit": "2^51 - 2^41 - 2^39 + 1"
"n_fac": "2^39 * 4091 + 1"
"nd": 2249051034615807
"nd_hex": "0x7fd7fffffffff"
"nd_bit": "2^51 - 2^41 - 2^39 - 1"
"r2": 244088221822067
"r2_hex": "0xddff37c16c73"
"r2_bit": "2^48 - 2^45 - 2^41 - 2^32 + 2^30 - 2^27 - 2^22 + 2^17 - 2^15 - 2^12 - 2^10 + 2^7 - 2^4 + 2^2 - 1"
"znprimroot": 3
- "n": 1096762848706561
"n_hex": "0x3e58000000001"
"n_bit": "2^50 - 2^45 + 2^43 - 2^41 - 2^39 + 1"
"n_fac": "2^39 * 3 * 5 * 7 * 19 + 1"
"nd": 1096762848706559
"nd_hex": "0x3e57fffffffff"
"nd_bit": "2^50 - 2^45 + 2^43 - 2^41 - 2^39 - 1"
"r2": 922692521752888
"r2_hex": "0x3472f17fef938"
"r2_bit": "2^50 - 2^48 + 2^46 + 2^43 - 2^40 + 2^38 - 2^36 - 2^32 + 2^29 - 2^27 - 2^16 - 2^11 + 2^8 + 2^6 - 2^3"
"znprimroot": 61
- "n": 865865406873601
"n_hex": "0x3138000000001"
"n_bit": "2^50 - 2^48 + 2^44 + 2^42 - 2^39 + 1"
"n_fac": "2^39 * 3^2 * 5^2 * 7 + 1"
"nd": 865865406873599
"nd_hex": "0x3137fffffffff"
"nd_bit": "2^50 - 2^48 + 2^44 + 2^42 - 2^39 - 1"
"r2": 209346664877247
"r2_hex": "0xbe6651984cbf"
"r2_bit": "2^48 - 2^46 - 2^41 + 2^39 - 2^37 + 2^35 - 2^33 + 2^30 + 2^28 + 2^25 - 2^23 + 2^21 - 2^19 + 2^14 + 2^12 - 2^10 + 2^8 - 2^6 - 1"
"znprimroot": 31
- "n": 2244103232290817
"n_hex": "0x7f90000000001"
"n_bit": "2^51 - 2^43 + 2^40 + 1"
"n_fac": "2^40 * 13 * 157 + 1"
"nd": 2244103232290815
"nd_hex": "0x7f8ffffffffff"
"nd_bit": "2^51 - 2^43 + 2^40 - 1"
"r2": 74740393790307
"r2_hex": "0x43f9da9f4b63"
"r2_bit": "2^46 + 2^42 - 2^35 + 2^33 - 2^29 - 2^27 + 2^25 + 2^23 + 2^21 - 2^16 + 2^14 + 2^12 - 2^10 - 2^7 - 2^5 + 2^2 - 1"
"znprimroot": 3
- "n": 2226511046246401
"n_hex": "0x7e90000000001"
"n_bit": "2^51 - 2^45 + 2^43 + 2^40 + 1"
"n_fac": "2^40 * 3^4 * 5^2 + 1"
"nd": 2226511046246399
"nd_hex": "0x7e8ffffffffff"
"nd_bit": "2^51 - 2^45 + 2^43 + 2^40 - 1"
"r2": 943093746186825
"r2_hex": "0x359bd1fbb3a49"
"r2_bit": "2^50 - 2^47 - 2^45 - 2^43 + 2^41 - 2^38 - 2^34 + 2^32 + 2^29 - 2^22 - 2^18 - 2^16 + 2^14 - 2^11 + 2^9 + 2^6 + 2^3 + 1"
"znprimroot": 7
- "n": 1880164883496961
"n_hex": "0x6ae0000000001"
"n_bit": "2^51 - 2^48 - 2^46 - 2^44 - 2^41 + 1"
"n_fac": "2^41 * 3^2 * 5 * 19 + 1"
"nd": 1880164883496959
"nd_hex": "0x6adffffffffff"
"nd_bit": "2^51 - 2^48 - 2^46 - 2^44 - 2^41 - 1"
"r2": 968879358568117
"r2_hex": "0x37130cdff66b5"
"r2_bit": "2^50 - 2^47 - 2^44 + 2^40 + 2^38 - 2^36 + 2^32 - 2^30 + 2^28 - 2^25 - 2^15 - 2^13 + 2^11 - 2^8 - 2^6 - 2^4 + 2^2 + 1"
"znprimroot": 7
- "n": 2221013488107521
"n_hex": "0x7e40000000001"
"n_bit": "2^51 - 2^45 + 2^42 + 1"
"n_fac": "2^42 * 5 * 101 + 1"
"nd": 2221013488107519
"nd_hex": "0x7e3ffffffffff"
"nd_bit": "2^51 - 2^45 + 2^42 - 1"
"r2": 2097441444649988
"r2_hex": "0x7739ca43edc04"
"r2_bit": "2^51 - 2^47 - 2^44 + 2^42 - 2^39 + 2^37 - 2^34 + 2^31 + 2^29 + 2^26 + 2^22 - 2^16 - 2^13 - 2^10 + 2^2"
"znprimroot": 6
- "n": 2097868185796609
"n_hex": "0x7740000000001"
"n_bit": "2^51 - 2^47 - 2^44 + 2^42 + 1"
"n_fac": "2^42 * 3^2 * 53 + 1"
"nd": 2097868185796607
"nd_hex": "0x773ffffffffff"
"nd_bit": "2^51 - 2^47 - 2^44 + 2^42 - 1"
"r2": 1506031272796076
"r2_hex": "0x559ba3b091fac"
"r2_bit": "2^51 - 2^49 - 2^47 - 2^45 - 2^43 + 2^41 - 2^38 - 2^35 + 2^33 + 2^30 - 2^26 - 2^24 + 2^19 + 2^16 + 2^13 - 2^6 - 2^4 - 2^2"
"znprimroot": 19
- "n": 2190227162529793
"n_hex": "0x7c80000000001"
"n_bit": "2^51 - 2^46 + 2^43 + 1"
"n_fac": "2^43 * 3 * 83 + 1"
"nd": 2190227162529791
"nd_hex": "0x7c7ffffffffff"
"nd_bit": "2^51 - 2^46 + 2^43 - 1"
"r2": 341316669801502
"r2_hex": "0x1366cfadc041e"
"r2_bit": "2^48 + 2^46 - 2^43 - 2^41 + 2^39 - 2^36 - 2^34 + 2^32 - 2^26 - 2^24 - 2^21 - 2^18 + 2^10 + 2^5 - 2"
"znprimroot": 10
- "n": 1451355348664321
"n_hex": "0x5280000000001"
"n_bit": "2^50 + 2^48 + 2^45 + 2^43 + 1"
"n_fac": "2^43 * 3 * 5 * 11 + 1"
"nd": 1451355348664319
"nd_hex": "0x527ffffffffff"
"nd_bit": "2^50 + 2^48 + 2^45 + 2^43 - 1"
"r2": 139084889060249
"r2_hex": "0x7e7f3967f399"
"r2_bit": "2^47 - 2^41 + 2^39 - 2^32 + 2^30 - 2^27 + 2^25 - 2^23 - 2^21 + 2^19 - 2^12 + 2^10 - 2^7 + 2^5 - 2^3 + 1"
"znprimroot": 17
- "n": 2128654511374337
"n_hex": "0x7900000000001"
"n_bit": "2^51 - 2^47 + 2^44 + 1"
"n_fac": "2^44 * 11^2 + 1"
"nd": 2128654511374335
"nd_hex": "0x78fffffffffff"
"nd_bit": "2^51 - 2^47 + 2^44 - 1"
"r2": 1734502309999034
"r2_hex": "0x629854a0cb1ba"
"r2_bit": "2^51 - 2^49 + 2^45 + 2^43 + 2^41 - 2^39 + 2^34 + 2^32 + 2^30 + 2^27 + 2^25 + 2^20 - 2^18 + 2^16 - 2^14 - 2^12 + 2^9 - 2^6 - 2^3 + 2"
"znprimroot": 3
- "n": 1952732650930177
"n_hex": "0x6f00000000001"
"n_bit": "2^51 - 2^48 - 2^44 + 1"
"n_fac": "2^44 * 3 * 37 + 1"
"nd": 1952732650930175
"nd_hex": "0x6efffffffffff"
"nd_bit": "2^51 - 2^48 - 2^44 - 1"
"r2": 376409386085479
"r2_hex": "0x15657a3bf6c67"
"r2_bit": "2^49 - 2^47 - 2^45 - 2^43 - 2^41 + 2^39 - 2^37 - 2^35 - 2^31 + 2^29 + 2^26 - 2^22 - 2^15 - 2^12 - 2^10 + 2^7 - 2^5 + 2^3 - 1"
"znprimroot": 5
- "n": 263882790666241
"n_hex": "0xf00000000001"
"n_bit": "2^48 - 2^44 + 1"
"n_fac": "2^44 * 3 * 5 + 1"
"nd": 263882790666239
"nd_hex": "0xefffffffffff"
"nd_bit": "2^48 - 2^44 - 1"
"r2": 118454052699141
"r2_hex": "0x6bbbbbbbbc05"
"r2_bit": "2^47 - 2^44 - 2^42 - 2^38 - 2^34 - 2^30 - 2^26 - 2^22 - 2^18 - 2^14 - 2^10 + 2^2 + 1"
"znprimroot": 7
- "n": 1899956092796929
"n_hex": "0x6c00000000001"
"n_bit": "2^51 - 2^48 - 2^46 + 1"
"n_fac": "2^46 * 3^3 + 1"
"nd": 1899956092796927
"nd_hex": "0x6bfffffffffff"
"nd_bit": "2^51 - 2^48 - 2^46 - 1"
"r2": 1412587383121998
"r2_hex": "0x504bda12f684e"
"r2_bit": "2^50 + 2^48 + 2^42 + 2^40 - 2^38 - 2^33 - 2^31 + 2^29 + 2^24 + 2^22 - 2^20 - 2^15 - 2^13 + 2^11 + 2^6 + 2^4 - 2"
"znprimroot": 7
- "r": 52
"primes":
- "n": 4503599627370211
"n_hex": "0xffffffffffee3"
"n_bit": "2^52 - 2^8 - 2^5 + 2^2 - 1"
"n_fac": "2 * 3^2 * 5 * 409 * 122347178141 + 1"
"nd": 3539671286073653
"nd_hex": "0xc934ff1a0c935"
"nd_bit": "2^52 - 2^50 + 2^47 + 2^44 + 2^42 - 2^40 + 2^38 + 2^36 - 2^28 + 2^25 - 2^23 + 2^21 + 2^16 - 2^14 + 2^11 + 2^8 + 2^6 - 2^4 + 2^2 + 1"
"r2": 81225
"r2_hex": "0x13d49"
"r2_bit": "2^16 + 2^14 - 2^10 + 2^8 + 2^6 + 2^3 + 1"
"znprimroot": 3
- "n": 4503599627369797
"n_hex": "0xffffffffffd45"
"n_bit": "2^52 - 2^10 + 2^8 + 2^6 + 2^2 + 1"
"n_fac": "2^2 * 3^2 * 1297 * 96453345913 + 1"
"nd": 4091252880372339
"nd_hex": "0xe88f90a9ef273"
"nd_bit": "2^52 - 2^49 + 2^47 + 2^43 + 2^40 - 2^35 + 2^32 + 2^27 + 2^25 + 2^23 + 2^21 - 2^16 - 2^12 + 2^9 + 2^7 - 2^4 + 2^2 - 1"
"r2": 488601
"r2_hex": "0x77499"
"r2_bit": "2^19 - 2^15 - 2^12 + 2^10 + 2^7 + 2^5 - 2^3 + 1"
"znprimroot": 5
- "n": 4503599627368381
"n_hex": "0xffffffffff7bd"
"n_bit": "2^52 - 2^11 - 2^6 - 2^2 + 1"
"n_fac": "2^2 * 3 * 5 * 7 * 11 * 974805114149c + 1"
"nd": 2425342778049643
"nd_hex": "0x89dd61ebe846b"
"nd_bit": "2^51 + 2^47 + 2^45 - 2^41 - 2^37 - 2^35 - 2^33 + 2^29 - 2^24 - 2^22 - 2^17 + 2^15 + 2^10 + 2^7 - 2^4 - 2^2 - 1"
"r2": 4473225
"r2_hex": "0x444189"
"r2_bit": "2^22 + 2^18 + 2^14 + 2^9 - 2^7 + 2^3 + 1"
"znprimroot": 18
- "n": 4503599627366701
"n_hex": "0xffffffffff12d"
"n_bit": "2^52 - 2^12 + 2^8 + 2^6 - 2^4 - 2^2 + 1"
"n_fac": "2^2 * 3^2 * 5^2 * 7 * 714857083709c + 1"
"nd": 2829138738248027
"nd_hex": "0xa0d163183795b"
"nd_bit": "2^51 + 2^49 + 2^44 - 2^42 + 2^40 + 2^37 - 2^35 - 2^33 + 2^30 - 2^28 + 2^25 - 2^23 + 2^18 - 2^15 - 2^11 + 2^9 - 2^7 - 2^5 - 2^2 - 1"
"r2": 14402025
"r2_hex": "0xdbc1e9"
"r2_bit": "2^24 - 2^21 - 2^18 - 2^14 + 2^9 - 2^5 + 2^3 + 1"
"znprimroot": 6
- "n": 4503599627370313
"n_hex": "0xfffffffffff49"
"n_bit": "2^52 - 2^8 + 2^6 + 2^3 + 1"
"n_fac": "2^3 * 3 * 7 * 26807140639109 + 1"
"nd": 2707081743228167
"nd_hex": "0x99e1395aedd07"
"nd_bit": "2^51 + 2^49 - 2^47 + 2^45 - 2^41 + 2^36 + 2^34 - 2^31 + 2^29 - 2^27 - 2^25 - 2^22 - 2^20 - 2^16 - 2^13 - 2^10 + 2^8 + 2^3 - 1"
"r2": 33489
"r2_hex": "0x82d1"
"r2_bit": "2^15 + 2^10 - 2^8 - 2^6 + 2^4 + 1"
"znprimroot": 10
- "n": 4503599627366089
"n_hex": "0xfffffffffeec9"
"n_bit": "2^52 - 2^12 - 2^8 - 2^6 + 2^3 + 1"
"n_fac": "2^3 * 3^3 * 71 * 293661947533c + 1"
"nd": 2408664470549639
"nd_hex": "0x88eaae6267487"
"nd_bit": "2^51 + 2^47 + 2^44 - 2^40 - 2^38 - 2^36 - 2^34 - 2^32 - 2^29 + 2^27 - 2^25 + 2^21 + 2^19 - 2^17 + 2^15 - 2^12 + 2^10 + 2^7 + 2^3 - 1"
"r2": 19421649
"r2_hex": "0x12859d1"
"r2_bit": "2^24 + 2^21 + 2^19 + 2^15 - 2^13 - 2^11 + 2^9 - 2^6 + 2^4 + 1"
"znprimroot": 14
- "n": 4503599627361481
"n_hex": "0xfffffffffdcc9"
"n_bit": "2^52 - 2^13 - 2^10 + 2^8 - 2^6 + 2^3 + 1"
"n_fac": "2^3 * 3^2 * 5 * 41 * 293 * 1041371761 + 1"
"nd": 4278294754165383
"nd_hex": "0xf33161f110287"
"nd_bit": "2^52 - 2^48 + 2^46 - 2^44 + 2^42 - 2^40 + 2^37 - 2^35 - 2^33 + 2^29 - 2^24 + 2^20 + 2^16 + 2^9 + 2^7 + 2^3 - 1"
"r2": 81270225
"r2_hex": "0x4d815d1"
"r2_bit": "2^26 + 2^24 - 2^21 - 2^19 + 2^13 - 2^11 - 2^9 - 2^6 + 2^4 + 1"
"znprimroot": 7
- "n": 4503599627370449
"n_hex": "0xfffffffffffd1"
"n_bit": "2^52 - 2^6 + 2^4 + 1"
"n_fac": "2^4 * 11 * 167 * 239 * 641110271 + 1"
"nd": 1054033955342031
"nd_hex": "0x3bea3677d46cf"
"nd_bit": "2^50 - 2^46 - 2^41 + 2^39 + 2^37 + 2^34 - 2^31 - 2^29 + 2^27 - 2^23 - 2^18 + 2^16 + 2^14 + 2^11 - 2^8 - 2^6 + 2^4 - 1"
"r2": 2209
"r2_hex": "0x8a1"
"r2_bit": "2^11 + 2^7 + 2^5 + 1"
"znprimroot": 3
- "n": 4503599627370001
"n_hex": "0xffffffffffe11"
"n_bit": "2^52 - 2^9 + 2^4 + 1"
"n_fac": "2^4 * 3 * 5^4 * 150119987579c + 1"
"nd": 2174465274629391
"nd_hex": "0x7b9aa26454d0f"
"nd_bit": "2^51 - 2^46 - 2^43 + 2^41 - 2^39 + 2^37 + 2^35 + 2^33 + 2^29 + 2^27 - 2^25 + 2^22 + 2^18 + 2^16 + 2^14 + 2^12 - 2^10 + 2^8 + 2^4 - 1"
"r2": 245025
"r2_hex": "0x3bd21"
"r2_bit": "2^18 - 2^14 - 2^10 + 2^8 + 2^5 + 1"
"znprimroot": 23
- "n": 4503599627365009
"n_hex": "0xfffffffffea91"
"n_bit": "2^52 - 2^13 + 2^11 + 2^9 + 2^7 + 2^4 + 1"
"n_fac": "2^4 * 3^5 * 809 * 9349 * 153151 + 1"
"nd": 1545521796671887
"nd_hex": "0x57da4d5aee98f"
"nd_bit": "2^51 - 2^49 - 2^47 - 2^41 - 2^39 + 2^37 + 2^34 + 2^32 - 2^29 - 2^27 - 2^25 - 2^22 - 2^20 - 2^16 - 2^13 + 2^11 + 2^9 - 2^7 + 2^4 - 1"
"r2": 30107169
"r2_hex": "0x1cb6621"
"r2_bit": "2^25 - 2^22 + 2^20 - 2^18 - 2^15 - 2^13 + 2^11 - 2^9 + 2^5 + 1"
"znprimroot": 11
- "n": 4503599627363761
"n_hex": "0xfffffffffe5b1"
"n_bit": "2^52 - 2^13 + 2^11 - 2^9 - 2^6 - 2^4 + 1"
"n_fac": "2^4 * 3 * 5 * 7 * 11 * 617 * 394977761 + 1"
"nd": 1985328477158575
"nd_hex": "0x70da54ea4bcaf"
"nd_bit": "2^51 - 2^48 + 2^44 - 2^41 - 2^39 + 2^37 + 2^34 + 2^32 + 2^30 + 2^28 - 2^25 + 2^23 + 2^21 + 2^18 + 2^16 - 2^14 - 2^10 + 2^8 - 2^6 - 2^4 - 1"
"r2": 45360225
"r2_hex": "0x2b42461"
"r2_bit": "2^26 - 2^24 - 2^22 - 2^20 + 2^18 + 2^13 + 2^10 + 2^7 - 2^5 + 1"
"znprimroot": 13
- "n": 4503599627351761
"n_hex": "0xfffffffffb6d1"
"n_bit": "2^52 - 2^14 - 2^11 - 2^8 - 2^6 + 2^4 + 1"
"n_fac": "2^4 * 3^2 * 5 * 13^2 * 359 * 103097023 + 1"
"nd": 3024995874610639
"nd_hex": "0xabf37bc8d9dcf"
"nd_bit": "2^52 - 2^50 - 2^48 - 2^46 - 2^40 + 2^38 - 2^35 - 2^30 - 2^26 + 2^23 + 2^20 - 2^17 - 2^15 + 2^13 - 2^9 - 2^6 + 2^4 - 1"
"r2": 351000225
"r2_hex": "0x14ebd6a1"
"r2_bit": "2^28 + 2^26 + 2^24 - 2^20 - 2^18 - 2^13 - 2^11 - 2^9 + 2^7 + 2^5 + 1"
"znprimroot": 7
- "n": 4503599627340241
"n_hex": "0xfffffffff89d1"
"n_bit": "2^52 - 2^15 + 2^11 + 2^9 - 2^6 + 2^4 + 1"
"n_fac": "2^4 * 3^2 * 5 * 7 * 893571354631 + 1"
"nd": 2900285411987663
"nd_hex": "0xa4dcb51ba90cf"
"nd_bit": "2^51 + 2^49 + 2^46 + 2^44 - 2^41 - 2^38 + 2^36 - 2^34 - 2^32 + 2^30 + 2^28 + 2^25 - 2^22 - 2^19 + 2^17 + 2^15 + 2^12 + 2^8 - 2^6 + 2^4 - 1"
"r2": 915365025
"r2_hex": "0x368f5ca1"
"r2_bit": "2^30 - 2^27 - 2^25 + 2^23 + 2^20 - 2^15 - 2^13 - 2^10 + 2^7 + 2^5 + 1"
"znprimroot": 11
- "n": 4503599627368993
"n_hex": "0xffffffffffa21"
"n_bit": "2^52 - 2^11 + 2^9 + 2^5 + 1"
"n_fac": "2^5 * 3 * 359 * 130675476653 + 1"
"nd": 1740912430806559
"nd_hex": "0x62f59c305f61f"
"nd_bit": "2^51 - 2^49 + 2^46 - 2^44 - 2^39 - 2^37 - 2^35 + 2^33 - 2^30 + 2^26 - 2^24 + 2^19 - 2^17 - 2^11 - 2^9 + 2^5 - 1"
"r2": 2259009
"r2_hex": "0x227841"
"r2_bit": "2^21 + 2^17 + 2^15 - 2^11 + 2^6 + 1"
"znprimroot": 13
- "n": 4503599627364577
"n_hex": "0xfffffffffe8e1"
"n_bit": "2^52 - 2^13 + 2^11 + 2^8 - 2^5 + 1"
"n_fac": "2^5 * 3^3 * 83 * 62801199623 + 1"
"nd": 3423161804956895
"nd_hex": "0xc2958f764a4df"
"nd_bit": "2^52 - 2^50 + 2^45 + 2^43 + 2^41 - 2^39 - 2^37 - 2^35 + 2^32 - 2^27 - 2^23 - 2^21 + 2^18 + 2^15 + 2^13 + 2^10 + 2^8 - 2^5 - 1"
"r2": 35034561
"r2_hex": "0x21695c1"
"r2_bit": "2^25 + 2^21 - 2^19 - 2^17 + 2^15 + 2^13 - 2^11 - 2^9 - 2^6 + 1"
"znprimroot": 5
- "n": 4503599627321761
"n_hex": "0xfffffffff41a1"
"n_bit": "2^52 - 2^16 + 2^14 + 2^9 - 2^7 + 2^5 + 1"
"n_fac": "2^5 * 3 * 5 * 7 * 31 * 43237323611c + 1"
"nd": 3365478502702495
"nd_hex": "0xbf4e286a71d9f"
"nd_bit": "2^52 - 2^50 - 2^44 + 2^42 + 2^40 - 2^37 + 2^33 + 2^31 + 2^27 - 2^25 + 2^23 + 2^21 + 2^19 - 2^16 + 2^13 - 2^9 - 2^7 + 2^5 - 1"
"r2": 2375100225
"r2_hex": "0x8d912741"
"r2_bit": "2^31 + 2^28 - 2^25 - 2^23 + 2^20 + 2^16 + 2^13 + 2^11 - 2^8 + 2^6 + 1"
"znprimroot": 22
- "n": 4503599627254561
"n_hex": "0xffffffffe3b21"
"n_bit": "2^52 - 2^17 + 2^14 - 2^10 - 2^8 + 2^5 + 1"
"n_fac": "2^5 * 3^2 * 5 * 7 * 446785677307c + 1"
"nd": 3737908056618783
"nd_hex": "0xd479b89eaf71f"
"nd_bit": "2^52 - 2^50 + 2^48 + 2^46 + 2^43 - 2^39 + 2^37 - 2^34 - 2^31 + 2^27 + 2^25 - 2^20 - 2^18 - 2^16 - 2^11 - 2^8 + 2^5 - 1"
"r2": 13440924225
"r2_hex": "0x321243a41"
"r2_bit": "2^34 - 2^32 + 2^29 + 2^24 + 2^21 + 2^18 + 2^14 - 2^11 + 2^9 + 2^6 + 1"
"znprimroot": 13
- "n": 4503599627368769
"n_hex": "0xffffffffff941"
"n_bit": "2^52 - 2^11 + 2^8 + 2^6 + 1"
"n_fac": "2^6 * 23 * 157 * 5399 * 3609433 + 1"
"nd": 1225646684924223
"nd_hex": "0x45ab81b46693f"
"nd_bit": "2^50 + 2^47 - 2^45 - 2^42 - 2^40 - 2^38 - 2^35 + 2^29 - 2^26 - 2^24 + 2^22 + 2^19 - 2^17 + 2^15 - 2^13 + 2^11 + 2^8 + 2^6 - 1"
"r2": 2982529
"r2_hex": "0x2d8281"
"r2_bit": "2^22 - 2^20 - 2^17 - 2^15 + 2^9 + 2^7 + 1"
"znprimroot": 3
- "n": 4503599627342401
"n_hex": "0xfffffffff9241"
"n_bit": "2^52 - 2^15 + 2^12 + 2^9 + 2^6 + 1"
"n_fac": "2^6 * 3^2 * 5^2 * 13 * 59 * 269 * 431 * 3517 + 1"
"nd": 1053003949179455
"nd_hex": "0x3bdb39656823f"
"nd_bit": "2^50 - 2^46 - 2^41 - 2^38 - 2^36 + 2^34 - 2^31 + 2^29 - 2^27 - 2^25 + 2^23 - 2^21 - 2^19 - 2^17 + 2^15 + 2^9 + 2^6 - 1"
"r2": 789329025
"r2_hex": "0x2f0c3481"
"r2_bit": "2^30 - 2^28 - 2^24 + 2^20 - 2^18 + 2^14 - 2^12 + 2^10 + 2^7 + 1"
"znprimroot": 14
- "n": 4503599627244481
"n_hex": "0xffffffffe13c1"
"n_bit": "2^52 - 2^17 + 2^12 + 2^10 - 2^6 + 1"
"n_fac": "2^6 * 3^5 * 5 * 7 * 8273808839c + 1"
"nd": 3862949491114943
"nd_hex": "0xdb955043403bf"
"nd_bit": "2^52 - 2^49 - 2^46 - 2^43 + 2^40 + 2^38 + 2^36 + 2^34 + 2^32 + 2^26 + 2^22 - 2^20 + 2^18 + 2^10 - 2^6 - 1"
"r2": 15879780225
"r2_hex": "0x3b2823781"
"r2_bit": "2^34 - 2^30 - 2^28 + 2^25 + 2^23 + 2^17 + 2^14 - 2^11 - 2^7 + 1"
"znprimroot": 17
- "n": 4503599627367553
"n_hex": "0xffffffffff481"
"n_bit": "2^52 - 2^12 + 2^10 + 2^7 + 1"
"n_fac": "2^7 * 3 * 11728124029603 + 1"
"nd": 3175320838190207
"nd_hex": "0xb47effe9bb47f"
"nd_bit": "2^52 - 2^50 - 2^48 + 2^46 + 2^43 - 2^36 - 2^25 + 2^23 + 2^21 - 2^18 - 2^14 - 2^12 + 2^10 + 2^7 - 1"
"r2": 8661249
"r2_hex": "0x842901"
"r2_bit": "2^23 + 2^18 + 2^13 + 2^11 + 2^8 + 1"
"znprimroot": 5
- "n": 4503599627355649
"n_hex": "0xfffffffffc601"
"n_bit": "2^52 - 2^14 + 2^11 - 2^9 + 1"
"n_fac": "2^9 * 3^2 * 1049 * 931690819 + 1"
"nd": 3852644902487551
"nd_hex": "0xdaff5cadbc5ff"
"nd_bit": "2^52 - 2^49 - 2^46 - 2^44 - 2^35 - 2^33 - 2^30 + 2^28 - 2^26 - 2^24 - 2^21 - 2^18 - 2^14 + 2^11 - 2^9 - 1"
"r2": 220433409
"r2_hex": "0xd238c01"
"r2_bit": "2^28 - 2^26 + 2^24 + 2^21 + 2^18 - 2^15 + 2^12 - 2^10 + 1"
"znprimroot": 11
- "n": 4503599627281921
"n_hex": "0xffffffffea601"
"n_bit": "2^52 - 2^17 + 2^15 + 2^13 + 2^11 - 2^9 + 1"
"n_fac": "2^9 * 3^2 * 5 * 11 * 23 * 137 * 277 * 20359 + 1"
"nd": 3983403998946815
"nd_hex": "0xe26e2845aa5ff"
"nd_bit": "2^52 - 2^49 + 2^45 + 2^43 - 2^40 - 2^37 + 2^33 + 2^31 + 2^26 + 2^23 - 2^21 - 2^19 + 2^17 + 2^15 + 2^13 + 2^11 - 2^9 - 1"
"r2": 7845530625
"r2_hex": "0x1d3a14c01"
"r2_bit": "2^33 - 2^30 + 2^28 + 2^26 - 2^23 + 2^21 + 2^16 + 2^14 + 2^12 - 2^10 + 1"
"znprimroot": 7
- "n": 4503599627251201
"n_hex": "0xffffffffe2e01"
"n_bit": "2^52 - 2^17 + 2^14 - 2^12 - 2^9 + 1"
"n_fac": "2^9 * 3 * 5^2 * 7 * 1051 * 15941449 + 1"
"nd": 1765613403516415
"nd_hex": "0x645d0e7ba2dff"
"nd_bit": "2^51 - 2^49 + 2^46 + 2^43 - 2^41 - 2^38 + 2^36 + 2^32 - 2^29 + 2^27 - 2^22 - 2^19 + 2^17 + 2^14 - 2^12 - 2^9 - 1"
"r2": 14231297025
"r2_hex": "0x350405c01"
"r2_bit": "2^34 - 2^32 + 2^30 + 2^28 + 2^22 + 2^15 - 2^13 - 2^10 + 1"
"znprimroot": 34
- "n": 4503599626821121
"n_hex": "0xffffffff79e01"
"n_bit": "2^52 - 2^19 - 2^15 + 2^13 - 2^9 + 1"
"n_fac": "2^9 * 3^3 * 5 * 7 * 9308034943 + 1"
"nd": 1232471776796159
"nd_hex": "0x460ed32739dff"
"nd_bit": "2^50 + 2^47 - 2^45 + 2^40 - 2^36 - 2^34 + 2^32 + 2^30 - 2^28 + 2^25 + 2^23 - 2^20 + 2^18 - 2^15 + 2^13 - 2^9 - 1"
"r2": 301812890625
"r2_hex": "0x4645733c01"
"r2_bit": "2^38 + 2^35 - 2^33 + 2^30 + 2^27 - 2^25 - 2^23 - 2^20 + 2^18 - 2^16 + 2^14 - 2^10 + 1"
"znprimroot": 13
- "n": 4503599627277313
"n_hex": "0xffffffffe9401"
"n_bit": "2^52 - 2^17 + 2^15 + 2^12 + 2^10 + 1"
"n_fac": "2^10 * 3^3 * 67 * 2431203157 + 1"
"nd": 614718174565375
"nd_hex": "0x22f153a6e93ff"
"nd_bit": "2^49 + 2^46 - 2^44 - 2^40 + 2^36 + 2^34 + 2^32 + 2^30 - 2^27 + 2^25 + 2^23 - 2^20 - 2^17 + 2^15 + 2^12 + 2^10 - 1"
"r2": 8683071489
"r2_hex": "0x2058d2801"
"r2_bit": "2^33 + 2^27 - 2^25 - 2^23 + 2^20 - 2^18 + 2^16 + 2^13 + 2^11 + 1"
"znprimroot": 5
- "n": 4503599626890241
"n_hex": "0xffffffff8ac01"
"n_bit": "2^52 - 2^19 + 2^16 - 2^14 - 2^12 - 2^10 + 1"
"n_fac": "2^10 * 3^3 * 5 * 31 * 6361 * 165211 + 1"
"nd": 4440854658329599
"nd_hex": "0xfc6ef0c68abff"
"nd_bit": "2^52 - 2^46 + 2^43 - 2^40 - 2^36 - 2^32 + 2^28 - 2^26 + 2^23 - 2^21 + 2^19 + 2^16 - 2^14 - 2^12 - 2^10 - 1"
"r2": 230644865025
"r2_hex": "0x35b3815801"
"r2_bit": "2^38 - 2^35 - 2^33 - 2^30 - 2^28 + 2^26 - 2^23 + 2^17 - 2^15 - 2^13 - 2^11 + 1"
"znprimroot": 7
- "n": 4503599627139073
"n_hex": "0xffffffffc7801"
"n_bit": "2^52 - 2^18 + 2^15 - 2^11 + 1"
"n_fac": "2^11 * 3^3 * 81445305757 + 1"
"nd": 2224662192617471
"nd_hex": "0x7e75187bc77ff"
"nd_bit": "2^51 - 2^45 + 2^43 - 2^40 + 2^38 + 2^36 + 2^33 - 2^31 + 2^27 - 2^22 - 2^18 + 2^15 - 2^11 - 1"
"r2": 53556604929
"r2_hex": "0xc7838f001"
"r2_bit": "2^36 - 2^34 + 2^31 - 2^27 + 2^22 - 2^19 + 2^16 - 2^12 + 1"
"znprimroot": 7
- "n": 4503599626659841
"n_hex": "0xffffffff52801"
"n_bit": "2^52 - 2^20 + 2^18 + 2^16 + 2^13 + 2^11 + 1"
"n_fac": "2^11 * 3^2 * 5 * 7 * 67 * 104194421 + 1"
"nd": 1647362249664511
"nd_hex": "0x5da4469b527ff"
"nd_bit": "2^51 - 2^49 - 2^45 - 2^43 + 2^41 + 2^38 + 2^34 + 2^31 - 2^29 + 2^27 + 2^25 - 2^22 - 2^20 + 2^18 + 2^16 + 2^13 + 2^11 - 1"
"r2": 505030529025
"r2_hex": "0x75962a5001"
"r2_bit": "2^39 - 2^35 - 2^33 - 2^31 + 2^29 - 2^27 - 2^25 + 2^21 + 2^19 + 2^17 + 2^14 + 2^12 + 1"
"znprimroot": 29
- "n": 4503599627366401
"n_hex": "0xffffffffff001"
"n_bit": "2^52 - 2^12 + 1"
"n_fac": "2^12 * 3 * 5^2 * 11 * 17 * 31 * 41 * 61681 + 1"
"nd": 4222055914401791
"nd_hex": "0xeffeffeffefff"
"nd_bit": "2^52 - 2^48 - 2^36 - 2^24 - 2^12 - 1"
"r2": 16769025
"r2_hex": "0xffe001"
"r2_bit": "2^24 - 2^13 + 1"
"znprimroot": 19
- "n": 4503599625154561
"n_hex": "0xfffffffde3001"
"n_bit": "2^52 - 2^21 - 2^17 + 2^14 - 2^12 + 1"
"n_fac": "2^12 * 3 * 5 * 7 * 101 * 277 * 374291 + 1"
"nd": 3843036725260287
"nd_hex": "0xda738b6de2fff"
"nd_bit": "2^52 - 2^49 - 2^47 + 2^45 + 2^43 - 2^40 + 2^38 - 2^35 + 2^32 - 2^30 - 2^27 - 2^24 - 2^21 - 2^17 + 2^14 - 2^12 - 1"
"r2": 4910367924225
"r2_hex": "0x47748bc6001"
"r2_bit": "2^42 + 2^39 - 2^35 - 2^32 + 2^30 + 2^27 + 2^24 - 2^22 - 2^18 + 2^15 - 2^13 + 1"
"znprimroot": 11
- "n": 4503599627149313
"n_hex": "0xffffffffca001"
"n_bit": "2^52 - 2^18 + 2^15 + 2^13 + 1"
"n_fac": "2^13 * 19 * 43 * 431 * 1561243 + 1"
"nd": 2689906274770943
"nd_hex": "0x98e749bfc9fff"
"nd_bit": "2^51 + 2^49 - 2^47 + 2^44 - 2^41 + 2^39 - 2^36 + 2^34 + 2^31 + 2^29 - 2^26 - 2^18 + 2^15 + 2^13 - 1"
"r2": 48921919489
"r2_hex": "0xb63f94001"
"r2_bit": "2^36 - 2^34 - 2^31 - 2^29 + 2^26 - 2^19 + 2^16 + 2^14 + 1"
"znprimroot": 3
- "n": 4503599626838017
"n_hex": "0xffffffff7e001"
"n_bit": "2^52 - 2^19 - 2^13 + 1"
"n_fac": "2^13 * 3 * 19 * 47 * 205209337 + 1"
"nd": 2145413406121983
"nd_hex": "0x79f3dfbf7dfff"
"nd_bit": "2^51 - 2^47 + 2^45 - 2^40 + 2^38 - 2^33 - 2^26 - 2^19 - 2^13 - 1"
"r2": 283533885441
"r2_hex": "0x4203efc001"
"r2_bit": "2^38 + 2^33 + 2^26 - 2^20 - 2^14 + 1"
"znprimroot": 5
- "n": 4503599626690561
"n_hex": "0xffffffff5a001"
"n_bit": "2^52 - 2^19 - 2^17 - 2^15 + 2^13 + 1"
"n_fac": "2^13 * 3 * 5 * 11 * 1951 * 1707767 + 1"
"nd": 908284046712831
"nd_hex": "0x33a145bf59fff"
"nd_bit": "2^50 - 2^48 + 2^46 - 2^43 + 2^41 + 2^36 + 2^34 + 2^31 - 2^29 - 2^26 - 2^19 - 2^17 - 2^15 + 2^13 - 1"
"r2": 462311604225
"r2_hex": "0x6ba3eb4001"
"r2_bit": "2^39 - 2^36 - 2^34 - 2^31 + 2^29 + 2^26 - 2^20 - 2^18 - 2^16 + 2^14 + 1"
"znprimroot": 7
- "n": 4503599626493953
"n_hex": "0xffffffff2a001"
"n_bit": "2^52 - 2^20 + 2^17 + 2^15 + 2^13 + 1"
"n_fac": "2^13 * 3^2 * 61083979309c + 1"
"nd": 2064664262516735
"nd_hex": "0x755cd1bf29fff"
"nd_bit": "2^51 - 2^47 - 2^45 - 2^43 - 2^41 - 2^38 + 2^36 - 2^34 + 2^32 + 2^29 - 2^26 - 2^20 + 2^17 + 2^15 + 2^13 - 1"
"r2": 768327630849
"r2_hex": "0xb2e3e54001"
"r2_bit": "2^40 - 2^38 - 2^36 + 2^34 - 2^32 - 2^29 + 2^26 - 2^21 + 2^18 + 2^16 + 2^14 + 1"
"znprimroot": 5
- "n": 4503599627124737
"n_hex": "0xffffffffc4001"
"n_bit": "2^52 - 2^18 + 2^14 + 1"
"n_fac": "2^14 * 103 * 293 * 1663 * 5477 + 1"
"nd": 3170931136282623
"nd_hex": "0xb43f1effc3fff"
"nd_bit": "2^52 - 2^50 - 2^48 + 2^46 + 2^42 - 2^36 + 2^33 - 2^28 - 2^18 + 2^14 - 1"
"r2": 60397486081
"r2_hex": "0xe0ff88001"
"r2_bit": "2^36 - 2^33 + 2^28 - 2^19 + 2^15 + 1"
"znprimroot": 3
- "n": 4503599626682369
"n_hex": "0xffffffff58001"
"n_bit": "2^52 - 2^19 - 2^17 - 2^15 + 1"
"n_fac": "2^15 * 19 * 7233629129 + 1"
"nd": 2919829362540543
"nd_hex": "0xa5f91bff57fff"
"nd_bit": "2^51 + 2^49 + 2^47 - 2^45 - 2^39 + 2^36 + 2^33 - 2^30 - 2^19 - 2^17 - 2^15 - 1"
"r2": 473518768129
"r2_hex": "0x6e3feb0001"
"r2_bit": "2^39 - 2^36 - 2^33 + 2^30 - 2^20 - 2^18 - 2^16 + 1"
"znprimroot": 3
- "n": 4503599625830401
"n_hex": "0xfffffffe88001"
"n_bit": "2^52 - 2^21 + 2^19 + 2^15 + 1"
"n_fac": "2^15 * 3^2 * 5^2 * 610839793 + 1"
"nd": 3973462148808703
"nd_hex": "0xe1dd7bfe87fff"
"nd_bit": "2^52 - 2^49 + 2^45 - 2^41 - 2^37 - 2^35 - 2^30 - 2^21 + 2^19 + 2^15 - 1"
"r2": 2371892609025
"r2_hex": "0x2283fd10001"
"r2_bit": "2^41 + 2^37 + 2^35 + 2^30 - 2^22 + 2^20 + 2^16 + 1"
"znprimroot": 11
- "n": 4503599623864321
"n_hex": "0xfffffffca8001"
"n_bit": "2^52 - 2^22 + 2^19 + 2^17 + 2^15 + 1"
"n_fac": "2^15 * 3 * 5 * 7 * 1308942413c + 1"
"nd": 1571003470348287
"nd_hex": "0x594d1bfca7fff"
"nd_bit": "2^51 - 2^49 - 2^47 + 2^44 + 2^42 + 2^40 - 2^38 + 2^36 + 2^33 - 2^30 - 2^22 + 2^19 + 2^17 + 2^15 - 1"
"r2": 12293263130625
"r2_hex": "0xb2e3f950001"
"r2_bit": "2^44 - 2^42 - 2^40 + 2^38 - 2^36 - 2^33 + 2^30 - 2^23 + 2^20 + 2^18 + 2^16 + 1"
"znprimroot": 13
- "n": 4503599625535489
"n_hex": "0xfffffffe40001"
"n_bit": "2^52 - 2^21 + 2^18 + 1"
"n_fac": "2^18 * 3^3 * 636291451 + 1"
"nd": 4500232371175423
"nd_hex": "0xffcefffe3ffff"
"nd_bit": "2^52 - 2^42 + 2^40 - 2^36 - 2^21 + 2^18 - 1"
"r2": 3367250690049
"r2_hex": "0x30fffc80001"
"r2_bit": "2^42 - 2^40 + 2^36 - 2^22 + 2^19 + 1"
"znprimroot": 14
- "n": 4503599606661121
"n_hex": "0xffffffec40001"
"n_bit": "2^52 - 2^24 - 2^22 + 2^18 + 1"
"n_fac": "2^18 * 3^2 * 5 * 7 * 54539267 + 1"
"nd": 4074721352351743
"nd_hex": "0xe79effec3ffff"
"nd_bit": "2^52 - 2^49 + 2^47 - 2^43 + 2^41 - 2^36 - 2^24 - 2^22 + 2^18 - 1"
"r2": 428878212890625
"r2_hex": "0x1860ffd880001"
"r2_bit": "2^49 - 2^47 + 2^43 - 2^41 + 2^36 - 2^25 - 2^23 + 2^19 + 1"
"znprimroot": 19
- "n": 4503599571271681
"n_hex": "0xffffffca80001"
"n_bit": "2^52 - 2^26 + 2^23 + 2^21 + 2^19 + 1"
"n_fac": "2^19 * 3^2 * 5 * 11 * 19 * 913337 + 1"
"nd": 1356522414669823
"nd_hex": "0x4d1bffca7ffff"
"nd_bit": "2^50 + 2^48 - 2^46 + 2^44 + 2^41 - 2^38 - 2^26 + 2^23 + 2^21 + 2^19 - 1"
"r2": 3147077044404225
"r2_hex": "0xb2e3ff9500001"
"r2_bit": "2^52 - 2^50 - 2^48 + 2^46 - 2^44 - 2^41 + 2^38 - 2^27 + 2^24 + 2^22 + 2^20 + 1"
"znprimroot": 23
- "n": 4503593578659841
"n_hex": "0xffffe97780001"
"n_bit": "2^52 - 2^33 + 2^31 + 2^29 - 2^27 - 2^23 - 2^19 + 1"
"n_fac": "2^19 * 3^2 * 5 * 7 * 167 * 283 * 577 + 1"
"nd": 342766701248511
"nd_hex": "0x137be9777ffff"
"nd_bit": "2^48 + 2^46 - 2^43 - 2^38 - 2^33 + 2^31 + 2^29 - 2^27 - 2^23 - 2^19 - 1"
"r2": 4209948456640582
"r2_hex": "0xef4ed0247e046"
"r2_bit": "2^52 - 2^48 - 2^44 + 2^42 + 2^40 - 2^36 - 2^34 + 2^32 + 2^25 + 2^22 + 2^19 - 2^13 + 2^6 + 2^3 - 2"
"znprimroot": 17
- "n": 4503599626321921
"n_hex": "0xffffffff00001"
"n_bit": "2^52 - 2^20 + 1"
"n_fac": "2^20 * 3 * 5 * 17 * 257 * 65537 + 1"
"nd": 4502500114694143
"nd_hex": "0xffeffffefffff"
"nd_bit": "2^52 - 2^40 - 2^20 - 1"
"r2": 1099509530625
"r2_hex": "0xffffe00001"
"r2_bit": "2^40 - 2^21 + 1"
"znprimroot": 7
- "n": 4503599469035521
"n_hex": "0xffffff6900001"
"n_bit": "2^52 - 2^27 - 2^25 + 2^23 + 2^20 + 1"
"n_fac": "2^20 * 3 * 5 * 7 * 71 * 576119 + 1"
"nd": 1951632980967423
"nd_hex": "0x6eefff68fffff"
"nd_bit": "2^51 - 2^48 - 2^44 - 2^40 - 2^27 - 2^25 + 2^23 + 2^20 - 1"
"r2": 2551966963073020
"r2_hex": "0x911001c4ffffc"
"r2_bit": "2^51 + 2^48 + 2^44 + 2^40 + 2^29 - 2^26 + 2^22 + 2^20 - 2^2"
"znprimroot": 19
- "n": 4503599292874753
"n_hex": "0xfffffec100001"
"n_bit": "2^52 - 2^28 - 2^26 + 2^20 + 1"
"n_fac": "2^20 * 3^3 * 7 * 139 * 163487 + 1"
"nd": 702587595653119
"nd_hex": "0x27effec0fffff"
"nd_bit": "2^49 + 2^47 - 2^40 - 2^28 - 2^26 + 2^20 - 1"
"r2": 3801019056127977
"r2_hex": "0xd8101b69fffe9"
"r2_bit": "2^52 - 2^49 - 2^47 + 2^40 + 2^33 - 2^30 - 2^27 - 2^25 + 2^23 + 2^21 - 2^5 + 2^3 + 1"
"znprimroot": 5
- "n": 4503598839889921
"n_hex": "0xfffffd1100001"
"n_bit": "2^52 - 2^30 + 2^28 + 2^24 + 2^20 + 1"
"n_fac": "2^20 * 3^3 * 5 * 563 * 56509 + 1"
"nd": 1371090212356095
"nd_hex": "0x4deffd10fffff"
"nd_bit": "2^50 + 2^48 - 2^45 - 2^40 - 2^30 + 2^28 + 2^24 + 2^20 - 1"
"r2": 3132614937411448
"r2_hex": "0xb2118c08fff78"
"r2_bit": "2^52 - 2^50 - 2^48 + 2^45 + 2^40 + 2^37 - 2^35 + 2^32 - 2^30 + 2^23 + 2^20 - 2^7 - 2^3"
"znprimroot": 13
- "n": 4503592752906241
"n_hex": "0xffffe66400001"
"n_bit": "2^52 - 2^33 + 2^31 - 2^29 + 2^27 - 2^25 + 2^22 + 1"
"n_fac": "2^22 * 3^3 * 5 * 7^2 * 37 * 41 * 107 + 1"
"nd": 2515675729887231
"nd_hex": "0x8effe663fffff"
"nd_bit": "2^51 + 2^48 - 2^44 - 2^33 + 2^31 - 2^29 + 2^27 - 2^25 + 2^22 - 1"
"r2": 2060037027518212
"r2_hex": "0x75197bf3fd704"
"r2_bit": "2^51 - 2^48 + 2^46 + 2^44 + 2^41 - 2^39 + 2^37 - 2^35 - 2^30 - 2^24 + 2^22 - 2^13 - 2^11 - 2^8 + 2^2"
"znprimroot": 19
- "n": 4503598478131201
"n_hex": "0xfffffbb800001"
"n_bit": "2^52 - 2^30 - 2^26 - 2^23 + 1"
"n_fac": "2^23 * 3 * 5^2 * 7 * 1022611 + 1"
"nd": 3307329827110911
"nd_hex": "0xbbfffbb7fffff"
"nd_bit": "2^52 - 2^50 - 2^46 - 2^30 - 2^26 - 2^23 - 1"
"r2": 1196603079655132
"r2_hex": "0x4404ddd7ffedc"
"r2_bit": "2^50 + 2^46 + 2^38 + 2^36 - 2^33 - 2^29 - 2^25 - 2^23 - 2^8 - 2^5 - 2^2"
"znprimroot": 13
- "n": 4503559722762241
"n_hex": "0xffff6b5800001"
"n_bit": "2^52 - 2^35 - 2^32 - 2^30 - 2^27 - 2^25 - 2^23 + 1"
"n_fac": "2^23 * 3^2 * 5 * 7 * 151 * 11287 + 1"
"nd": 492541304635391
"nd_hex": "0x1bff6b57fffff"
"nd_bit": "2^49 - 2^46 - 2^35 - 2^32 - 2^30 - 2^27 - 2^25 - 2^23 - 1"
"r2": 106091295447763
"r2_hex": "0x607d4dfa9ad3"
"r2_bit": "2^47 - 2^45 + 2^39 - 2^34 + 2^32 + 2^30 + 2^28 - 2^25 - 2^19 + 2^17 + 2^15 + 2^13 - 2^10 - 2^8 - 2^6 + 2^4 + 2^2 - 1"
"znprimroot": 13
- "n": 4503599409266689
"n_hex": "0xffffff3000001"
"n_bit": "2^52 - 2^28 + 2^26 - 2^24 + 1"
"n_fac": "2^24 * 3 * 79 * 1132639 + 1"
"nd": 1970324618870783
"nd_hex": "0x6fffff2ffffff"
"nd_bit": "2^51 - 2^48 - 2^28 + 2^26 - 2^24 - 1"
"r2": 2533276535226359
"r2_hex": "0x9000067fffff7"
"r2_bit": "2^51 + 2^48 + 2^31 - 2^29 + 2^27 - 2^3 - 1"
"znprimroot": 11
- "n": 4503599207940097
"n_hex": "0xfffffe7000001"
"n_bit": "2^52 - 2^29 + 2^27 - 2^24 + 1"
"n_fac": "2^24 * 3^3 * 11 * 607 * 1489 + 1"
"nd": 4222124231229439
"nd_hex": "0xeffffe6ffffff"
"nd_bit": "2^52 - 2^48 - 2^29 + 2^27 - 2^24 - 1"
"r2": 281490495635418
"r2_hex": "0x100039cffffda"
"r2_bit": "2^48 + 2^34 - 2^31 + 2^29 - 2^26 + 2^24 - 2^5 - 2^3 + 2"
"znprimroot": 7
- "n": 4503598603960321
"n_hex": "0xfffffc3000001"
"n_bit": "2^52 - 2^30 + 2^26 - 2^24 + 1"
"n_fac": "2^24 * 3^2 * 5 * 1181 * 5051 + 1"
"nd": 1970323813564415
"nd_hex": "0x6ffffc2ffffff"
"nd_bit": "2^51 - 2^48 - 2^30 + 2^26 - 2^24 - 1"
"r2": 2533510174736153
"r2_hex": "0x90036cdffff19"
"r2_bit": "2^51 + 2^48 + 2^38 - 2^35 - 2^32 - 2^30 + 2^28 - 2^25 - 2^8 + 2^5 - 2^3 + 1"
"znprimroot": 7
- "n": 4503435529420801
"n_hex": "0xfffd9cb000001"
"n_bit": "2^52 - 2^37 - 2^35 + 2^33 - 2^30 + 2^28 - 2^26 - 2^24 + 1"
"n_fac": "2^24 * 3^2 * 5^2 * 7^2 * 97 * 251 + 1"
"nd": 1970160739024895
"nd_hex": "0x6ffd9caffffff"
"nd_bit": "2^51 - 2^48 - 2^37 - 2^35 + 2^33 - 2^30 + 2^28 - 2^26 - 2^24 - 1"
"r2": 1966174600741560
"r2_hex": "0x6fc39b2a4c2b8"
"r2_bit": "2^51 - 2^48 - 2^42 + 2^38 - 2^35 + 2^33 - 2^30 - 2^28 + 2^25 + 2^23 + 2^21 + 2^18 + 2^16 - 2^14 + 2^10 - 2^8 - 2^6 - 2^3"
"znprimroot": 11
- "n": 4503598117421057
"n_hex": "0xfffffa6000001"
"n_bit": "2^52 - 2^31 + 2^29 + 2^27 - 2^25 + 1"
"n_fac": "2^25 * 67 * 281 * 7129 + 1"
"nd": 3377698210578431
"nd_hex": "0xbffffa5ffffff"
"nd_bit": "2^52 - 2^50 - 2^31 + 2^29 + 2^27 - 2^25 - 1"
"r2": 1126660921359879
"r2_hex": "0x400b12ffffe07"
"r2_bit": "2^50 + 2^40 - 2^38 - 2^36 + 2^32 + 2^30 - 2^28 - 2^9 + 2^3 - 1"
"znprimroot": 3
- "n": 4503597647659009
"n_hex": "0xfffff8a000001"
"n_bit": "2^52 - 2^31 + 2^27 + 2^25 + 1"
"n_fac": "2^25 * 3 * 17^2 * 154807 + 1"
"nd": 3377697740816383
"nd_hex": "0xbffff89ffffff"
"nd_bit": "2^52 - 2^50 - 2^31 + 2^27 + 2^25 - 1"
"r2": 1127618296413339
"r2_hex": "0x4019017fffc9b"
"r2_bit": "2^50 + 2^41 - 2^39 + 2^36 + 2^29 - 2^27 - 2^10 + 2^7 + 2^5 - 2^2 - 1"
"znprimroot": 29
- "n": 4503596037046273
"n_hex": "0xfffff2a000001"
"n_bit": "2^52 - 2^32 + 2^29 + 2^27 + 2^25 + 1"
"n_fac": "2^25 * 3^3 * 4971023 + 1"
"nd": 3377696130203647
"nd_hex": "0xbffff29ffffff"
"nd_bit": "2^52 - 2^50 - 2^32 + 2^29 + 2^27 + 2^25 - 1"
"r2": 1136168234120403
"r2_hex": "0x40956c7fff4d3"
"r2_bit": "2^50 + 2^43 + 2^41 - 2^39 - 2^37 - 2^35 - 2^32 - 2^30 + 2^27 - 2^12 + 2^10 + 2^8 - 2^6 + 2^4 + 2^2 - 1"
"znprimroot": 5
- "n": 4503595835719681
"n_hex": "0xfffff1e000001"
"n_bit": "2^52 - 2^32 + 2^29 - 2^25 + 1"
"n_fac": "2^25 * 3 * 5 * 7^3 * 19 * 1373 + 1"
"nd": 3377695928877055
"nd_hex": "0xbffff1dffffff"
"nd_bit": "2^52 - 2^50 - 2^32 + 2^29 - 2^25 - 1"
"r2": 1137995272942473
"r2_hex": "0x40b002bfff389"
"r2_bit": "2^50 + 2^44 - 2^42 - 2^40 + 2^30 - 2^28 - 2^26 - 2^12 + 2^10 - 2^7 + 2^3 + 1"
"znprimroot": 11
- "n": 4503591809187841
"n_hex": "0xffffe2e000001"
"n_bit": "2^52 - 2^33 + 2^30 - 2^28 - 2^25 + 1"
"n_fac": "2^25 * 3^2 * 5 * 2982611 + 1"
"nd": 3377691902345215
"nd_hex": "0xbfffe2dffffff"
"nd_bit": "2^52 - 2^50 - 2^33 + 2^30 - 2^28 - 2^25 - 1"
"r2": 1231992645470973
"r2_hex": "0x4607da3ffcafd"
"r2_bit": "2^50 + 2^47 - 2^45 + 2^39 - 2^33 - 2^31 + 2^29 + 2^26 - 2^14 + 2^12 - 2^10 - 2^8 - 2^2 + 1"
"znprimroot": 7
- "n": 4503597144342529
"n_hex": "0xfffff6c000001"
"n_bit": "2^52 - 2^31 - 2^28 - 2^26 + 1"
"n_fac": "2^26 * 3 * 73 * 181 * 1693 + 1"
"nd": 4503597144342527
"nd_hex": "0xfffff6bffffff"
"nd_bit": "2^52 - 2^31 - 2^28 - 2^26 - 1"
"r2": 3394299230888
"r2_hex": "0x3164bfffaa8"
"r2_bit": "2^42 - 2^40 + 2^37 - 2^35 - 2^33 + 2^30 + 2^28 - 2^26 - 2^11 + 2^9 + 2^7 + 2^5 + 2^3"
"znprimroot": 11
- "n": 4503592312504321
"n_hex": "0xffffe4c000001"
"n_bit": "2^52 - 2^33 + 2^30 + 2^28 - 2^26 + 1"
"n_fac": "2^26 * 3 * 5 * 7 * 29 * 22039 + 1"
"nd": 4503592312504319
"nd_hex": "0xffffe4bffffff"
"nd_bit": "2^52 - 2^33 + 2^30 + 2^28 - 2^26 - 1"
"r2": 86893295292824
"r2_hex": "0x4f076bffd198"
"r2_bit": "2^46 + 2^44 - 2^40 + 2^35 - 2^31 - 2^28 - 2^26 - 2^14 + 2^12 + 2^9 - 2^7 + 2^5 - 2^3"
"znprimroot": 34
- "n": 4503457423687681
"n_hex": "0xfffdee4000001"
"n_bit": "2^52 - 2^37 - 2^32 - 2^29 + 2^26 + 1"
"n_fac": "2^26 * 3^3 * 5 * 53 * 83 * 113 + 1"
"nd": 4503457423687679
"nd_hex": "0xfffdee3ffffff"
"nd_bit": "2^52 - 2^37 - 2^32 - 2^29 + 2^26 - 1"
"r2": 3529649484954563
"r2_hex": "0xc8a328fbb7bc3"
"r2_bit": "2^52 - 2^50 + 2^47 + 2^43 + 2^41 + 2^38 - 2^36 + 2^33 + 2^31 + 2^28 - 2^22 - 2^18 - 2^15 - 2^10 - 2^6 + 2^2 - 1"
"znprimroot": 11
- "n": 4503282269552641
"n_hex": "0xfffb61c000001"
"n_bit": "2^52 - 2^38 - 2^35 - 2^33 + 2^29 - 2^26 + 1"
"n_fac": "2^26 * 3^2 * 5 * 7 * 213029 + 1"
"nd": 4503282269552639
"nd_hex": "0xfffb61bffffff"
"nd_bit": "2^52 - 2^38 - 2^35 - 2^33 + 2^29 - 2^26 - 1"
"r2": 39343958441128
"r2_hex": "0x23c87aaabca8"
"r2_bit": "2^45 + 2^42 - 2^38 + 2^35 + 2^31 - 2^26 - 2^24 - 2^22 - 2^20 - 2^18 - 2^16 - 2^14 - 2^10 + 2^7 + 2^5 + 2^3"
"znprimroot": 34
- "n": 4503588487299073
"n_hex": "0xffffd68000001"
"n_bit": "2^52 - 2^33 - 2^31 - 2^29 + 2^27 + 1"
"n_fac": "2^27 * 3^2 * 1429 * 2609 + 1"
"nd": 4503588487299071
"nd_hex": "0xffffd67ffffff"
"nd_bit": "2^52 - 2^33 - 2^31 - 2^29 + 2^27 - 1"
"r2": 306953527989341
"r2_hex": "0x1172c2fff945d"
"r2_bit": "2^48 + 2^45 - 2^43 - 2^40 + 2^38 - 2^36 - 2^34 + 2^30 - 2^28 - 2^15 + 2^12 + 2^10 + 2^7 - 2^5 - 2^2 + 1"
"znprimroot": 5
- "n": 4503218851676161
"n_hex": "0xfffa758000001"
"n_bit": "2^52 - 2^39 + 2^37 + 2^35 - 2^31 - 2^29 - 2^27 + 1"
"n_fac": "2^27 * 3^2 * 5 * 7 * 11 * 23 * 421 + 1"
"nd": 4503218851676159
"nd_hex": "0xfffa757ffffff"
"nd_bit": "2^52 - 2^39 + 2^37 + 2^35 - 2^31 - 2^29 - 2^27 - 1"
"r2": 1035321698727547
"r2_hex": "0x3ad9e9e14b67b"
"r2_bit": "2^50 - 2^46 - 2^44 - 2^41 - 2^39 + 2^37 - 2^33 + 2^31 + 2^29 - 2^25 + 2^20 + 2^18 + 2^16 - 2^14 - 2^11 - 2^9 + 2^7 - 2^2 - 1"
"znprimroot": 19
- "n": 4503542987489281
"n_hex": "0xffff2d0000001"
"n_bit": "2^52 - 2^36 + 2^34 - 2^32 - 2^30 + 2^28 + 1"
"n_fac": "2^28 * 3 * 5 * 7 * 23 * 6947 + 1"
"nd": 4503542987489279
"nd_hex": "0xffff2cfffffff"
"nd_bit": "2^52 - 2^36 + 2^34 - 2^32 - 2^30 + 2^28 - 1"
"r2": 4318169245491561
"r2_hex": "0xf575a1ff52169"
"r2_bit": "2^52 - 2^47 - 2^45 - 2^43 - 2^39 - 2^37 - 2^35 + 2^33 + 2^29 - 2^20 + 2^18 + 2^16 + 2^13 + 2^9 - 2^7 - 2^5 + 2^3 + 1"
"znprimroot": 19
- "n": 4503507554009089
"n_hex": "0xfffea90000001"
"n_bit": "2^52 - 2^37 + 2^35 + 2^33 + 2^31 + 2^28 + 1"
"n_fac": "2^28 * 3^2 * 37 * 83 * 607 + 1"
"nd": 4503507554009087
"nd_hex": "0xfffea8fffffff"
"nd_bit": "2^52 - 2^37 + 2^35 + 2^33 + 2^31 + 2^28 - 1"
"r2": 2183951139686091
"r2_hex": "0x7c24abfe346cb"
"r2_bit": "2^51 - 2^46 + 2^41 + 2^38 + 2^36 - 2^34 - 2^32 - 2^30 - 2^21 + 2^18 - 2^16 + 2^14 + 2^11 - 2^8 - 2^6 + 2^4 - 2^2 - 1"
"znprimroot": 7
- "n": 4503092015923201
"n_hex": "0xfff89d0000001"
"n_bit": "2^52 - 2^39 + 2^35 + 2^33 - 2^30 + 2^28 + 1"
"n_fac": "2^28 * 3^2 * 5^2 * 7 * 10651 + 1"
"nd": 4503092015923199
"nd_hex": "0xfff89cfffffff"
"nd_bit": "2^52 - 2^39 + 2^35 + 2^33 - 2^30 + 2^28 - 1"
"r2": 2088650323452480
"r2_hex": "0x76b9dcc96e240"
"r2_bit": "2^51 - 2^47 - 2^44 - 2^42 - 2^39 + 2^37 - 2^33 - 2^30 + 2^28 - 2^26 + 2^23 + 2^21 - 2^19 - 2^16 - 2^13 + 2^9 + 2^6"
"znprimroot": 22
- "n": 4503591574306817
"n_hex": "0xffffe20000001"
"n_bit": "2^52 - 2^33 + 2^29 + 1"
"n_fac": "2^29 * 8388593 + 1"
"nd": 4503591574306815
"nd_hex": "0xffffe1fffffff"
"nd_bit": "2^52 - 2^33 + 2^29 - 1"
"r2": 115948010850241
"r2_hex": "0x69743fffc7c1"
"r2_bit": "2^47 - 2^45 + 2^43 + 2^41 - 2^39 - 2^36 + 2^34 + 2^30 - 2^14 + 2^11 - 2^6 + 1"
"znprimroot": 3
- "n": 4503394005811201
"n_hex": "0xfffd020000001"
"n_bit": "2^52 - 2^38 + 2^36 + 2^29 + 1"
"n_fac": "2^29 * 3^3 * 5^2 * 17^2 * 43 + 1"
"nd": 4503394005811199
"nd_hex": "0xfffd01fffffff"
"nd_bit": "2^52 - 2^38 + 2^36 + 2^29 - 1"
"r2": 2941892600839701
"r2_hex": "0xa73a2bf70be15"
"r2_bit": "2^51 + 2^49 + 2^47 - 2^44 + 2^42 - 2^39 + 2^37 + 2^34 - 2^32 - 2^30 - 2^23 - 2^20 + 2^16 - 2^14 - 2^9 + 2^4 + 2^2 + 1"
"znprimroot": 13
- "n": 4503579226275841
"n_hex": "0xffffb40000001"
"n_bit": "2^52 - 2^34 - 2^32 + 2^30 + 1"
"n_fac": "2^30 * 3 * 5 * 279619 + 1"
"nd": 4503579226275839
"nd_hex": "0xffffb3fffffff"
"nd_bit": "2^52 - 2^34 - 2^32 + 2^30 - 1"
"r2": 1885346761447169
"r2_hex": "0x6b2b67ffe9701"
"r2_bit": "2^51 - 2^48 - 2^46 - 2^44 + 2^42 - 2^40 - 2^38 - 2^35 - 2^33 + 2^31 - 2^17 + 2^15 + 2^13 - 2^11 - 2^8 + 1"
"znprimroot": 7
- "n": 4503495474413569
"n_hex": "0xfffe7c0000001"
"n_bit": "2^52 - 2^37 + 2^35 - 2^30 + 1"
"n_fac": "2^30 * 3^3 * 31 * 5011 + 1"
"nd": 4503495474413567
"nd_hex": "0xfffe7bfffffff"
"nd_bit": "2^52 - 2^37 + 2^35 - 2^30 - 1"
"r2": 3181184563232458
"r2_hex": "0xb4d453fdb3eca"
"r2_bit": "2^52 - 2^50 - 2^48 + 2^46 + 2^44 - 2^42 + 2^40 + 2^38 + 2^34 + 2^32 + 2^30 - 2^21 - 2^18 - 2^16 + 2^14 - 2^8 - 2^6 + 2^3 + 2"
"znprimroot": 17
- "n": 4502161887068161
"n_hex": "0xffeb140000001"
"n_bit": "2^52 - 2^40 - 2^38 - 2^36 + 2^32 + 2^30 + 1"
"n_fac": "2^30 * 3^5 * 5 * 7 * 17 * 29 + 1"
"nd": 4502161887068159
"nd_hex": "0xffeb13fffffff"
"nd_bit": "2^52 - 2^40 - 2^38 - 2^36 + 2^32 + 2^30 - 1"
"r2": 842361812953714
"r2_hex": "0x2fe1fa4a22a72"
"r2_bit": "2^50 - 2^48 - 2^41 + 2^37 - 2^31 + 2^29 + 2^26 + 2^23 + 2^21 + 2^17 + 2^13 + 2^11 + 2^9 + 2^7 - 2^4 + 2"
"znprimroot": 19
- "n": 4503567415115777
"n_hex": "0xffff880000001"
"n_bit": "2^52 - 2^35 + 2^31 + 1"
"n_fac": "2^31 * 7 * 17 * 17623 + 1"
"nd": 4503567415115775
"nd_hex": "0xffff87fffffff"
"nd_bit": "2^52 - 2^35 + 2^31 - 1"
"r2": 2918071647632384
"r2_hex": "0xa5df87ffc7c00"
"r2_bit": "2^51 + 2^49 + 2^47 - 2^45 - 2^41 - 2^35 + 2^31 - 2^18 + 2^15 - 2^10"
"znprimroot": 6
- "n": 4503292537208833
"n_hex": "0xfffb880000001"
"n_bit": "2^52 - 2^38 - 2^35 + 2^31 + 1"
"n_fac": "2^31 * 3^4 * 25889 + 1"
"nd": 4503292537208831
"nd_hex": "0xfffb87fffffff"
"nd_bit": "2^52 - 2^38 - 2^35 + 2^31 - 1"
"r2": 4200132249679470
"r2_hex": "0xeebff7ec0766e"
"r2_bit": "2^52 - 2^48 - 2^44 - 2^42 - 2^31 - 2^24 - 2^22 + 2^15 - 2^11 - 2^9 + 2^7 - 2^4 - 2"
"znprimroot": 5
- "n": 4495059084902401
"n_hex": "0xff83b80000001"
"n_bit": "2^52 - 2^43 + 2^38 - 2^34 - 2^31 + 1"
"n_fac": "2^31 * 3^3 * 5^2 * 7 * 443 + 1"
"nd": 4495059084902399
"nd_hex": "0xff83b7fffffff"
"nd_bit": "2^52 - 2^43 + 2^38 - 2^34 - 2^31 - 1"
"r2": 1559729063931742
"r2_hex": "0x58a90b8cd2f5e"
"r2_bit": "2^51 - 2^49 - 2^47 + 2^43 + 2^41 + 2^39 + 2^36 + 2^32 - 2^30 - 2^27 + 2^24 - 2^22 + 2^20 - 2^18 + 2^16 + 2^14 - 2^12 - 2^7 - 2^5 - 2"
"znprimroot": 26
- "n": 4502951087308801
"n_hex": "0xfff6900000001"
"n_bit": "2^52 - 2^39 - 2^37 + 2^35 + 2^32 + 1"
"n_fac": "2^32 * 3 * 5^2 * 7 * 1997 + 1"
"nd": 4502951087308799
"nd_hex": "0xfff68ffffffff"
"nd_bit": "2^52 - 2^39 - 2^37 + 2^35 + 2^32 - 1"
"r2": 4341112331221879
"r2_hex": "0xf6c37fa6ebb77"
"r2_bit": "2^52 - 2^47 - 2^44 - 2^42 + 2^38 - 2^35 - 2^27 + 2^25 + 2^23 - 2^20 - 2^16 - 2^14 - 2^10 - 2^7 - 2^3 - 1"
"znprimroot": 11
- "n": 4493029712855041
"n_hex": "0xff66300000001"
"n_bit": "2^52 - 2^43 - 2^41 + 2^39 - 2^37 + 2^34 - 2^32 + 1"
"n_fac": "2^32 * 3^6 * 5 * 7 * 41 + 1"
"nd": 4493029712855039
"nd_hex": "0xff662ffffffff"
"nd_bit": "2^52 - 2^43 - 2^41 + 2^39 - 2^37 + 2^34 - 2^32 - 1"
"r2": 1216756548955959
"r2_hex": "0x452a235e0ef37"
"r2_bit": "2^50 + 2^46 + 2^44 + 2^41 + 2^39 + 2^37 + 2^33 + 2^30 - 2^27 - 2^25 - 2^21 + 2^16 - 2^12 - 2^8 + 2^6 - 2^3 - 1"
"znprimroot": 19
- "n": 4503556677697537
"n_hex": "0xffff600000001"
"n_bit": "2^52 - 2^35 - 2^33 + 1"
"n_fac": "2^33 * 3 * 174761 + 1"
"nd": 4503556677697535
"nd_hex": "0xffff5ffffffff"
"nd_bit": "2^52 - 2^35 - 2^33 - 1"
"r2": 4081430111567870
"r2_hex": "0xe8009fff9bffe"
"r2_bit": "2^52 - 2^49 + 2^47 + 2^35 + 2^33 - 2^19 + 2^17 - 2^14 - 2"
"znprimroot": 7
- "n": 4502113568686081
"n_hex": "0xffea600000001"
"n_bit": "2^52 - 2^41 + 2^39 + 2^37 + 2^35 - 2^33 + 1"
"n_fac": "2^33 * 3^2 * 5 * 19 * 613 + 1"
"nd": 4502113568686079
"nd_hex": "0xffea5ffffffff"
"nd_bit": "2^52 - 2^41 + 2^39 + 2^37 + 2^35 - 2^33 - 1"
"r2": 287135253088192
"r2_hex": "0x10525e2c347c0"
"r2_bit": "2^48 + 2^42 + 2^40 + 2^37 + 2^35 - 2^33 - 2^29 + 2^26 - 2^24 - 2^22 + 2^18 - 2^16 + 2^14 + 2^11 - 2^6"
"znprimroot": 7
- "n": 4488970968760321
"n_hex": "0xff2b200000001"
"n_bit": "2^52 - 2^44 + 2^42 - 2^40 - 2^38 - 2^36 + 2^33 + 1"
"n_fac": "2^33 * 3^3 * 5 * 7^2 * 79 + 1"
"nd": 4488970968760319
"nd_hex": "0xff2b1ffffffff"
"nd_bit": "2^52 - 2^44 + 2^42 - 2^40 - 2^38 - 2^36 + 2^33 - 1"
"r2": 3684450152543011
"r2_hex": "0xd16fce688f323"
"r2_bit": "2^52 - 2^50 + 2^48 + 2^45 - 2^43 - 2^40 - 2^34 + 2^32 - 2^29 + 2^27 - 2^25 + 2^23 + 2^19 + 2^16 - 2^12 + 2^10 - 2^8 + 2^5 + 2^2 - 1"
"znprimroot": 11
- "n": 4503445008547841
"n_hex": "0xfffdc00000001"
"n_bit": "2^52 - 2^37 - 2^34 + 1"
"n_fac": "2^34 * 5 * 103 * 509 + 1"
"nd": 4503445008547839
"nd_hex": "0xfffdbffffffff"
"nd_bit": "2^52 - 2^37 - 2^34 - 1"
"r2": 1153731289612107
"r2_hex": "0x4194fffaeff4b"
"r2_bit": "2^50 + 2^45 - 2^43 + 2^40 + 2^38 + 2^36 - 2^22 - 2^20 - 2^16 - 2^8 + 2^6 + 2^4 - 2^2 - 1"
"znprimroot": 3
- "n": 4502963972210689
"n_hex": "0xfff6c00000001"
"n_bit": "2^52 - 2^39 - 2^36 - 2^34 + 1"
"n_fac": "2^34 * 3^2 * 29123 + 1"
"nd": 4502963972210687
"nd_hex": "0xfff6bffffffff"
"nd_bit": "2^52 - 2^39 - 2^36 - 2^34 - 1"
"r2": 168001851018888
"r2_hex": "0x98cbfaa6ce88"
"r2_bit": "2^47 + 2^45 - 2^43 + 2^40 - 2^38 + 2^36 - 2^34 - 2^27 + 2^25 + 2^23 + 2^21 + 2^19 - 2^16 - 2^14 + 2^12 - 2^9 + 2^7 + 2^3"
"znprimroot": 13
- "n": 4501211625553921
"n_hex": "0xffdd400000001"
"n_bit": "2^52 - 2^41 - 2^38 + 2^36 + 2^34 + 1"
"n_fac": "2^34 * 3 * 5 * 17467 + 1"
"nd": 4501211625553919
"nd_hex": "0xffdd3ffffffff"
"nd_bit": "2^52 - 2^41 - 2^38 + 2^36 + 2^34 - 1"
"r2": 4255555409199089
"r2_hex": "0xf1e67b47cbff1"
"r2_bit": "2^52 - 2^48 + 2^45 - 2^41 + 2^39 - 2^37 + 2^35 - 2^30 - 2^28 + 2^26 + 2^23 - 2^18 + 2^16 - 2^14 - 2^4 + 1"
"znprimroot": 13
- "n": 4500696229478401
"n_hex": "0xffd5c00000001"
"n_bit": "2^52 - 2^41 - 2^39 - 2^37 - 2^34 + 1"
"n_fac": "2^34 * 3 * 5^2 * 7 * 499 + 1"
"nd": 4500696229478399
"nd_hex": "0xffd5bffffffff"
"nd_bit": "2^52 - 2^41 - 2^39 - 2^37 - 2^34 - 1"
"r2": 3114467891909449
"r2_hex": "0xb1097905c9349"
"r2_bit": "2^52 - 2^50 - 2^48 + 2^44 + 2^39 + 2^37 - 2^35 - 2^31 + 2^28 + 2^23 - 2^21 - 2^18 + 2^15 + 2^12 + 2^10 - 2^8 + 2^6 + 2^3 + 1"
"znprimroot": 31
- "n": 4493996080496641
"n_hex": "0xff74400000001"
"n_bit": "2^52 - 2^43 - 2^40 + 2^38 + 2^34 + 1"
"n_fac": "2^34 * 3^2 * 5 * 5813 + 1"
"nd": 4493996080496639
"nd_hex": "0xff743ffffffff"
"nd_bit": "2^52 - 2^43 - 2^40 + 2^38 + 2^34 - 1"
"r2": 3035851340856470
"r2_hex": "0xac91738c33c96"
"r2_bit": "2^52 - 2^50 - 2^48 - 2^46 + 2^43 + 2^40 + 2^37 - 2^35 - 2^32 + 2^30 - 2^27 + 2^24 - 2^22 + 2^18 - 2^16 + 2^14 - 2^10 + 2^7 + 2^5 - 2^3 - 2"
"znprimroot": 41
- "n": 4503084231294977
"n_hex": "0xfff8800000001"
"n_bit": "2^52 - 2^39 + 2^35 + 1"
"n_fac": "2^35 * 83 * 1579 + 1"
"nd": 4503084231294975
"nd_hex": "0xfff87ffffffff"
"nd_bit": "2^52 - 2^39 + 2^35 - 1"
"r2": 3477892658619811
"r2_hex": "0xc5b1ffc7be5a3"
"r2_bit": "2^52 - 2^50 + 2^47 - 2^45 - 2^42 - 2^40 + 2^37 - 2^26 + 2^23 - 2^18 - 2^13 + 2^11 - 2^9 - 2^7 + 2^5 + 2^2 - 1"
"znprimroot": 3
- "n": 4501160085946369
"n_hex": "0xffdc800000001"
"n_bit": "2^52 - 2^41 - 2^38 + 2^35 + 1"
"n_fac": "2^35 * 3 * 13 * 3359 + 1"
"nd": 4501160085946367
"nd_hex": "0xffdc7ffffffff"
"nd_bit": "2^52 - 2^41 - 2^38 + 2^35 - 1"
"r2": 4323587635876432
"r2_hex": "0xf5c47b1311250"
"r2_bit": "2^52 - 2^47 - 2^45 - 2^42 + 2^38 + 2^35 - 2^30 - 2^28 + 2^24 + 2^22 - 2^20 + 2^16 + 2^12 + 2^9 + 2^6 + 2^4"
"znprimroot": 11
- "n": 4500335452225537
"n_hex": "0xffd0800000001"
"n_bit": "2^52 - 2^42 + 2^40 + 2^35 + 1"
"n_fac": "2^35 * 3^5 * 7^2 * 11 + 1"
"nd": 4500335452225535
"nd_hex": "0xffd07ffffffff"
"nd_bit": "2^52 - 2^42 + 2^40 + 2^35 - 1"
"r2": 3320831985963240
"r2_hex": "0xbcc4772e1d0e8"
"r2_bit": "2^52 - 2^50 - 2^46 + 2^44 - 2^42 + 2^38 + 2^35 - 2^31 - 2^28 + 2^26 - 2^24 - 2^21 + 2^17 - 2^14 + 2^12 + 2^8 - 2^5 + 2^3"
"znprimroot": 5
- "n": 4482399668797441
"n_hex": "0xfecb800000001"
"n_bit": "2^52 - 2^44 - 2^42 + 2^40 - 2^38 - 2^35 + 1"
"n_fac": "2^35 * 3^2 * 5 * 13 * 223 + 1"
"nd": 4482399668797439
"nd_hex": "0xfecb7ffffffff"
"nd_bit": "2^52 - 2^44 - 2^42 + 2^40 - 2^38 - 2^35 - 1"
"r2": 1643429098027278
"r2_hex": "0x5d6b0a799f90e"
"r2_bit": "2^51 - 2^49 - 2^45 - 2^43 - 2^40 - 2^38 - 2^36 + 2^31 + 2^29 + 2^27 - 2^23 + 2^21 - 2^19 + 2^17 - 2^11 + 2^8 + 2^4 - 2"
"znprimroot": 11
- "n": 4470030162984961
"n_hex": "0xfe17800000001"
"n_bit": "2^52 - 2^45 + 2^41 - 2^39 - 2^35 + 1"
"n_fac": "2^35 * 3^2 * 5 * 7^2 * 59 + 1"
"nd": 4470030162984959
"nd_hex": "0xfe177ffffffff"
"nd_bit": "2^52 - 2^45 + 2^41 - 2^39 - 2^35 - 1"
"r2": 653716797151222
"r2_hex": "0x2528d4d7a57f6"
"r2_bit": "2^49 + 2^46 + 2^44 + 2^41 + 2^39 + 2^36 - 2^34 + 2^32 + 2^30 + 2^28 - 2^25 - 2^23 - 2^19 + 2^17 + 2^15 - 2^13 - 2^11 - 2^3 - 2"
"znprimroot": 41
- "n": 4449929716039681
"n_hex": "0xfcf3000000001"
"n_bit": "2^52 - 2^46 + 2^44 - 2^40 + 2^38 - 2^36 + 1"
"n_fac": "2^36 * 3^2 * 5 * 1439 + 1"
"nd": 4449929716039679
"nd_hex": "0xfcf2fffffffff"
"nd_bit": "2^52 - 2^46 + 2^44 - 2^40 + 2^38 - 2^36 - 1"
"r2": 3305034404441719
"r2_hex": "0xbbde949a5ae77"
"r2_bit": "2^52 - 2^50 - 2^46 - 2^41 - 2^37 + 2^35 + 2^32 + 2^30 + 2^27 + 2^25 - 2^23 + 2^21 + 2^19 - 2^17 - 2^14 - 2^12 - 2^9 + 2^7 - 2^3 - 1"
"znprimroot": 14
- "n": 4437560210227201
"n_hex": "0xfc3f000000001"
"n_bit": "2^52 - 2^46 + 2^42 - 2^36 + 1"
"n_fac": "2^36 * 3^2 * 5^2 * 7 * 41 + 1"
"nd": 4437560210227199
"nd_hex": "0xfc3efffffffff"
"nd_bit": "2^52 - 2^46 + 2^42 - 2^36 - 1"
"r2": 4322090768645890
"r2_hex": "0xf5aeb2cf3bf02"
"r2_bit": "2^52 - 2^47 - 2^45 - 2^42 - 2^40 - 2^36 - 2^34 - 2^32 + 2^30 - 2^28 - 2^26 + 2^24 - 2^20 + 2^18 - 2^14 - 2^8 + 2"
"znprimroot": 13
- "n": 4488893659348993
"n_hex": "0xff2a000000001"
"n_bit": "2^52 - 2^44 + 2^41 + 2^39 + 2^37 + 1"
"n_fac": "2^37 * 3^2 * 19 * 191 + 1"
"nd": 4488893659348991
"nd_hex": "0xff29fffffffff"
"nd_bit": "2^52 - 2^44 + 2^41 + 2^39 + 2^37 - 1"
"r2": 602896510975958
"r2_hex": "0x22454c85f7fd6"
"r2_bit": "2^49 + 2^45 + 2^42 + 2^38 + 2^36 + 2^34 + 2^32 - 2^30 + 2^27 + 2^23 - 2^21 - 2^15 - 2^5 - 2^3 - 2"
"znprimroot": 13
- "n": 4498376947138561
"n_hex": "0xffb4000000001"
"n_bit": "2^52 - 2^42 - 2^40 + 2^38 + 1"
"n_fac": "2^38 * 3 * 5 * 1091 + 1"
"nd": 4498376947138559
"nd_hex": "0xffb3fffffffff"
"nd_bit": "2^52 - 2^42 - 2^40 + 2^38 - 1"
"r2": 2324361517511719
"r2_hex": "0x841fe9694b427"
"r2_bit": "2^51 + 2^46 + 2^41 - 2^33 + 2^31 + 2^29 - 2^27 - 2^25 + 2^23 + 2^20 + 2^18 + 2^16 - 2^14 - 2^12 + 2^10 + 2^5 + 2^3 - 1"
"znprimroot": 13
- "n": 4415913575055361
"n_hex": "0xfb04000000001"
"n_bit": "2^52 - 2^46 - 2^44 + 2^38 + 1"
"n_fac": "2^38 * 3^3 * 5 * 7 * 17 + 1"
"nd": 4415913575055359
"nd_hex": "0xfb03fffffffff"
"nd_bit": "2^52 - 2^46 - 2^44 + 2^38 - 1"
"r2": 4169805948605767
"r2_hex": "0xed06a9a595547"
"r2_bit": "2^52 - 2^48 - 2^46 + 2^44 + 2^39 - 2^37 + 2^35 + 2^33 + 2^31 + 2^29 - 2^27 + 2^25 + 2^23 - 2^21 - 2^19 + 2^16 + 2^14 + 2^12 + 2^10 + 2^8 + 2^6 + 2^3 - 1"
"znprimroot": 19
- "n": 4488756220395521
"n_hex": "0xff28000000001"
"n_bit": "2^52 - 2^44 + 2^41 + 2^39 + 1"
"n_fac": "2^39 * 5 * 23 * 71 + 1"
"nd": 4488756220395519
"nd_hex": "0xff27fffffffff"
"nd_bit": "2^52 - 2^44 + 2^41 + 2^39 - 1"
"r2": 1620631055203635
"r2_hex": "0x5c1f4925b7d33"
"r2_bit": "2^51 - 2^49 - 2^46 + 2^41 - 2^36 + 2^34 + 2^31 + 2^28 + 2^25 + 2^23 - 2^21 - 2^18 - 2^15 - 2^10 + 2^8 + 2^6 - 2^4 + 2^2 - 1"
"znprimroot": 3
- "n": 4461268429701121
"n_hex": "0xfd98000000001"
"n_bit": "2^52 - 2^45 - 2^43 + 2^41 - 2^39 + 1"
"n_fac": "2^39 * 3 * 5 * 541 + 1"
"nd": 4461268429701119
"nd_hex": "0xfd97fffffffff"
"nd_bit": "2^52 - 2^45 - 2^43 + 2^41 - 2^39 - 1"
"r2": 773654522094719
"r2_hex": "0x2bfa27af7e47f"
"r2_bit": "2^50 - 2^48 - 2^46 - 2^39 + 2^37 + 2^33 + 2^31 - 2^26 - 2^24 - 2^19 - 2^13 + 2^10 + 2^7 - 1"
"znprimroot": 14
- "n": 4457969894817793
"n_hex": "0xfd68000000001"
"n_bit": "2^52 - 2^45 - 2^43 - 2^41 + 2^39 + 1"
"n_fac": "2^39 * 3^2 * 17 * 53 + 1"
"nd": 4457969894817791
"nd_hex": "0xfd67fffffffff"
"nd_bit": "2^52 - 2^45 - 2^43 - 2^41 + 2^39 - 1"
"r2": 2488827280297583
"r2_hex": "0x8d79341f30e6f"
"r2_bit": "2^51 + 2^48 - 2^45 - 2^43 - 2^39 + 2^36 + 2^34 - 2^32 + 2^30 + 2^25 - 2^20 + 2^18 - 2^16 + 2^12 - 2^9 + 2^7 - 2^4 - 1"
"znprimroot": 5
- "n": 4131414941368321
"n_hex": "0xead8000000001"
"n_bit": "2^52 - 2^48 - 2^46 - 2^44 - 2^41 - 2^39 + 1"
"n_fac": "2^39 * 3^2 * 5 * 167 + 1"
"nd": 4131414941368319
"nd_hex": "0xead7fffffffff"
"nd_bit": "2^52 - 2^48 - 2^46 - 2^44 - 2^41 - 2^39 - 1"
"r2": 377688535425155
"r2_hex": "0x1578176fd6083"
"r2_bit": "2^49 - 2^47 - 2^45 - 2^43 - 2^39 + 2^33 - 2^31 - 2^27 - 2^24 - 2^17 - 2^15 - 2^13 + 2^7 + 2^2 - 1"
"znprimroot": 7
- "n": 4480509883187201
"n_hex": "0xfeb0000000001"
"n_bit": "2^52 - 2^44 - 2^42 - 2^40 + 1"
"n_fac": "2^40 * 5^2 * 163 + 1"
"nd": 4480509883187199
"nd_hex": "0xfeaffffffffff"
"nd_bit": "2^52 - 2^44 - 2^42 - 2^40 - 1"
"r2": 3242340800218702
"r2_hex": "0xb84e44ba3464e"
"r2_bit": "2^52 - 2^50 - 2^47 + 2^42 + 2^40 - 2^37 + 2^34 + 2^30 + 2^28 - 2^26 - 2^23 + 2^21 + 2^18 - 2^16 + 2^14 + 2^11 - 2^9 + 2^6 + 2^4 - 2"
"znprimroot": 3
- "n": 4370558720409601
"n_hex": "0xf870000000001"
"n_bit": "2^52 - 2^47 + 2^43 - 2^40 + 1"
"n_fac": "2^40 * 3 * 5^2 * 53 + 1"
"nd": 4370558720409599
"nd_hex": "0xf86ffffffffff"
"nd_bit": "2^52 - 2^47 + 2^43 - 2^40 - 1"
"r2": 737021038443725
"r2_hex": "0x29e5115303ccd"
"r2_bit": "2^49 + 2^47 + 2^45 - 2^41 + 2^38 + 2^36 + 2^32 + 2^28 + 2^26 + 2^24 + 2^22 - 2^20 + 2^14 - 2^10 + 2^8 - 2^6 + 2^4 - 2^2 + 1"
"znprimroot": 7
- "n": 4126467139043329
"n_hex": "0xea90000000001"
"n_bit": "2^52 - 2^49 + 2^47 + 2^45 + 2^43 + 2^40 + 1"
"n_fac": "2^40 * 3^3 * 139 + 1"
"nd": 4126467139043327
"nd_hex": "0xea8ffffffffff"
"nd_bit": "2^52 - 2^49 + 2^47 + 2^45 + 2^43 + 2^40 - 1"
"r2": 3810524684715776
"r2_hex": "0xd89a6ea3d8700"
"r2_bit": "2^52 - 2^49 - 2^47 + 2^43 + 2^41 - 2^39 + 2^37 + 2^35 - 2^32 - 2^29 + 2^27 + 2^25 + 2^22 - 2^17 - 2^15 + 2^11 - 2^8"
"znprimroot": 7
- "n": 3809807790243841
"n_hex": "0xd890000000001"
"n_bit": "2^52 - 2^49 - 2^47 + 2^43 + 2^40 + 1"
"n_fac": "2^40 * 3^2 * 5 * 7 * 11 + 1"
"nd": 3809807790243839
"nd_hex": "0xd88ffffffffff"
"nd_bit": "2^52 - 2^49 - 2^47 + 2^43 + 2^40 - 1"
"r2": 2313472103123858
"r2_hex": "0x8381732e78b92"
"r2_bit": "2^51 + 2^46 - 2^43 + 2^37 - 2^35 - 2^32 + 2^30 - 2^28 + 2^26 - 2^24 - 2^21 + 2^19 - 2^15 + 2^12 - 2^10 - 2^7 + 2^4 + 2"
"znprimroot": 19
- "n": 3925256511160321
"n_hex": "0xdf20000000001"
"n_bit": "2^52 - 2^49 - 2^44 + 2^41 + 1"
"n_fac": "2^41 * 3 * 5 * 7 * 17 + 1"
"nd": 3925256511160319
"nd_hex": "0xdf1ffffffffff"
"nd_bit": "2^52 - 2^49 - 2^44 + 2^41 - 1"
"r2": 161078145482735
"r2_hex": "0x927feda47fef"
"r2_bit": "2^47 + 2^44 + 2^41 + 2^39 - 2^28 - 2^25 - 2^23 + 2^21 + 2^18 + 2^15 - 2^4 - 1"
"znprimroot": 11
- "n": 3661373720494081
"n_hex": "0xd020000000001"
"n_bit": "2^52 - 2^50 + 2^48 + 2^41 + 1"
"n_fac": "2^41 * 3^2 * 5 * 37 + 1"
"nd": 3661373720494079
"nd_hex": "0xd01ffffffffff"
"nd_bit": "2^52 - 2^50 + 2^48 + 2^41 - 1"
"r2": 2691381260633375
"r2_hex": "0x98fcc07fec51f"
"r2_bit": "2^51 + 2^49 - 2^47 + 2^44 - 2^38 + 2^36 - 2^34 + 2^27 - 2^16 - 2^14 + 2^10 + 2^8 + 2^5 - 1"
"znprimroot": 26
- "n": 3562417673994241
"n_hex": "0xca80000000001"
"n_bit": "2^52 - 2^50 + 2^47 + 2^45 + 2^43 + 1"
"n_fac": "2^43 * 3^4 * 5 + 1"
"nd": 3562417673994239
"nd_hex": "0xca7ffffffffff"
"nd_bit": "2^52 - 2^50 + 2^47 + 2^45 + 2^43 - 1"
"r2": 1844812191109557
"r2_hex": "0x68dd8cf5411b5"
"r2_bit": "2^51 - 2^49 + 2^47 + 2^44 - 2^41 - 2^37 - 2^35 + 2^32 - 2^30 + 2^28 - 2^24 + 2^22 + 2^20 + 2^18 + 2^12 + 2^9 - 2^6 - 2^4 + 2^2 + 1"
"znprimroot": 14
- "n": 3799912185593857
"n_hex": "0xd800000000001"
"n_bit": "2^52 - 2^49 - 2^47 + 1"
"n_fac": "2^47 * 3^3 + 1"
"nd": 3799912185593855
"nd_hex": "0xd7fffffffffff"
"nd_bit": "2^52 - 2^49 - 2^47 - 1"
"r2": 3388124719665306
"r2_hex": "0xc097b425ed09a"
"r2_bit": "2^52 - 2^50 + 2^43 + 2^41 - 2^39 - 2^34 - 2^32 + 2^30 + 2^25 + 2^23 - 2^21 - 2^16 - 2^14 + 2^12 + 2^7 + 2^5 - 2^3 + 2"
"znprimroot": 5
- "n": 4222124650659841
"n_hex": "0xf000000000001"
"n_bit": "2^52 - 2^48 + 1"
"n_fac": "2^48 * 3 * 5 + 1"
"nd": 4222124650659839
"nd_hex": "0xeffffffffffff"
"nd_bit": "2^52 - 2^48 - 1"
"r2": 3921884675501809
"r2_hex": "0xdeeeeeeeeeef1"
"r2_bit": "2^52 - 2^49 - 2^44 - 2^40 - 2^36 - 2^32 - 2^28 - 2^24 - 2^20 - 2^16 - 2^12 - 2^8 - 2^4 + 1"
"znprimroot": 19
- "r": 58
"primes":
- "n": 288230376151711603
"n_hex": "0x3ffffffffffff73"
"n_bit": "2^58 - 2^7 - 2^4 + 2^2 - 1"
"n_fac": "2 * 3^2 * 7 * 2287542667870727 + 1"
"nd": 40883741298115141
"nd_hex": "0x913f8bcd29c245"
"nd_bit": "2^55 + 2^52 + 2^48 + 2^46 - 2^39 + 2^36 - 2^34 - 2^30 + 2^28 - 2^26 + 2^24 + 2^21 + 2^19 + 2^17 - 2^14 + 2^9 + 2^6 + 2^2 + 1"
"r2": 19881
"r2_hex": "0x4da9"
"r2_bit": "2^14 + 2^12 - 2^9 - 2^7 + 2^5 + 2^3 + 1"
"znprimroot": 3
- "n": 288230376151711531
"n_hex": "0x3ffffffffffff2b"
"n_bit": "2^58 - 2^8 + 2^6 - 2^4 - 2^2 - 1"
"n_fac": "2 * 3^2 * 5 * 1523 * 2579 * 815353601 + 1"
"nd": 221923857694275709
"nd_hex": "0x3146e92a10d387d"
"nd_bit": "2^58 - 2^56 + 2^52 + 2^50 + 2^47 - 2^44 - 2^41 + 2^39 + 2^36 + 2^33 + 2^31 + 2^29 + 2^24 + 2^20 - 2^18 + 2^16 + 2^14 - 2^11 + 2^7 - 2^2 + 1"
"r2": 45369
"r2_hex": "0xb139"
"r2_bit": "2^16 - 2^14 - 2^12 + 2^8 + 2^6 - 2^3 + 1"
"znprimroot": 10
- "n": 288230376151711351
"n_hex": "0x3fffffffffffe77"
"n_bit": "2^58 - 2^9 + 2^7 - 2^3 - 1"
"n_fac": "2 * 3^3 * 5^2 * 7 * 9173 * 3325037491c + 1"
"nd": 93876560171549881
"nd_hex": "0x14d843bedc2c4b9"
"nd_bit": "2^56 + 2^54 + 2^52 - 2^49 - 2^47 + 2^42 + 2^38 - 2^34 - 2^28 - 2^25 - 2^22 + 2^18 - 2^16 - 2^14 + 2^10 + 2^8 - 2^6 - 2^3 + 1"
"r2": 154449
"r2_hex": "0x25b51"
"r2_bit": "2^17 + 2^15 - 2^13 - 2^10 - 2^8 + 2^6 + 2^4 + 1"
"znprimroot": 7
- "n": 288230376151711717
"n_hex": "0x3ffffffffffffe5"
"n_bit": "2^58 - 2^5 + 2^2 + 1"
"n_fac": "2^2 * 3 * 24019198012642643 + 1"
"nd": 53375995583650323
"nd_hex": "0xbda12f684bda13"
"nd_bit": "2^56 - 2^54 - 2^49 - 2^47 + 2^45 + 2^40 + 2^38 - 2^36 - 2^31 - 2^29 + 2^27 + 2^22 + 2^20 - 2^18 - 2^13 - 2^11 + 2^9 + 2^4 + 2^2 - 1"
"r2": 729
"r2_hex": "0x2d9"
"r2_bit": "2^10 - 2^8 - 2^5 - 2^3 + 1"
"znprimroot": 6
- "n": 288230376151706941
"n_hex": "0x3ffffffffffed3d"
"n_bit": "2^58 - 2^12 - 2^10 + 2^8 + 2^6 - 2^2 + 1"
"n_fac": "2^2 * 3^2 * 5 * 7 * 19 * 61 * 1621 * 121759471 + 1"
"nd": 27844866653007339
"nd_hex": "0x62ecc239abadeb"
"nd_bit": "2^55 - 2^53 + 2^50 - 2^48 - 2^44 - 2^42 + 2^40 - 2^38 + 2^33 + 2^30 - 2^27 + 2^25 - 2^22 - 2^20 - 2^18 - 2^14 - 2^12 - 2^9 - 2^4 - 2^2 - 1"
"r2": 23068809
"r2_hex": "0x1600089"
"r2_bit": "2^25 - 2^23 - 2^21 + 2^7 + 2^3 + 1"
"znprimroot": 2
- "n": 288230376151711369
"n_hex": "0x3fffffffffffe89"
"n_bit": "2^58 - 2^9 + 2^7 + 2^3 + 1"
"n_fac": "2^3 * 3^2 * 23 * 174052159511903 + 1"
"nd": 112217693115066439
"nd_hex": "0x18ead65b7a32847"
"nd_bit": "2^57 - 2^55 + 2^52 - 2^48 - 2^46 - 2^44 - 2^41 - 2^39 - 2^37 + 2^35 - 2^33 - 2^30 - 2^27 - 2^23 + 2^21 + 2^18 - 2^16 + 2^13 + 2^11 + 2^6 + 2^3 - 1"
"r2": 140625
"r2_hex": "0x22551"
"r2_bit": "2^17 + 2^13 + 2^10 + 2^8 + 2^6 + 2^4 + 1"
"znprimroot": 7
- "n": 288230376151698121
"n_hex": "0x3ffffffffffcac9"
"n_bit": "2^58 - 2^14 + 2^12 - 2^10 - 2^8 - 2^6 + 2^3 + 1"
"n_fac": "2^3 * 3^4 * 5 * 7 * 23 * 552546538133c + 1"
"nd": 258757799334613127
"nd_hex": "0x3974ad8f8339087"
"nd_bit": "2^58 - 2^55 + 2^53 - 2^51 - 2^48 + 2^46 + 2^44 - 2^42 - 2^40 - 2^37 - 2^35 + 2^32 - 2^27 + 2^22 - 2^20 + 2^18 - 2^15 + 2^12 + 2^7 + 2^3 - 1"
"r2": 185586129
"r2_hex": "0xb0fd1d1"
"r2_bit": "2^28 - 2^26 - 2^24 + 2^20 - 2^14 + 2^12 + 2^9 - 2^6 + 2^4 + 1"
"znprimroot": 13
- "n": 288230376151645201
"n_hex": "0x3fffffffffefc11"
"n_bit": "2^58 - 2^16 - 2^10 + 2^4 + 1"
"n_fac": "2^4 * 3^3 * 5^2 * 7 * 13 * 1901 * 154273909 + 1"
"nd": 5310407423200015
"nd_hex": "0x12ddc994128b0f"
"nd_bit": "2^52 + 2^50 - 2^48 - 2^45 - 2^41 - 2^38 + 2^35 + 2^33 - 2^31 + 2^28 + 2^26 + 2^20 + 2^17 + 2^15 + 2^12 - 2^10 - 2^8 + 2^4 - 1"
"r2": 4427970849
"r2_hex": "0x107ed7921"
"r2_bit": "2^32 + 2^27 - 2^20 - 2^17 - 2^15 - 2^11 + 2^8 + 2^5 + 1"
"znprimroot": 11
- "n": 288230376151640161
"n_hex": "0x3fffffffffee861"
"n_bit": "2^58 - 2^16 - 2^13 + 2^11 + 2^7 - 2^5 + 1"
"n_fac": "2^5 * 3^2 * 5 * 7 * 23 * 2441 * 6571 * 77509 + 1"
"nd": 188666617841730655
"nd_hex": "0x29e474a116e445f"
"nd_bit": "2^57 + 2^55 + 2^53 - 2^49 + 2^46 + 2^43 - 2^40 + 2^38 + 2^35 + 2^33 + 2^28 + 2^25 - 2^23 - 2^20 - 2^17 + 2^14 + 2^10 + 2^7 - 2^5 - 1"
"r2": 5124125889
"r2_hex": "0x1316bf4c1"
"r2_bit": "2^32 + 2^30 - 2^28 + 2^25 - 2^23 - 2^20 - 2^18 - 2^12 + 2^10 + 2^8 - 2^6 + 1"
"znprimroot": 11
- "n": 288230376151711681
"n_hex": "0x3ffffffffffffc1"
"n_bit": "2^58 - 2^6 + 1"
"n_fac": "2^6 * 3 * 5 * 53 * 157 * 1613 * 2731 * 8191 + 1"
"nd": 269930034808745919
"nd_hex": "0x3befbefbefbefbf"
"nd_bit": "2^58 - 2^54 - 2^48 - 2^42 - 2^36 - 2^30 - 2^24 - 2^18 - 2^12 - 2^6 - 1"
"r2": 3969
"r2_hex": "0xf81"
"r2_bit": "2^12 - 2^7 + 1"
"znprimroot": 11
- "n": 288230376151711297
"n_hex": "0x3fffffffffffe41"
"n_bit": "2^58 - 2^9 + 2^6 + 1"
"n_fac": "2^6 * 3^3 * 709 * 235260911423 + 1"
"nd": 80601335612894783
"nd_hex": "0x11e5a7cd9a0ee3f"
"nd_bit": "2^56 + 2^53 - 2^49 + 2^47 - 2^45 - 2^43 + 2^41 + 2^39 - 2^34 + 2^32 - 2^29 - 2^27 + 2^25 - 2^23 + 2^21 + 2^16 - 2^12 - 2^9 + 2^6 - 1"
"r2": 199809
"r2_hex": "0x30c81"
"r2_bit": "2^18 - 2^16 + 2^12 - 2^10 + 2^7 + 1"
"znprimroot": 7
- "n": 288230376151707841
"n_hex": "0x3fffffffffff0c1"
"n_bit": "2^58 - 2^12 + 2^8 - 2^6 + 1"
"n_fac": "2^6 * 3^4 * 5 * 271 * 1381 * 29712677 + 1"
"nd": 203526240500670655
"nd_hex": "0x2d31209938360bf"
"nd_bit": "2^58 - 2^56 - 2^54 + 2^52 + 2^50 - 2^48 + 2^44 + 2^41 + 2^35 + 2^33 - 2^31 + 2^28 + 2^26 - 2^23 + 2^18 - 2^15 - 2^13 + 2^8 - 2^6 - 1"
"r2": 15233409
"r2_hex": "0xe87181"
"r2_bit": "2^24 - 2^21 + 2^19 + 2^15 - 2^12 + 2^9 - 2^7 + 1"
"znprimroot": 14
- "n": 288230376151704001
"n_hex": "0x3ffffffffffe1c1"
"n_bit": "2^58 - 2^13 + 2^9 - 2^6 + 1"
"n_fac": "2^6 * 3 * 5^3 * 7 * 43 * 67 * 2671 * 222953 + 1"
"nd": 89860277415760319
"nd_hex": "0x13f3f723ac8d1bf"
"nd_bit": "2^56 + 2^54 - 2^48 + 2^46 - 2^39 - 2^36 + 2^33 + 2^30 - 2^26 - 2^24 - 2^22 + 2^19 + 2^16 - 2^14 + 2^12 + 2^9 - 2^6 - 1"
"r2": 59954049
"r2_hex": "0x392d381"
"r2_bit": "2^26 - 2^23 + 2^20 + 2^18 - 2^16 - 2^14 + 2^12 + 2^10 - 2^7 + 1"
"znprimroot": 13
- "n": 288230376151488961
"n_hex": "0x3fffffffffc99c1"
"n_bit": "2^58 - 2^18 + 2^15 + 2^13 - 2^11 + 2^9 - 2^6 + 1"
"n_fac": "2^6 * 3^2 * 5 * 7 * 41 * 191 * 1825710851c + 1"
"nd": 38761404907489727
"nd_hex": "0x89b54ada8189bf"
"nd_bit": "2^55 + 2^51 + 2^49 - 2^46 - 2^44 + 2^42 + 2^40 + 2^38 + 2^36 - 2^34 - 2^32 - 2^29 - 2^27 + 2^25 + 2^23 + 2^17 - 2^15 + 2^11 + 2^9 - 2^6 - 1"
"r2": 49632265089
"r2_hex": "0xb8e504381"
"r2_bit": "2^36 - 2^34 - 2^31 + 2^28 - 2^25 + 2^22 + 2^20 + 2^14 + 2^10 - 2^7 + 1"
"znprimroot": 13
- "n": 288230376151710593
"n_hex": "0x3fffffffffffb81"
"n_bit": "2^58 - 2^10 - 2^7 + 1"
"n_fac": "2^7 * 599 * 8831 * 425689631 + 1"
"nd": 258681128205663103
"nd_hex": "0x397051d94cbbb7f"
"nd_bit": "2^58 - 2^55 + 2^53 - 2^51 - 2^48 + 2^42 + 2^40 + 2^37 - 2^33 - 2^31 + 2^28 + 2^26 + 2^24 - 2^22 + 2^20 - 2^18 - 2^14 - 2^10 - 2^7 - 1"
"r2": 1324801
"r2_hex": "0x143701"
"r2_bit": "2^20 + 2^18 + 2^14 - 2^11 - 2^8 + 1"
"znprimroot": 3
- "n": 288230376151709569
"n_hex": "0x3fffffffffff781"
"n_bit": "2^58 - 2^11 - 2^7 + 1"
"n_fac": "2^7 * 3^3 * 83399993099453 + 1"
"nd": 158493576955148159
"nd_hex": "0x23315118997b77f"
"nd_bit": "2^57 + 2^54 - 2^52 + 2^50 - 2^48 + 2^44 + 2^42 + 2^40 + 2^36 + 2^33 - 2^31 + 2^27 + 2^25 - 2^23 + 2^21 - 2^19 - 2^14 - 2^11 - 2^7 - 1"
"r2": 4730625
"r2_hex": "0x482f01"
"r2_bit": "2^22 + 2^19 + 2^14 - 2^12 - 2^8 + 1"
"znprimroot": 13
- "n": 288230376151701121
"n_hex": "0x3ffffffffffd681"
"n_bit": "2^58 - 2^13 - 2^11 - 2^9 + 2^7 + 1"
"n_fac": "2^7 * 3 * 5 * 3853 * 7529 * 5174903 + 1"
"nd": 238387657429063295
"nd_hex": "0x34eec4fb7e5967f"
"nd_bit": "2^58 - 2^56 + 2^54 + 2^52 - 2^48 - 2^44 - 2^42 + 2^38 + 2^36 - 2^30 - 2^27 - 2^21 + 2^19 - 2^17 - 2^15 + 2^13 - 2^11 - 2^9 + 2^7 - 1"
"r2": 112848129
"r2_hex": "0x6b9ed01"
"r2_bit": "2^27 - 2^24 - 2^22 - 2^19 + 2^17 - 2^12 - 2^10 + 2^8 + 1"
"znprimroot": 7
- "n": 288230376151697921
"n_hex": "0x3ffffffffffca01"
"n_bit": "2^58 - 2^14 + 2^11 + 2^9 + 1"
"n_fac": "2^9 * 5 * 112589990684257 + 1"
"nd": 211913861884529151
"nd_hex": "0x2f0de88dc9bc9ff"
"nd_bit": "2^58 - 2^56 - 2^52 + 2^48 - 2^45 - 2^41 + 2^39 + 2^35 + 2^32 - 2^29 - 2^26 + 2^23 + 2^21 - 2^18 - 2^14 + 2^11 + 2^9 - 1"
"r2": 191075329
"r2_hex": "0xb639401"
"r2_bit": "2^28 - 2^26 - 2^23 - 2^21 + 2^18 - 2^15 + 2^12 + 2^10 + 1"
"znprimroot": 6
- "n": 288230376151687681
"n_hex": "0x3ffffffffffa201"
"n_bit": "2^58 - 2^15 + 2^13 + 2^9 + 1"
"n_fac": "2^9 * 3^2 * 5 * 31 * 403548353707c + 1"
"nd": 160651032911389183
"nd_hex": "0x23abf43657ba1ff"
"nd_bit": "2^57 + 2^54 - 2^50 - 2^48 - 2^46 - 2^40 + 2^38 + 2^34 - 2^31 - 2^29 + 2^27 - 2^25 - 2^23 - 2^18 - 2^15 + 2^13 + 2^9 - 1"
"r2": 579027969
"r2_hex": "0x22834401"
"r2_bit": "2^29 + 2^25 + 2^23 + 2^18 - 2^16 + 2^14 + 2^10 + 1"
"znprimroot": 7
- "n": 288230376151690241
"n_hex": "0x3ffffffffffac01"
"n_bit": "2^58 - 2^14 - 2^12 - 2^10 + 1"
"n_fac": "2^10 * 5 * 43 * 4783 * 273716483 + 1"
"nd": 212871999426374655
"nd_hex": "0x2f445f4a46fabff"
"nd_bit": "2^58 - 2^56 - 2^52 + 2^50 + 2^46 + 2^43 - 2^41 - 2^36 + 2^34 + 2^31 + 2^29 + 2^26 + 2^23 - 2^20 - 2^14 - 2^12 - 2^10 - 1"
"r2": 462379009
"r2_hex": "0x1b8f5801"
"r2_bit": "2^29 - 2^26 - 2^23 + 2^20 - 2^15 - 2^13 - 2^11 + 1"
"znprimroot": 6
- "n": 288230376151557121
"n_hex": "0x3fffffffffda401"
"n_bit": "2^58 - 2^17 - 2^15 + 2^13 + 2^10 + 1"
"n_fac": "2^10 * 3 * 5 * 131 * 143244262957 + 1"
"nd": 91123918872355839
"nd_hex": "0x143bcb8aeeda3ff"
"nd_bit": "2^56 + 2^54 + 2^50 - 2^46 - 2^42 + 2^40 - 2^38 - 2^35 + 2^32 - 2^30 - 2^28 - 2^24 - 2^20 - 2^17 - 2^15 + 2^13 + 2^10 - 1"
"r2": 23908272129
"r2_hex": "0x5910b4801"
"r2_bit": "2^35 - 2^33 - 2^31 + 2^28 + 2^24 + 2^20 - 2^18 - 2^16 + 2^14 + 2^11 + 1"
"znprimroot": 19
- "n": 288230376151683073
"n_hex": "0x3ffffffffff9001"
"n_bit": "2^58 - 2^15 + 2^12 + 1"
"n_fac": "2^12 * 3^2 * 7818749353073 + 1"
"nd": 188846137770217471
"nd_hex": "0x29eea8fceff8fff"
"nd_bit": "2^57 + 2^55 + 2^53 - 2^48 - 2^45 + 2^43 + 2^41 + 2^39 + 2^36 - 2^30 + 2^28 - 2^24 - 2^15 + 2^12 - 1"
"r2": 822026241
"r2_hex": "0x30ff2001"
"r2_bit": "2^30 - 2^28 + 2^24 - 2^16 + 2^13 + 1"
"znprimroot": 5
- "n": 288230376151388161
"n_hex": "0x3fffffffffb1001"
"n_bit": "2^58 - 2^18 - 2^16 + 2^12 + 1"
"n_fac": "2^12 * 3^3 * 5 * 7 * 1021 * 72932693 + 1"
"nd": 200024218849185791
"nd_hex": "0x2c6a0f79efb0fff"
"nd_bit": "2^58 - 2^56 - 2^54 + 2^51 - 2^49 + 2^47 + 2^45 + 2^40 - 2^35 - 2^31 + 2^29 - 2^24 - 2^18 - 2^16 + 2^12 - 1"
"r2": 104705957889
"r2_hex": "0x1860f62001"
"r2_bit": "2^37 - 2^35 + 2^31 - 2^29 + 2^24 - 2^19 - 2^17 + 2^13 + 1"
"znprimroot": 11
- "n": 288230376151130113
"n_hex": "0x3fffffffff72001"
"n_bit": "2^58 - 2^19 - 2^16 + 2^13 + 1"
"n_fac": "2^13 * 3^2 * 7 * 23 * 47 * 4547 * 113621 + 1"
"nd": 231077973199364095
"nd_hex": "0x334f4313bf71fff"
"nd_bit": "2^58 - 2^56 + 2^54 - 2^52 + 2^50 + 2^48 - 2^44 + 2^42 + 2^38 - 2^36 + 2^32 + 2^30 - 2^26 - 2^19 - 2^16 + 2^13 - 1"
"r2": 338294620161
"r2_hex": "0x4ec3ee4001"
"r2_bit": "2^38 + 2^36 - 2^32 - 2^30 + 2^26 - 2^20 - 2^17 + 2^14 + 1"
"znprimroot": 5
- "n": 288230376127733761
"n_hex": "0x3fffffffe922001"
"n_bit": "2^58 - 2^25 + 2^23 + 2^20 + 2^17 + 2^13 + 1"
"n_fac": "2^13 * 3 * 5 * 7 * 2039 * 164339999 + 1"
"nd": 62572757821562879
"nd_hex": "0xde4d977a921fff"
"nd_bit": "2^56 - 2^53 - 2^49 + 2^46 + 2^44 - 2^41 - 2^39 + 2^37 - 2^35 - 2^31 - 2^27 + 2^25 + 2^23 + 2^20 + 2^17 + 2^13 - 1"
"r2": 574943668748289
"r2_hex": "0x20ae881244001"
"r2_bit": "2^49 + 2^44 - 2^42 - 2^40 - 2^37 + 2^35 + 2^31 + 2^24 + 2^21 + 2^18 + 2^14 + 1"
"znprimroot": 13
- "n": 288230376124293121
"n_hex": "0x3fffffffe5da001"
"n_bit": "2^58 - 2^25 + 2^23 - 2^21 - 2^17 - 2^15 + 2^13 + 1"
"n_fac": "2^13 * 3^3 * 5 * 7 * 17 * 2190125869 + 1"
"nd": 207287363877838847
"nd_hex": "0x2e06ec25a5d9fff"
"nd_bit": "2^58 - 2^56 - 2^53 + 2^47 - 2^44 - 2^40 - 2^38 + 2^33 + 2^31 - 2^29 - 2^27 + 2^25 + 2^23 - 2^21 - 2^17 - 2^15 + 2^13 - 1"
"r2": 751780887216129
"r2_hex": "0x2abbda0bb4001"
"r2_bit": "2^50 - 2^48 - 2^46 - 2^44 - 2^42 - 2^38 - 2^33 - 2^31 + 2^29 + 2^24 - 2^22 - 2^18 - 2^16 + 2^14 + 1"
"znprimroot": 11
- "n": 288230376150876161
"n_hex": "0x3fffffffff34001"
"n_bit": "2^58 - 2^20 + 2^18 - 2^16 + 2^14 + 1"
"n_fac": "2^14 * 5 * 251 * 6529 * 2146987 + 1"
"nd": 209227568471293951
"nd_hex": "0x2e7535d6ff33fff"
"nd_bit": "2^58 - 2^56 - 2^53 + 2^51 - 2^48 + 2^46 + 2^44 + 2^42 - 2^39 - 2^37 - 2^33 - 2^31 - 2^28 - 2^20 + 2^18 - 2^16 + 2^14 - 1"
"r2": 698198949889
"r2_hex": "0xa28fe68001"
"r2_bit": "2^39 + 2^37 + 2^33 + 2^31 + 2^28 - 2^21 + 2^19 - 2^17 + 2^15 + 1"
"znprimroot": 3
- "n": 288230376150712321
"n_hex": "0x3fffffffff0c001"
"n_bit": "2^58 - 2^20 + 2^16 - 2^14 + 1"
"n_fac": "2^14 * 3 * 5 * 13 * 1571 * 7573 * 7583 + 1"
"nd": 82589916582690815
"nd_hex": "0x1256b176ff0bfff"
"nd_bit": "2^56 + 2^53 + 2^51 - 2^49 - 2^47 - 2^44 - 2^42 - 2^40 + 2^37 - 2^35 - 2^31 - 2^28 - 2^20 + 2^16 - 2^14 - 1"
"r2": 998846332929
"r2_hex": "0xe88fe18001"
"r2_bit": "2^40 - 2^37 + 2^35 + 2^31 + 2^28 - 2^21 + 2^17 - 2^15 + 1"
"znprimroot": 19
- "n": 288230376148549633
"n_hex": "0x3ffffffffcfc001"
"n_bit": "2^58 - 2^22 + 2^20 - 2^14 + 1"
"n_fac": "2^14 * 3^2 * 7 * 279241048321 + 1"
"nd": 15466726717112319
"nd_hex": "0x36f2e7efcfbfff"
"nd_bit": "2^54 - 2^51 - 2^48 - 2^44 + 2^42 - 2^40 - 2^37 + 2^35 - 2^28 - 2^22 + 2^20 - 2^14 - 1"
"r2": 9998945976321
"r2_hex": "0x9180f9f8001"
"r2_bit": "2^43 + 2^40 + 2^37 - 2^35 + 2^28 - 2^23 + 2^21 - 2^15 + 1"
"znprimroot": 5
- "n": 288230376150630401
"n_hex": "0x3ffffffffef8001"
"n_bit": "2^58 - 2^20 - 2^15 + 1"
"n_fac": "2^15 * 5^2 * 19 * 18518090573 + 1"
"nd": 176729931696275455
"nd_hex": "0x273deefbfef7fff"
"nd_bit": "2^57 + 2^55 - 2^52 + 2^50 - 2^45 - 2^40 - 2^36 - 2^30 - 2^20 - 2^15 - 1"
"r2": 1169302683649
"r2_hex": "0x1103fdf0001"
"r2_bit": "2^40 + 2^36 + 2^30 - 2^21 - 2^16 + 1"
"znprimroot": 3
- "n": 288230376149975041
"n_hex": "0x3ffffffffe58001"
"n_bit": "2^58 - 2^21 + 2^19 - 2^17 - 2^15 + 1"
"n_fac": "2^15 * 3 * 5 * 47 * 283 * 2887 * 15271 + 1"
"nd": 238230367270961151
"nd_hex": "0x34e5d41bfe57fff"
"nd_bit": "2^58 - 2^56 + 2^54 + 2^52 - 2^49 + 2^47 - 2^45 - 2^42 + 2^40 + 2^38 + 2^33 - 2^30 - 2^21 + 2^19 - 2^17 - 2^15 - 1"
"r2": 3016137310209
"r2_hex": "0x2be3fcb0001"
"r2_bit": "2^42 - 2^40 - 2^38 - 2^33 + 2^30 - 2^22 + 2^20 - 2^18 - 2^16 + 1"
"znprimroot": 7
- "n": 288230376145453057
"n_hex": "0x3ffffffffa08001"
"n_bit": "2^58 - 2^23 + 2^21 + 2^15 + 1"
"n_fac": "2^15 * 3^2 * 7 * 97 * 1439386847 + 1"
"nd": 123845002943037439
"nd_hex": "0x1b7fc5fbfa07fff"
"nd_bit": "2^57 - 2^54 - 2^51 - 2^42 + 2^39 - 2^37 - 2^30 - 2^23 + 2^21 + 2^15 - 1"
"r2": 39171162963969
"r2_hex": "0x23a03f410001"
"r2_bit": "2^45 + 2^42 - 2^39 + 2^37 + 2^30 - 2^24 + 2^22 + 2^16 + 1"
"znprimroot": 10
- "n": 288230376102789121
"n_hex": "0x3fffffffd158001"
"n_bit": "2^58 - 2^26 + 2^24 + 2^21 - 2^19 - 2^17 - 2^15 + 1"
"n_fac": "2^15 * 3 * 5 * 7 * 11 * 13 * 59 * 9929159 + 1"
"nd": 182922664603910143
"nd_hex": "0x289df31bd157fff"
"nd_bit": "2^57 + 2^55 + 2^51 + 2^49 - 2^45 - 2^40 + 2^38 - 2^36 + 2^33 - 2^30 - 2^26 + 2^24 + 2^21 - 2^19 - 2^17 - 2^15 - 1"
"r2": 2393423041200129
"r2_hex": "0x880ce3a2b0001"
"r2_bit": "2^51 + 2^47 + 2^40 - 2^38 + 2^36 - 2^33 + 2^30 - 2^27 + 2^25 + 2^22 - 2^20 - 2^18 - 2^16 + 1"
"znprimroot": 37
- "n": 288230376075264001
"n_hex": "0x3fffffffb718001"
"n_bit": "2^58 - 2^26 - 2^23 - 2^20 + 2^17 - 2^15 + 1"
"n_fac": "2^15 * 3^2 * 5^3 * 7 * 31 * 197 * 182899 + 1"
"nd": 117828810253107199
"nd_hex": "0x1a29cadbb717fff"
"nd_bit": "2^57 - 2^55 + 2^53 + 2^49 + 2^47 + 2^45 - 2^42 + 2^40 - 2^38 - 2^36 - 2^33 - 2^30 - 2^26 - 2^23 - 2^20 + 2^17 - 2^15 - 1"
"r2": 5844257409794049
"r2_hex": "0x14c35236e30001"
"r2_bit": "2^52 + 2^50 + 2^48 - 2^46 + 2^42 - 2^40 + 2^38 + 2^36 + 2^33 + 2^30 - 2^27 - 2^24 - 2^21 + 2^18 - 2^16 + 1"
"znprimroot": 17
- "n": 288230376147582977
"n_hex": "0x3ffffffffc10001"
"n_bit": "2^58 - 2^22 + 2^16 + 1"
"n_fac": "2^16 * 7333 * 599760877 + 1"
"nd": 234451608870649855
"nd_hex": "0x340f07effc0ffff"
"nd_bit": "2^58 - 2^56 + 2^54 + 2^48 - 2^44 + 2^39 - 2^32 - 2^22 + 2^16 - 1"
"r2": 17046716940289
"r2_hex": "0xf80ff820001"
"r2_bit": "2^44 - 2^39 + 2^32 - 2^23 + 2^17 + 1"
"znprimroot": 3
- "n": 288230376147320833
"n_hex": "0x3ffffffffbd0001"
"n_bit": "2^58 - 2^22 - 2^18 + 2^16 + 1"
"n_fac": "2^16 * 3 * 89^2 * 421 * 499 * 881 + 1"
"nd": 82452888063639551
"nd_hex": "0x124ee76ffbcffff"
"nd_bit": "2^56 + 2^53 + 2^50 + 2^48 - 2^44 - 2^41 + 2^39 - 2^35 - 2^32 - 2^22 - 2^18 + 2^16 - 1"
"r2": 19280099409921
"r2_hex": "0x1188ff7a0001"
"r2_bit": "2^44 + 2^41 - 2^39 + 2^35 + 2^32 - 2^23 - 2^19 + 2^17 + 1"
"znprimroot": 13
- "n": 288230376144568321
"n_hex": "0x3ffffffff930001"
"n_bit": "2^58 - 2^23 + 2^20 + 2^18 - 2^16 + 1"
"n_fac": "2^16 * 3^2 * 5 * 3023 * 32330257 + 1"
"nd": 93117188777639935
"nd_hex": "0x14ad196ff92ffff"
"nd_bit": "2^56 + 2^54 + 2^52 - 2^50 - 2^48 - 2^46 + 2^44 + 2^41 - 2^39 + 2^37 - 2^35 - 2^32 - 2^23 + 2^20 + 2^18 - 2^16 - 1"
"r2": 51028492156929
"r2_hex": "0x2e68ff260001"
"r2_bit": "2^46 - 2^44 - 2^41 + 2^39 - 2^37 + 2^35 + 2^32 - 2^24 + 2^21 + 2^19 - 2^17 + 1"
"znprimroot": 43
- "n": 288230376044298241
"n_hex": "0x3fffffff9990001"
"n_bit": "2^58 - 2^27 + 2^25 - 2^23 + 2^21 - 2^19 + 2^16 + 1"
"n_fac": "2^16 * 3^2 * 5 * 7 * 23 * 937 * 647861 + 1"
"nd": 99082004898316287
"nd_hex": "0x160028ef998ffff"
"nd_bit": "2^57 - 2^55 - 2^53 + 2^41 + 2^39 + 2^36 - 2^32 - 2^27 + 2^25 - 2^23 + 2^21 - 2^19 + 2^16 - 1"
"r2": 11537660626731009
"r2_hex": "0x28fd70f3320001"
"r2_bit": "2^53 + 2^51 + 2^48 - 2^41 - 2^39 - 2^36 + 2^32 - 2^28 + 2^26 - 2^24 + 2^22 - 2^20 + 2^17 + 1"
"znprimroot": 52
- "n": 288230376147386369
"n_hex": "0x3ffffffffbe0001"
"n_bit": "2^58 - 2^22 - 2^17 + 1"
"n_fac": "2^17 * 31 * 70936234049 + 1"
"nd": 69787085342375935
"nd_hex": "0xf7eefbffbdffff"
"nd_bit": "2^56 - 2^51 - 2^44 - 2^40 - 2^34 - 2^22 - 2^17 - 1"
"r2": 18708868890625
"r2_hex": "0x1103ff7c0001"
"r2_bit": "2^44 + 2^40 + 2^34 - 2^23 - 2^18 + 1"
"znprimroot": 3
- "n": 288230376132182017
"n_hex": "0x3fffffffed60001"
"n_bit": "2^58 - 2^24 - 2^21 - 2^19 - 2^17 + 1"
"n_fac": "2^17 * 3^2 * 13 * 397 * 1181 * 40087 + 1"
"nd": 186517974240591871
"nd_hex": "0x296a51bfed5ffff"
"nd_bit": "2^57 + 2^55 + 2^53 - 2^51 - 2^49 + 2^47 + 2^45 + 2^42 + 2^40 + 2^37 - 2^34 - 2^24 - 2^21 - 2^19 - 2^17 - 1"
"r2": 381410236694529
"r2_hex": "0x15ae3fdac0001"
"r2_bit": "2^49 - 2^47 - 2^45 - 2^42 - 2^40 - 2^37 + 2^34 - 2^25 - 2^22 - 2^20 - 2^18 + 1"
"znprimroot": 5
- "n": 288230376118026241
"n_hex": "0x3fffffffdfe0001"
"n_bit": "2^58 - 2^25 - 2^17 + 1"
"n_fac": "2^17 * 3^2 * 5 * 17 * 541 * 757 * 7019 + 1"
"nd": 284843863124606975
"nd_hex": "0x3f3f7fbfdfdffff"
"nd_bit": "2^58 - 2^52 + 2^50 - 2^43 - 2^34 - 2^25 - 2^17 - 1"
"r2": 1134713112363009
"r2_hex": "0x40803fbfc0001"
"r2_bit": "2^50 + 2^43 + 2^34 - 2^26 - 2^18 + 1"
"znprimroot": 19
- "n": 288230376023654401
"n_hex": "0x3fffffff85e0001"
"n_bit": "2^58 - 2^27 + 2^23 - 2^21 - 2^17 + 1"
"n_fac": "2^17 * 3^3 * 5^2 * 7 * 6619 * 70313 + 1"
"nd": 17378313724887039
"nd_hex": "0x3dbd7bf85dffff"
"nd_bit": "2^54 - 2^49 - 2^46 - 2^41 - 2^39 - 2^34 - 2^27 + 2^23 - 2^21 - 2^17 - 1"
"r2": 16398683096219649
"r2_hex": "0x3a4283f0bc0001"
"r2_bit": "2^54 - 2^51 + 2^49 + 2^46 + 2^41 + 2^39 + 2^34 - 2^28 + 2^24 - 2^22 - 2^18 + 1"
"znprimroot": 17
- "n": 288230376135196673
"n_hex": "0x3ffffffff040001"
"n_bit": "2^58 - 2^24 + 2^18 + 1"
"n_fac": "2^18 * 31 * 35468117023 + 1"
"nd": 17741650889801727
"nd_hex": "0x3f07efff03ffff"
"nd_bit": "2^54 - 2^48 + 2^43 - 2^36 - 2^24 + 2^18 - 1"
"r2": 272747570135041
"r2_hex": "0xf80ffe080001"
"r2_bit": "2^48 - 2^43 + 2^36 - 2^25 + 2^19 + 1"
"znprimroot": 3
- "n": 288230375852605441
"n_hex": "0x3ffffffee2c0001"
"n_bit": "2^58 - 2^28 - 2^25 + 2^22 - 2^20 - 2^18 + 1"
"n_fac": "2^18 * 3^2 * 5 * 229 * 1543 * 69149 + 1"
"nd": 252808990288510975
"nd_hex": "0x382286fee2bffff"
"nd_bit": "2^58 - 2^55 + 2^49 + 2^45 + 2^43 + 2^39 - 2^36 - 2^28 - 2^25 + 2^22 - 2^20 - 2^18 - 1"
"r2": 89464580494327809
"r2_hex": "0x13dd78fdc580001"
"r2_bit": "2^56 + 2^54 - 2^49 - 2^45 - 2^43 - 2^39 + 2^36 - 2^29 - 2^26 + 2^23 - 2^21 - 2^19 + 1"
"znprimroot": 14
- "n": 288230375652065281
"n_hex": "0x3ffffffe2380001"
"n_bit": "2^58 - 2^29 + 2^25 + 2^22 - 2^19 + 1"
"n_fac": "2^19 * 3^3 * 5 * 7 * 581752183 + 1"
"nd": 182698974740217855
"nd_hex": "0x28913bfe237ffff"
"nd_bit": "2^57 + 2^55 + 2^51 + 2^48 + 2^44 + 2^42 - 2^38 - 2^29 + 2^25 + 2^22 - 2^19 - 1"
"r2": 249646587988410369
"r2_hex": "0x376ec3fc4700001"
"r2_bit": "2^58 - 2^55 - 2^51 - 2^48 - 2^44 - 2^42 + 2^38 - 2^30 + 2^26 + 2^23 - 2^20 + 1"
"znprimroot": 13
- "n": 288230376131788801
"n_hex": "0x3fffffffed00001"
"n_bit": "2^58 - 2^24 - 2^22 + 2^20 + 1"
"n_fac": "2^20 * 3 * 5^2 * 59 * 307 * 202343 + 1"
"nd": 287833452434161663
"nd_hex": "0x3fe96fffecfffff"
"nd_bit": "2^58 - 2^49 + 2^47 + 2^45 - 2^43 - 2^40 - 2^24 - 2^22 + 2^20 - 1"
"r2": 396923657781249
"r2_hex": "0x168fffda00001"
"r2_bit": "2^49 - 2^47 - 2^45 + 2^43 + 2^40 - 2^25 - 2^23 + 2^21 + 1"
"znprimroot": 11
- "n": 288230374496010241
"n_hex": "0x3ffffff9d500001"
"n_bit": "2^58 - 2^31 + 2^29 - 2^26 + 2^24 + 2^22 + 2^20 + 1"
"n_fac": "2^20 * 3^2 * 5 * 7 * 872628271 + 1"
"nd": 140956289513553919
"nd_hex": "0x1f4c6ff9d4fffff"
"nd_bit": "2^57 - 2^52 + 2^50 + 2^48 - 2^46 + 2^43 - 2^40 - 2^31 + 2^29 - 2^26 + 2^24 + 2^22 + 2^20 - 1"
"r2": 147274096572366840
"r2_hex": "0x20b3902b2cffff8"
"r2_bit": "2^57 + 2^52 - 2^50 - 2^48 + 2^46 - 2^43 + 2^40 + 2^34 - 2^32 - 2^30 - 2^28 + 2^26 - 2^24 - 2^22 + 2^20 - 2^3"
"znprimroot": 23
- "n": 288230376128643073
"n_hex": "0x3fffffffea00001"
"n_bit": "2^58 - 2^25 + 2^23 + 2^21 + 1"
"n_fac": "2^21 * 3^2 * 1487 * 10269667 + 1"
"nd": 287698212500799487
"nd_hex": "0x3fe1bfffe9fffff"
"nd_bit": "2^58 - 2^49 + 2^45 - 2^42 - 2^25 + 2^23 + 2^21 - 1"
"r2": 532163581706241
"r2_hex": "0x1e3fffd400001"
"r2_bit": "2^49 - 2^45 + 2^42 - 2^26 + 2^24 + 2^22 + 1"
"znprimroot": 5
- "n": 288230374920683521
"n_hex": "0x3ffffffb6a00001"
"n_bit": "2^58 - 2^30 - 2^27 - 2^25 + 2^23 + 2^21 + 1"
"n_fac": "2^21 * 3^2 * 5 * 13 * 67 * 277 * 12659 + 1"
"nd": 213951767394648063
"nd_hex": "0x2f81bffb69fffff"
"nd_bit": "2^58 - 2^56 - 2^51 + 2^45 - 2^42 - 2^30 - 2^27 - 2^25 + 2^23 + 2^21 - 1"
"r2": 74278611219120124
"r2_hex": "0x107e400dc1ffffc"
"r2_bit": "2^56 + 2^51 - 2^45 + 2^42 + 2^32 - 2^29 - 2^26 + 2^21 - 2^2"
"znprimroot": 17
- "n": 288230374165708801
"n_hex": "0x3ffffff89a00001"
"n_bit": "2^58 - 2^31 + 2^27 + 2^25 - 2^23 + 2^21 + 1"
"n_fac": "2^21 * 3^3 * 5^2 * 7 * 29 * 193 * 5197 + 1"
"nd": 91017570561294335
"nd_hex": "0x1435bff899fffff"
"nd_bit": "2^56 + 2^54 + 2^50 - 2^47 - 2^45 - 2^42 - 2^31 + 2^27 + 2^25 - 2^23 + 2^21 - 1"
"r2": 197212825450446836
"r2_hex": "0x2bca405161ffff4"
"r2_bit": "2^58 - 2^56 - 2^54 - 2^50 + 2^47 + 2^45 + 2^42 + 2^34 + 2^32 + 2^29 - 2^27 - 2^25 + 2^21 - 2^4 + 2^2"
"znprimroot": 11
- "n": 288230376097185793
"n_hex": "0x3fffffffcc00001"
"n_bit": "2^58 - 2^26 + 2^24 - 2^22 + 1"
"n_fac": "2^22 * 3 * 22906492241c + 1"
"nd": 285257296655679487
"nd_hex": "0x3f56ffffcbfffff"
"nd_bit": "2^58 - 2^51 - 2^49 - 2^47 - 2^44 - 2^26 + 2^24 - 2^22 - 1"
"r2": 2973079332454401
"r2_hex": "0xa8ffff9800001"
"r2_bit": "2^51 + 2^49 + 2^47 + 2^44 - 2^27 + 2^25 - 2^23 + 1"
"znprimroot": 5
- "n": 288230373756764161
"n_hex": "0x3ffffff71400001"
"n_bit": "2^58 - 2^31 - 2^28 + 2^24 + 2^22 + 1"
"n_fac": "2^22 * 3 * 5 * 19 * 107 * 457 * 4931 + 1"
"nd": 28833590531850239
"nd_hex": "0x666fff713fffff"
"nd_bit": "2^55 - 2^53 + 2^51 - 2^49 + 2^47 - 2^44 - 2^31 - 2^28 + 2^24 + 2^22 - 1"
"r2": 259396823939022830
"r2_hex": "0x39990097abfffee"
"r2_bit": "2^58 - 2^55 + 2^53 - 2^51 + 2^49 - 2^47 + 2^44 + 2^35 + 2^33 - 2^31 - 2^26 - 2^24 - 2^22 - 2^4 - 2"
"znprimroot": 11
- "n": 288230369101086721
"n_hex": "0x3fffffe5bc00001"
"n_bit": "2^58 - 2^33 + 2^31 - 2^29 - 2^26 - 2^22 + 1"
"n_fac": "2^22 * 3 * 5 * 7 * 11 * 227 * 262103 + 1"
"nd": 152541838140506111
"nd_hex": "0x21deffe5bbfffff"
"nd_bit": "2^57 + 2^53 - 2^49 - 2^44 - 2^33 + 2^31 - 2^29 - 2^26 - 2^22 - 1"
"r2": 135689729566834517
"r2_hex": "0x1e21117127fff55"
"r2_bit": "2^57 - 2^53 + 2^49 + 2^44 + 2^40 + 2^37 - 2^35 - 2^32 + 2^28 + 2^25 + 2^23 - 2^8 + 2^6 + 2^4 + 2^2 + 1"
"znprimroot": 17
- "n": 288230367465308161
"n_hex": "0x3fffffdfa400001"
"n_bit": "2^58 - 2^33 - 2^27 + 2^25 + 2^22 + 1"
"n_fac": "2^22 * 3^2 * 5 * 61 * 25034417 + 1"
"nd": 62751318934028287
"nd_hex": "0xdeeffdfa3fffff"
"nd_bit": "2^56 - 2^53 - 2^48 - 2^44 - 2^33 - 2^27 + 2^25 + 2^22 - 1"
"r2": 225481298309807868
"r2_hex": "0x321120bd13ffefc"
"r2_bit": "2^58 - 2^56 + 2^53 + 2^48 + 2^44 + 2^41 + 2^36 - 2^34 - 2^30 + 2^28 + 2^24 + 2^22 - 2^8 - 2^2"
"znprimroot": 14
- "n": 288230376126545921
"n_hex": "0x3fffffffe800001"
"n_bit": "2^58 - 2^25 + 2^23 + 1"
"n_fac": "2^23 * 5 * 6871947673 + 1"
"nd": 287597057428946943
"nd_hex": "0x3fdbffffe7fffff"
"nd_bit": "2^58 - 2^49 - 2^46 - 2^25 + 2^23 - 1"
"r2": 633318647267329
"r2_hex": "0x23ffffd000001"
"r2_bit": "2^49 + 2^46 - 2^26 + 2^24 + 1"
"znprimroot": 6
- "n": 288230376059437057
"n_hex": "0x3fffffffa800001"
"n_bit": "2^58 - 2^27 + 2^25 + 2^23 + 1"
"n_fac": "2^23 * 3 * 7 * 503 * 3252839 + 1"
"nd": 279715758013939711
"nd_hex": "0x3e1bffffa7fffff"
"nd_bit": "2^58 - 2^53 + 2^49 - 2^46 - 2^27 + 2^25 + 2^23 - 1"
"r2": 8514617860947969
"r2_hex": "0x1e3ffff5000001"
"r2_bit": "2^53 - 2^49 + 2^46 - 2^28 + 2^26 + 2^24 + 1"
"znprimroot": 5
- "n": 288230369415659521
"n_hex": "0x3fffffe6e800001"
"n_bit": "2^58 - 2^33 + 2^31 - 2^28 - 2^25 + 2^23 + 1"
"n_fac": "2^23 * 3 * 5 * 4363 * 525017 + 1"
"nd": 165999860779057151
"nd_hex": "0x24dbffe6e7fffff"
"nd_bit": "2^57 + 2^54 + 2^52 - 2^49 - 2^46 - 2^33 + 2^31 - 2^28 - 2^25 + 2^23 - 1"
"r2": 122231552724696932
"r2_hex": "0x1b240f3187fff64"
"r2_bit": "2^57 - 2^54 - 2^52 + 2^49 + 2^46 + 2^40 - 2^36 + 2^34 - 2^32 + 2^29 - 2^27 + 2^23 - 2^7 - 2^5 + 2^2"
"znprimroot": 29
- "n": 288230363879178241
"n_hex": "0x3fffffd24800001"
"n_bit": "2^58 - 2^34 + 2^32 + 2^29 + 2^26 + 2^23 + 1"
"n_fac": "2^23 * 3^2 * 5 * 13 * 211 * 278363 + 1"
"nd": 129408108270190591
"nd_hex": "0x1cbbffd247fffff"
"nd_bit": "2^57 - 2^54 + 2^52 - 2^50 - 2^46 - 2^34 + 2^32 + 2^29 + 2^26 + 2^23 - 1"
"r2": 158828637326409207
"r2_hex": "0x23445cddbfffdf7"
"r2_bit": "2^57 + 2^54 - 2^52 + 2^50 + 2^46 + 2^43 - 2^41 - 2^38 + 2^36 - 2^33 - 2^29 - 2^26 - 2^9 - 2^3 - 1"
"znprimroot": 14
- "n": 288230375027638273
"n_hex": "0x3ffffffbd000001"
"n_bit": "2^58 - 2^30 - 2^26 + 2^24 + 1"
"n_fac": "2^24 * 3 * 5726623039 + 1"
"nd": 177610709180350463
"nd_hex": "0x276ffffbcffffff"
"nd_bit": "2^57 + 2^55 - 2^51 - 2^48 - 2^30 - 2^26 + 2^24 - 1"
"r2": 110619668095434749
"r2_hex": "0x189000085fffffd"
"r2_bit": "2^57 - 2^55 + 2^51 + 2^48 + 2^31 + 2^27 - 2^25 - 2^2 + 1"
"znprimroot": 5
- "n": 288230376051048449
"n_hex": "0x3fffffffa000001"
"n_bit": "2^58 - 2^27 + 2^25 + 1"
"n_fac": "2^25 * 29 * 296204641 + 1"
"nd": 278097276889464831
"nd_hex": "0x3dbfffff9ffffff"
"nd_bit": "2^58 - 2^53 - 2^50 - 2^27 + 2^25 - 1"
"r2": 10133098960257025
"r2_hex": "0x23fffff4000001"
"r2_bit": "2^53 + 2^50 - 2^28 + 2^26 + 1"
"znprimroot": 3
- "n": 288230374675316737
"n_hex": "0x3ffffffa8000001"
"n_bit": "2^58 - 2^31 + 2^29 + 2^27 + 1"
"n_fac": "2^27 * 3^3 * 13 * 6118187 + 1"
"nd": 126100788089978879
"nd_hex": "0x1bfffffa7ffffff"
"nd_bit": "2^57 - 2^54 - 2^31 + 2^29 + 2^27 - 1"
"r2": 162129593967312890
"r2_hex": "0x2400001b7fffffa"
"r2_bit": "2^57 + 2^54 + 2^33 - 2^30 - 2^27 - 2^3 + 2"
"znprimroot": 5
- "n": 288230373735792641
"n_hex": "0x3ffffff70000001"
"n_bit": "2^58 - 2^31 - 2^28 + 1"
"n_fac": "2^28 * 5 * 6553 * 32771 + 1"
"nd": 216172779697864703
"nd_hex": "0x2ffffff6fffffff"
"nd_bit": "2^58 - 2^56 - 2^31 - 2^28 - 1"
"r2": 72057637524471789
"r2_hex": "0x100000a1fffffed"
"r2_bit": "2^56 + 2^35 + 2^33 + 2^29 - 2^4 - 2^2 + 1"
"znprimroot": 6
- "n": 288230358971842561
"n_hex": "0x3fffffc00000001"
"n_bit": "2^58 - 2^34 + 1"
"n_fac": "2^34 * 3^2 * 5 * 7 * 13 * 17 * 241 + 1"
"nd": 288230358971842559
"nd_hex": "0x3fffffbffffffff"
"nd_bit": "2^58 - 2^34 - 1"
"r2": 17557826305025
"r2_hex": "0xff7fffffc01"
"r2_bit": "2^44 - 2^35 - 2^10 + 1"
"znprimroot": 11
- "n": 288230273072496641
"n_hex": "0x3ffffe800000001"
"n_bit": "2^58 - 2^37 + 2^35 + 1"
"n_fac": "2^35 * 5 * 1677721 + 1"
"nd": 288230273072496639
"nd_hex": "0x3ffffe7ffffffff"
"nd_bit": "2^58 - 2^37 + 2^35 - 1"
"r2": 3799706027126785
"r2_hex": "0xd7fcfffff7001"
"r2_bit": "2^52 - 2^49 - 2^47 - 2^38 + 2^36 - 2^15 - 2^12 + 1"
"znprimroot": 6
- "n": 288229585877729281
"n_hex": "0x3ffff4800000001"
"n_bit": "2^58 - 2^40 + 2^38 + 2^35 + 1"
"n_fac": "2^35 * 3^2 * 5 * 131 * 1423 + 1"
"nd": 288229585877729279
"nd_hex": "0x3ffff47ffffffff"
"nd_bit": "2^58 - 2^40 + 2^38 + 2^35 - 1"
"r2": 271203510880497660
"r2_hex": "0x3c38227ffdeeffc"
"r2_bit": "2^58 - 2^54 + 2^50 - 2^47 + 2^41 + 2^37 + 2^35 - 2^21 - 2^16 - 2^12 - 2^2"
"znprimroot": 13
- "n": 288214123995463681
"n_hex": "0x3fff13800000001"
"n_bit": "2^58 - 2^44 + 2^40 + 2^38 - 2^35 + 1"
"n_fac": "2^35 * 3^2 * 5 * 7 * 31 * 859 + 1"
"nd": 288214123995463679
"nd_hex": "0x3fff137ffffffff"
"nd_bit": "2^58 - 2^44 + 2^40 + 2^38 - 2^35 - 1"
"r2": 201536907042104871
"r2_hex": "0x2cc00bfc9602627"
"r2_bit": "2^58 - 2^56 - 2^54 + 2^52 - 2^50 + 2^40 - 2^38 - 2^30 + 2^27 + 2^25 - 2^23 - 2^21 + 2^13 + 2^11 - 2^9 + 2^5 + 2^3 - 1"
"znprimroot": 13
- "n": 288228933042700289
"n_hex": "0x3fffeb000000001"
"n_bit": "2^58 - 2^40 - 2^38 - 2^36 + 1"
"n_fac": "2^36 * 37 * 113359 + 1"
"nd": 288228933042700287
"nd_hex": "0x3fffeafffffffff"
"nd_bit": "2^58 - 2^40 - 2^38 - 2^36 - 1"
"r2": 50714561507082205
"r2_hex": "0xb42c9fff91bfdd"
"r2_bit": "2^56 - 2^54 - 2^52 + 2^50 + 2^46 - 2^44 - 2^42 + 2^39 + 2^37 - 2^23 + 2^20 + 2^17 - 2^14 - 2^5 - 2^2 + 1"
"znprimroot": 3
- "n": 288221648778166273
"n_hex": "0x3fff81000000001"
"n_bit": "2^58 - 2^43 + 2^36 + 1"
"n_fac": "2^36 * 3 * 13 * 41 * 43 * 61 + 1"
"nd": 288221648778166271
"nd_hex": "0x3fff80fffffffff"
"nd_bit": "2^58 - 2^43 + 2^36 - 1"
"r2": 212799548894978240
"r2_hex": "0x2f4040ff03fa0c0"
"r2_bit": "2^58 - 2^56 - 2^52 + 2^50 + 2^42 + 2^36 - 2^28 + 2^22 - 2^15 + 2^13 + 2^8 - 2^6"
"znprimroot": 5
- "n": 288220824144445441
"n_hex": "0x3fff75000000001"
"n_bit": "2^58 - 2^43 - 2^40 + 2^38 + 2^36 + 1"
"n_fac": "2^36 * 3 * 5 * 23 * 12157 + 1"
"nd": 288220824144445439
"nd_hex": "0x3fff74fffffffff"
"nd_bit": "2^58 - 2^43 - 2^40 + 2^38 + 2^36 - 1"
"r2": 13496711072814854
"r2_hex": "0x2ff32fed219706"
"r2_bit": "2^54 - 2^52 - 2^44 + 2^42 - 2^40 + 2^38 - 2^36 - 2^28 - 2^26 + 2^24 + 2^21 + 2^17 - 2^15 + 2^13 - 2^11 - 2^8 + 2^3 - 2"
"znprimroot": 22
- "n": 288196085132820481
"n_hex": "0x3ffe0d000000001"
"n_bit": "2^58 - 2^45 + 2^40 - 2^38 + 2^36 + 1"
"n_fac": "2^36 * 3 * 5 * 7 * 11 * 3631 + 1"
"nd": 288196085132820479
"nd_hex": "0x3ffe0cfffffffff"
"nd_bit": "2^58 - 2^45 + 2^40 - 2^38 + 2^36 - 1"
"r2": 48415822217893850
"r2_hex": "0xac01ef0cce57da"
"r2_bit": "2^56 - 2^54 - 2^52 - 2^50 + 2^41 - 2^36 - 2^32 + 2^28 - 2^26 + 2^24 - 2^22 + 2^20 - 2^17 + 2^15 - 2^13 - 2^11 - 2^5 - 2^3 + 2"
"znprimroot": 17
- "n": 288194023548518401
"n_hex": "0x3ffdef000000001"
"n_bit": "2^58 - 2^45 - 2^40 - 2^36 + 1"
"n_fac": "2^36 * 3^4 * 5^2 * 19 * 109 + 1"
"nd": 288194023548518399
"nd_hex": "0x3ffdeefffffffff"
"nd_bit": "2^58 - 2^45 - 2^40 - 2^36 - 1"
"r2": 38370752200633567
"r2_hex": "0x8851feeeaeecdf"
"r2_bit": "2^55 + 2^51 + 2^46 + 2^44 + 2^41 - 2^32 - 2^28 - 2^24 - 2^22 - 2^20 - 2^16 - 2^12 - 2^10 + 2^8 - 2^5 - 1"
"znprimroot": 7
- "n": 288225016032526337
"n_hex": "0x3fffb2000000001"
"n_bit": "2^58 - 2^42 - 2^40 + 2^37 + 1"
"n_fac": "2^37 * 733 * 2861 + 1"
"nd": 288225016032526335
"nd_hex": "0x3fffb1fffffffff"
"nd_bit": "2^58 - 2^42 - 2^40 + 2^37 - 1"
"r2": 217087163371550916
"r2_hex": "0x3033f9ffa0ef8c4"
"r2_bit": "2^58 - 2^56 + 2^50 - 2^48 + 2^46 - 2^39 + 2^37 - 2^27 + 2^25 + 2^20 - 2^16 - 2^11 + 2^8 - 2^6 + 2^2"
"znprimroot": 3
- "n": 288218968718573569
"n_hex": "0x3fff5a000000001"
"n_bit": "2^58 - 2^43 - 2^41 - 2^39 + 2^37 + 1"
"n_fac": "2^37 * 3 * 13 * 17 * 3163 + 1"
"nd": 288218968718573567
"nd_hex": "0x3fff59fffffffff"
"nd_bit": "2^58 - 2^43 - 2^41 - 2^39 + 2^37 - 1"
"r2": 14665423078734388
"r2_hex": "0x341a1fe516ba34"
"r2_bit": "2^54 - 2^52 + 2^50 + 2^45 - 2^43 + 2^41 + 2^37 - 2^29 + 2^26 + 2^24 + 2^21 - 2^19 - 2^16 - 2^14 - 2^11 + 2^9 + 2^6 - 2^4 + 2^2"
"znprimroot": 14
- "n": 288195878974390273
"n_hex": "0x3ffe0a000000001"
"n_bit": "2^58 - 2^45 + 2^39 + 2^37 + 1"
"n_fac": "2^37 * 3^3 * 37 * 2099 + 1"
"nd": 288195878974390271
"nd_hex": "0x3ffe09fffffffff"
"nd_bit": "2^58 - 2^45 + 2^39 + 2^37 - 1"
"r2": 70658873679115634
"r2_hex": "0xfb07df09df7572"
"r2_bit": "2^56 - 2^50 - 2^48 + 2^43 - 2^37 - 2^32 + 2^27 + 2^25 - 2^21 - 2^15 - 2^11 - 2^9 - 2^7 - 2^4 + 2"
"znprimroot": 5
- "n": 288116714137190401
"n_hex": "0x3ff98a000000001"
"n_bit": "2^58 - 2^47 + 2^45 - 2^43 + 2^39 + 2^37 + 1"
"n_fac": "2^37 * 3^2 * 5^2 * 7 * 11^3 + 1"
"nd": 288116714137190399
"nd_hex": "0x3ff989fffffffff"
"nd_bit": "2^58 - 2^47 + 2^45 - 2^43 + 2^39 + 2^37 - 1"
"r2": 286131913370448043
"r2_hex": "0x3f88b758f5930ab"
"r2_bit": "2^58 - 2^51 + 2^47 + 2^44 - 2^42 - 2^39 - 2^35 - 2^33 - 2^31 + 2^28 - 2^23 - 2^21 - 2^19 + 2^16 + 2^14 - 2^12 + 2^8 - 2^6 - 2^4 - 2^2 - 1"
"znprimroot": 13
- "n": 288224603715665921
"n_hex": "0x3fffac000000001"
"n_bit": "2^58 - 2^42 - 2^40 - 2^38 + 1"
"n_fac": "2^38 * 5 * 43 * 4877 + 1"
"nd": 288224603715665919
"nd_hex": "0x3fffabfffffffff"
"nd_bit": "2^58 - 2^42 - 2^40 - 2^38 - 1"
"r2": 85409238496311030
"r2_hex": "0x12f6f3ff91bf6f6"
"r2_bit": "2^56 + 2^54 - 2^52 - 2^47 - 2^44 - 2^40 + 2^38 - 2^27 + 2^24 + 2^21 - 2^18 - 2^11 - 2^8 - 2^3 - 2"
"znprimroot": 7
- "n": 288208660797063169
"n_hex": "0x3ffec4000000001"
"n_bit": "2^58 - 2^44 - 2^42 + 2^38 + 1"
"n_fac": "2^38 * 3 * 349499 + 1"
"nd": 288208660797063167
"nd_hex": "0x3ffec3fffffffff"
"nd_bit": "2^58 - 2^44 - 2^42 + 2^38 - 1"
"r2": 10655640426520188
"r2_hex": "0x25db3f9e7a1e7c"
"r2_bit": "2^53 + 2^51 - 2^49 - 2^45 - 2^42 - 2^40 + 2^38 - 2^31 + 2^29 - 2^25 + 2^23 - 2^19 + 2^17 + 2^13 - 2^9 + 2^7 - 2^2"
"znprimroot": 13
- "n": 288172376913346561
"n_hex": "0x3ffcb4000000001"
"n_bit": "2^58 - 2^46 + 2^44 - 2^42 - 2^40 + 2^38 + 1"
"n_fac": "2^38 * 3^2 * 5 * 23297 + 1"
"nd": 288172376913346559
"nd_hex": "0x3ffcb3fffffffff"
"nd_bit": "2^58 - 2^46 + 2^44 - 2^42 - 2^40 + 2^38 - 1"
"r2": 120689806294919270
"r2_hex": "0x1acc6bd48382866"
"r2_bit": "2^57 - 2^54 - 2^52 - 2^50 + 2^48 - 2^46 + 2^43 - 2^40 - 2^38 - 2^34 + 2^32 + 2^30 + 2^27 + 2^22 - 2^19 + 2^13 + 2^11 + 2^7 - 2^5 + 2^3 - 2"
"znprimroot": 14
- "n": 287986834326159361
"n_hex": "0x3ff228000000001"
"n_bit": "2^58 - 2^48 + 2^45 + 2^41 + 2^39 + 1"
"n_fac": "2^39 * 3^2 * 5 * 7 * 1663 + 1"
"nd": 287986834326159359
"nd_hex": "0x3ff227fffffffff"
"nd_bit": "2^58 - 2^48 + 2^45 + 2^41 + 2^39 - 1"
"r2": 67414150477814809
"r2_hex": "0xef80d00c109c19"
"r2_bit": "2^56 - 2^52 - 2^47 + 2^40 - 2^38 + 2^36 + 2^28 - 2^26 + 2^20 + 2^15 + 2^13 - 2^10 + 2^5 - 2^3 + 1"
"znprimroot": 55
- "n": 284350199617290241
"n_hex": "0x3f2370000000001"
"n_bit": "2^58 - 2^52 + 2^49 + 2^46 - 2^43 - 2^40 + 1"
"n_fac": "2^40 * 3^2 * 5 * 7 * 821 + 1"
"nd": 284350199617290239
"nd_hex": "0x3f236ffffffffff"
"nd_bit": "2^58 - 2^52 + 2^49 + 2^46 - 2^43 - 2^40 - 1"
"r2": 273783721448079242
"r2_hex": "0x3ccacd816327f8a"
"r2_bit": "2^58 - 2^54 + 2^52 - 2^50 + 2^48 - 2^46 - 2^44 - 2^42 + 2^40 - 2^37 - 2^35 + 2^29 - 2^27 - 2^25 + 2^22 - 2^20 + 2^17 + 2^15 - 2^7 + 2^3 + 2"
"znprimroot": 11
- "n": 288210584942411777
"n_hex": "0x3ffee0000000001"
"n_bit": "2^58 - 2^44 - 2^41 + 1"
"n_fac": "2^41 * 131063 + 1"
"nd": 288210584942411775
"nd_hex": "0x3ffedffffffffff"
"nd_bit": "2^58 - 2^44 - 2^41 - 1"
"r2": 117454228766495611
"r2_hex": "0x1a147ffaefe937b"
"r2_bit": "2^57 - 2^55 + 2^53 + 2^48 + 2^46 + 2^43 - 2^30 - 2^28 - 2^24 - 2^17 + 2^15 + 2^12 + 2^10 - 2^7 - 2^2 - 1"
"znprimroot": 3
- "n": 288166604477300737
"n_hex": "0x3ffc60000000001"
"n_bit": "2^58 - 2^46 + 2^43 - 2^41 + 1"
"n_fac": "2^41 * 3 * 11^2 * 19^2 + 1"
"nd": 288166604477300735
"nd_hex": "0x3ffc5ffffffffff"
"nd_bit": "2^58 - 2^46 + 2^43 - 2^41 - 1"
"r2": 246818356090395343
"r2_hex": "0x36cdffcb6d05acf"
"r2_bit": "2^58 - 2^55 - 2^52 - 2^50 + 2^48 - 2^45 - 2^34 + 2^32 - 2^30 - 2^27 - 2^24 - 2^22 + 2^20 + 2^15 - 2^13 - 2^10 - 2^8 - 2^6 + 2^4 - 1"
"znprimroot": 7
- "n": 287995080663367681
"n_hex": "0x3ff2a0000000001"
"n_bit": "2^58 - 2^48 + 2^45 + 2^43 + 2^41 + 1"
"n_fac": "2^41 * 3 * 5 * 8731 + 1"
"nd": 287995080663367679
"nd_hex": "0x3ff29ffffffffff"
"nd_bit": "2^58 - 2^48 + 2^45 + 2^43 + 2^41 - 1"
"r2": 1393988504740369
"r2_hex": "0x4f3d33da56211"
"r2_bit": "2^50 + 2^48 - 2^44 + 2^42 - 2^38 + 2^36 + 2^34 - 2^32 + 2^30 - 2^25 - 2^23 + 2^21 + 2^19 - 2^17 - 2^15 - 2^13 + 2^9 + 2^4 + 1"
"znprimroot": 11
- "n": 287071490896035841
"n_hex": "0x3fbe20000000001"
"n_bit": "2^58 - 2^50 - 2^45 + 2^41 + 1"
"n_fac": "2^41 * 3^3 * 5 * 967 + 1"
"nd": 287071490896035839
"nd_hex": "0x3fbe1ffffffffff"
"nd_bit": "2^58 - 2^50 - 2^45 + 2^41 - 1"
"r2": 271407567963710495
"r2_hex": "0x3c43bbebdd4641f"
"r2_bit": "2^58 - 2^54 + 2^50 + 2^46 - 2^42 - 2^38 - 2^32 - 2^30 - 2^25 - 2^22 + 2^20 + 2^18 + 2^15 - 2^13 + 2^10 + 2^5 - 1"
"znprimroot": 22
- "n": 282849366245376001
"n_hex": "0x3ece20000000001"
"n_bit": "2^58 - 2^52 - 2^50 + 2^48 - 2^45 + 2^41 + 1"
"n_fac": "2^41 * 3 * 5^3 * 7^3 + 1"
"nd": 282849366245375999
"nd_hex": "0x3ece1ffffffffff"
"nd_bit": "2^58 - 2^52 - 2^50 + 2^48 - 2^45 + 2^41 - 1"
"r2": 17322690354810931
"r2_hex": "0x3d8ae525271033"
"r2_bit": "2^54 - 2^49 - 2^47 + 2^44 - 2^42 - 2^40 - 2^37 + 2^34 + 2^32 + 2^29 + 2^26 + 2^24 + 2^21 + 2^19 - 2^16 + 2^12 + 2^6 - 2^4 + 2^2 - 1"
"znprimroot": 13
- "n": 280540391827046401
"n_hex": "0x3e4ae0000000001"
"n_bit": "2^58 - 2^53 + 2^50 + 2^48 - 2^46 - 2^44 - 2^41 + 1"
"n_fac": "2^41 * 3^6 * 5^2 * 7 + 1"
"nd": 280540391827046399
"nd_hex": "0x3e4adffffffffff"
"nd_bit": "2^58 - 2^53 + 2^50 + 2^48 - 2^46 - 2^44 - 2^41 - 1"
"r2": 229639914090902163
"r2_hex": "0x32fd84901a3b293"
"r2_bit": "2^58 - 2^56 + 2^54 - 2^52 - 2^45 - 2^43 + 2^38 + 2^35 + 2^32 + 2^25 - 2^23 + 2^21 + 2^18 - 2^14 - 2^12 + 2^9 + 2^7 + 2^4 + 2^2 - 1"
"znprimroot": 11
- "n": 288146813268000769
"n_hex": "0x3ffb40000000001"
"n_bit": "2^58 - 2^46 - 2^44 + 2^42 + 1"
"n_fac": "2^42 * 3 * 21839 + 1"
"nd": 288146813268000767
"nd_hex": "0x3ffb3ffffffffff"
"nd_bit": "2^58 - 2^46 - 2^44 + 2^42 - 1"
"r2": 246528074900098061
"r2_hex": "0x36bd7fa5b94cc0d"
"r2_bit": "2^58 - 2^55 - 2^52 - 2^50 - 2^45 - 2^43 - 2^35 + 2^33 + 2^31 - 2^29 - 2^26 - 2^23 + 2^20 + 2^18 + 2^16 - 2^14 + 2^12 - 2^10 + 2^4 - 2^2 + 1"
"znprimroot": 14
- "n": 288041260151734273
"n_hex": "0x3ff540000000001"
"n_bit": "2^58 - 2^48 + 2^46 + 2^44 + 2^42 + 1"
"n_fac": "2^42 * 3^2 * 19 * 383 + 1"
"nd": 288041260151734271
"nd_hex": "0x3ff53ffffffffff"
"nd_bit": "2^58 - 2^48 + 2^46 + 2^44 + 2^42 - 1"
"r2": 241052407061340980
"r2_hex": "0x35863e31724e334"
"r2_bit": "2^58 - 2^55 - 2^53 - 2^51 + 2^47 - 2^45 + 2^42 - 2^37 + 2^34 - 2^32 + 2^29 - 2^27 - 2^24 + 2^21 + 2^18 + 2^16 - 2^13 + 2^10 - 2^8 + 2^6 - 2^4 + 2^2"
"znprimroot": 5
- "n": 287434329733201921
"n_hex": "0x3fd2c0000000001"
"n_bit": "2^58 - 2^50 + 2^48 + 2^46 - 2^44 - 2^42 + 1"
"n_fac": "2^42 * 3 * 5 * 4357 + 1"
"nd": 287434329733201919
"nd_hex": "0x3fd2bffffffffff"
"nd_bit": "2^58 - 2^50 + 2^48 + 2^46 - 2^44 - 2^42 - 1"
"r2": 68286263535547028
"r2_hex": "0xf299feb1133294"
"r2_bit": "2^56 - 2^52 + 2^49 + 2^47 + 2^45 - 2^43 + 2^41 - 2^32 - 2^30 - 2^28 + 2^24 + 2^20 + 2^18 - 2^16 + 2^14 - 2^12 + 2^9 + 2^7 + 2^4 + 2^2"
"znprimroot": 11
- "n": 288045658198245377
"n_hex": "0x3ff580000000001"
"n_bit": "2^58 - 2^47 - 2^45 - 2^43 + 1"
"n_fac": "2^43 * 11 * 13 * 229 + 1"
"nd": 288045658198245375
"nd_hex": "0x3ff57ffffffffff"
"nd_bit": "2^58 - 2^47 - 2^45 - 2^43 - 1"
"r2": 123259533064249846
"r2_hex": "0x1b5e7e46b79a1f6"
"r2_bit": "2^57 - 2^54 - 2^51 - 2^49 - 2^45 + 2^43 - 2^37 + 2^34 + 2^31 - 2^28 - 2^26 - 2^23 - 2^19 + 2^17 - 2^15 + 2^13 + 2^9 - 2^3 - 2"
"znprimroot": 3
- "n": 279847699501547521
"n_hex": "0x3e2380000000001"
"n_bit": "2^58 - 2^53 + 2^49 + 2^46 - 2^43 + 1"
"n_fac": "2^43 * 3^2 * 5 * 7 * 101 + 1"
"nd": 279847699501547519
"nd_hex": "0x3e237ffffffffff"
"nd_bit": "2^58 - 2^53 + 2^49 + 2^46 - 2^43 - 1"
"r2": 226828839210571879
"r2_hex": "0x325dba0a1f5d867"
"r2_bit": "2^58 - 2^56 + 2^53 + 2^51 - 2^49 - 2^45 - 2^42 - 2^39 + 2^37 + 2^31 + 2^29 + 2^25 - 2^19 - 2^17 - 2^13 - 2^11 + 2^7 - 2^5 + 2^3 - 1"
"znprimroot": 13
- "n": 287843348058734593
"n_hex": "0x3fea00000000001"
"n_bit": "2^58 - 2^49 + 2^47 + 2^45 + 1"
"n_fac": "2^45 * 3^4 * 101 + 1"
"nd": 287843348058734591
"nd_hex": "0x3fe9fffffffffff"
"nd_bit": "2^58 - 2^49 + 2^47 + 2^45 - 1"
"r2": 259062011300261590
"r2_hex": "0x3985f86d659aed6"
"r2_bit": "2^58 - 2^55 + 2^53 - 2^51 + 2^47 - 2^45 - 2^39 + 2^35 - 2^32 - 2^29 - 2^27 - 2^25 + 2^23 - 2^21 - 2^19 + 2^17 - 2^14 - 2^12 - 2^8 - 2^5 - 2^3 - 2"
"znprimroot": 5
- "n": 286576710663536641
"n_hex": "0x3fa200000000001"
"n_bit": "2^58 - 2^51 + 2^49 + 2^45 + 1"
"n_fac": "2^45 * 3^2 * 5 * 181 + 1"
"nd": 286576710663536639
"nd_hex": "0x3fa1fffffffffff"
"nd_bit": "2^58 - 2^51 + 2^49 + 2^45 - 1"
"r2": 10158741203660880
"r2_hex": "0x24175240cf3050"
"r2_bit": "2^53 + 2^50 + 2^45 - 2^43 - 2^40 + 2^38 + 2^36 + 2^33 + 2^30 + 2^24 - 2^22 + 2^20 - 2^16 + 2^14 - 2^12 + 2^6 + 2^4"
"znprimroot": 7
- "n": 287737794942468097
"n_hex": "0x3fe400000000001"
"n_bit": "2^58 - 2^49 + 2^46 + 1"
"n_fac": "2^46 * 3 * 29 * 47 + 1"
"nd": 287737794942468095
"nd_hex": "0x3fe3fffffffffff"
"nd_bit": "2^58 - 2^49 + 2^46 - 1"
"r2": 270355871875885969
"r2_hex": "0x3c07f3baa1a6b91"
"r2_bit": "2^58 - 2^54 + 2^47 - 2^40 + 2^38 - 2^34 - 2^31 + 2^29 + 2^27 + 2^25 + 2^21 - 2^19 + 2^17 + 2^15 - 2^12 - 2^10 - 2^7 + 2^4 + 1"
"znprimroot": 5
- "n": 286682263779803137
"n_hex": "0x3fa800000000001"
"n_bit": "2^58 - 2^51 + 2^49 + 2^47 + 1"
"n_fac": "2^47 * 3 * 7 * 97 + 1"
"nd": 286682263779803135
"nd_hex": "0x3fa7fffffffffff"
"nd_bit": "2^58 - 2^51 + 2^49 + 2^47 - 1"
"r2": 148751165232774140
"r2_hex": "0x21078658b9ffbfc"
"r2_bit": "2^57 + 2^52 + 2^47 - 2^43 + 2^39 - 2^37 + 2^35 - 2^33 - 2^31 + 2^28 - 2^26 - 2^23 + 2^21 - 2^10 - 2^2"
"znprimroot": 5
- "n": 284571201454473217
"n_hex": "0x3f3000000000001"
"n_bit": "2^58 - 2^52 + 2^50 - 2^48 + 1"
"n_fac": "2^48 * 3 * 337 + 1"
"nd": 284571201454473215
"nd_hex": "0x3f2ffffffffffff"
"nd_bit": "2^58 - 2^52 + 2^50 - 2^48 - 1"
"r2": 191355932460907703
"r2_hex": "0x2a7d534ebfefcb7"
"r2_bit": "2^57 + 2^55 + 2^53 + 2^51 - 2^46 + 2^44 + 2^42 + 2^40 + 2^38 - 2^36 + 2^34 + 2^32 - 2^28 - 2^26 - 2^16 - 2^10 + 2^8 - 2^6 - 2^3 - 1"
"znprimroot": 5
- "n": 265993852991569921
"n_hex": "0x3b1000000000001"
"n_bit": "2^58 - 2^54 - 2^52 + 2^48 + 1"
"n_fac": "2^48 * 3^3 * 5 * 7 + 1"
"nd": 265993852991569919
"nd_hex": "0x3b0ffffffffffff"
"nd_bit": "2^58 - 2^54 - 2^52 + 2^48 - 1"
"r2": 203054856770594391
"r2_hex": "0x2d16550ffbaa657"
"r2_bit": "2^58 - 2^56 - 2^54 + 2^52 + 2^49 - 2^47 - 2^45 + 2^42 + 2^40 + 2^38 + 2^36 + 2^32 - 2^22 - 2^19 + 2^17 + 2^15 + 2^13 + 2^11 - 2^9 + 2^7 - 2^5 - 2^3 - 1"
"znprimroot": 17
- "n": 278660226943549441
"n_hex": "0x3de000000000001"
"n_bit": "2^58 - 2^53 - 2^49 + 1"
"n_fac": "2^49 * 3^2 * 5 * 11 + 1"
"nd": 278660226943549439
"nd_hex": "0x3ddffffffffffff"
"nd_bit": "2^58 - 2^53 - 2^49 - 1"
"r2": 52588623830615937
"r2_hex": "0xbad51322a68781"
"r2_bit": "2^56 - 2^54 - 2^50 - 2^48 - 2^46 + 2^44 + 2^42 + 2^40 + 2^36 + 2^34 - 2^32 + 2^29 + 2^25 + 2^23 + 2^21 + 2^19 - 2^17 + 2^15 + 2^11 - 2^7 + 1"
"znprimroot": 17
- "n": 59109745109237761
"n_hex": "0xd2000000000001"
"n_bit": "2^56 - 2^54 + 2^52 + 2^49 + 1"
"n_fac": "2^49 * 3 * 5 * 7 + 1"
"nd": 59109745109237759
"nd_hex": "0xd1ffffffffffff"
"nd_bit": "2^56 - 2^54 + 2^52 + 2^49 - 1"
"r2": 26115516410621079
"r2_hex": "0x5cc7ec7ec7ec97"
"r2_bit": "2^55 - 2^53 - 2^50 + 2^48 - 2^46 + 2^43 - 2^36 - 2^34 + 2^31 - 2^24 - 2^22 + 2^19 - 2^12 - 2^10 + 2^7 + 2^5 - 2^3 - 1"
"znprimroot": 17
- "n": 284852676431183873
"n_hex": "0x3f4000000000001"
"n_bit": "2^58 - 2^52 + 2^50 + 1"
"n_fac": "2^50 * 11 * 23 + 1"
"nd": 284852676431183871
"nd_hex": "0x3f3ffffffffffff"
"nd_bit": "2^58 - 2^52 + 2^50 - 1"
"r2": 201496031549487470
"r2_hex": "0x2cbdb92b828796e"
"r2_bit": "2^58 - 2^56 - 2^54 + 2^52 - 2^50 - 2^45 - 2^42 - 2^39 + 2^36 + 2^34 - 2^32 - 2^30 - 2^27 + 2^21 + 2^19 + 2^15 - 2^11 + 2^9 - 2^7 - 2^4 - 2"
"znprimroot": 3
- "n": 280349076803813377
"n_hex": "0x3e4000000000001"
"n_bit": "2^58 - 2^53 + 2^50 + 1"
"n_fac": "2^50 * 3 * 83 + 1"
"nd": 280349076803813375
"nd_hex": "0x3e3ffffffffffff"
"nd_bit": "2^58 - 2^53 + 2^50 - 1"
"r2": 52695732989333094
"r2_hex": "0xbb367d6e020e66"
"r2_bit": "2^56 - 2^54 - 2^50 - 2^48 + 2^46 - 2^43 - 2^41 + 2^39 - 2^33 - 2^31 - 2^28 - 2^25 + 2^17 + 2^12 - 2^9 + 2^7 - 2^5 + 2^3 - 2"
"znprimroot": 5
- "n": 30399297484750849
"n_hex": "0x6c000000000001"
"n_bit": "2^55 - 2^52 - 2^50 + 1"
"n_fac": "2^50 * 3^3 + 1"
"nd": 30399297484750847
"nd_hex": "0x6bffffffffffff"
"nd_bit": "2^55 - 2^52 - 2^50 - 1"
"r2": 24477897974689731
"r2_hex": "0x56f684bda12fc3"
"r2_bit": "2^55 - 2^53 - 2^51 - 2^48 - 2^43 - 2^41 + 2^39 + 2^34 + 2^32 - 2^30 - 2^25 - 2^23 + 2^21 + 2^16 + 2^14 - 2^12 - 2^6 + 2^2 - 1"
"znprimroot": 11
- "n": 168884986026393601
"n_hex": "0x258000000000001"
"n_bit": "2^57 + 2^55 - 2^53 - 2^51 + 1"
"n_fac": "2^51 * 3 * 5^2 + 1"
"nd": 168884986026393599
"nd_hex": "0x257ffffffffffff"
"nd_bit": "2^57 + 2^55 - 2^53 - 2^51 - 1"
"r2": 86799376818187363
"r2_hex": "0x1345f92c5f92c63"
"r2_bit": "2^56 + 2^54 - 2^52 + 2^50 + 2^47 - 2^45 - 2^39 + 2^36 + 2^34 - 2^32 - 2^30 + 2^27 - 2^25 - 2^19 + 2^16 + 2^14 - 2^12 - 2^10 + 2^7 - 2^5 + 2^2 - 1"
"znprimroot": 11
- "n": 180143985094819841
"n_hex": "0x280000000000001"
"n_bit": "2^57 + 2^55 + 1"
"n_fac": "2^55 * 5 + 1"
"nd": 180143985094819839
"nd_hex": "0x27fffffffffffff"
"nd_bit": "2^57 + 2^55 - 1"
"r2": 151320947479648669
"r2_hex": "0x21999999999999d"
"r2_bit": "2^57 + 2^53 - 2^51 + 2^49 - 2^47 + 2^45 - 2^43 + 2^41 - 2^39 + 2^37 - 2^35 + 2^33 - 2^31 + 2^29 - 2^27 + 2^25 - 2^23 + 2^21 - 2^19 + 2^17 - 2^15 + 2^13 - 2^11 + 2^9 - 2^7 + 2^5 - 2^2 + 1"
"znprimroot": 6
- "r": 59
"primes":
- "n": 576460752303423061
"n_hex": "0x7fffffffffffe55"
"n_bit": "2^59 - 2^9 + 2^6 + 2^4 + 2^2 + 1"
"n_fac": "2^2 * 3^2 * 5 * 1523 * 2579 * 815353601 + 1"
"nd": 573760701941346563
"nd_hex": "0x7f66851894af103"
"nd_bit": "2^59 - 2^51 - 2^49 + 2^47 - 2^45 + 2^43 + 2^38 + 2^36 + 2^33 - 2^31 + 2^27 + 2^24 + 2^22 + 2^20 - 2^18 - 2^16 - 2^12 + 2^8 + 2^2 - 1"
"r2": 182329
"r2_hex": "0x2c839"
"r2_bit": "2^18 - 2^16 - 2^14 + 2^11 + 2^6 - 2^3 + 1"
"znprimroot": 2
- "n": 576460752303423433
"n_hex": "0x7ffffffffffffc9"
"n_bit": "2^59 - 2^6 + 2^3 + 1"
"n_fac": "2^3 * 3 * 24019198012642643 + 1"
"nd": 555498543128753543
"nd_hex": "0x7b586fb586fb587"
"nd_bit": "2^59 - 2^54 - 2^51 - 2^49 - 2^47 + 2^43 - 2^40 - 2^34 - 2^31 - 2^29 - 2^27 + 2^23 - 2^20 - 2^14 - 2^11 - 2^9 - 2^7 + 2^3 - 1"
"r2": 3025
"r2_hex": "0xbd1"
"r2_bit": "2^12 - 2^10 - 2^6 + 2^4 + 1"
"znprimroot": 5
- "n": 576460752303422281
"n_hex": "0x7fffffffffffb49"
"n_bit": "2^59 - 2^10 - 2^8 + 2^6 + 2^3 + 1"
"n_fac": "2^3 * 3 * 5 * 7 * 1061 * 9491 * 68149567 + 1"
"nd": 479985961942784263
"nd_hex": "0x6a940b076c61907"
"nd_bit": "2^59 - 2^57 + 2^55 + 2^53 + 2^51 + 2^48 + 2^46 + 2^40 - 2^38 - 2^36 + 2^31 - 2^27 - 2^24 - 2^22 + 2^19 - 2^17 + 2^13 - 2^11 + 2^8 + 2^3 - 1"
"r2": 1456849
"r2_hex": "0x163ad1"
"r2_bit": "2^21 - 2^19 - 2^17 + 2^14 - 2^10 - 2^8 - 2^6 + 2^4 + 1"
"znprimroot": 19
- "n": 576460752303422881
"n_hex": "0x7fffffffffffda1"
"n_bit": "2^59 - 2^9 - 2^7 + 2^5 + 1"
"n_fac": "2^5 * 3^2 * 5 * 179 * 2236424395963c + 1"
"nd": 316246178776013215
"nd_hex": "0x46388395b84d99f"
"nd_bit": "2^58 + 2^55 - 2^53 + 2^50 - 2^47 + 2^43 + 2^38 - 2^35 + 2^33 - 2^31 - 2^29 - 2^26 - 2^23 + 2^18 + 2^16 - 2^13 - 2^11 + 2^9 - 2^7 + 2^5 - 1"
"r2": 368449
"r2_hex": "0x59f41"
"r2_bit": "2^19 - 2^17 - 2^15 + 2^13 - 2^8 + 2^6 + 1"
"znprimroot": 7
- "n": 576460752303421441
"n_hex": "0x7fffffffffff801"
"n_bit": "2^59 - 2^11 + 1"
"n_fac": "2^11 * 3^2 * 5 * 7 * 13 * 17 * 97 * 241 * 257 * 673 + 1"
"nd": 540414354504284159
"nd_hex": "0x77feffdffbff7ff"
"nd_bit": "2^59 - 2^55 - 2^44 - 2^33 - 2^22 - 2^11 - 1"
"r2": 4190209
"r2_hex": "0x3ff001"
"r2_bit": "2^22 - 2^12 + 1"
"znprimroot": 19
- "n": 576460752303419393
"n_hex": "0x7fffffffffff001"
"n_bit": "2^59 - 2^12 + 1"
"n_fac": "2^12 * 2351 * 4513 * 13264529 + 1"
"nd": 576179208590454783
"nd_hex": "0x7feffeffeffefff"
"nd_bit": "2^59 - 2^48 - 2^36 - 2^24 - 2^12 - 1"
"r2": 16769025
"r2_hex": "0xffe001"
"r2_bit": "2^24 - 2^13 + 1"
"znprimroot": 3
- "n": 576460752302665729
"n_hex": "0x7fffffffff47001"
"n_bit": "2^59 - 2^20 + 2^18 + 2^15 - 2^12 + 1"
"n_fac": "2^12 * 3^3 * 83 * 62801199623 + 1"
"nd": 402281524624650239
"nd_hex": "0x59530ea4ef46fff"
"nd_bit": "2^59 - 2^57 - 2^55 + 2^52 + 2^50 + 2^48 + 2^46 - 2^44 + 2^40 - 2^37 + 2^35 + 2^33 + 2^30 + 2^28 - 2^24 - 2^20 + 2^18 + 2^15 - 2^12 - 1"
"r2": 574198702081
"r2_hex": "0x85b0e8e001"
"r2_bit": "2^39 + 2^35 - 2^33 - 2^30 - 2^28 + 2^24 - 2^21 + 2^19 + 2^16 - 2^13 + 1"
"znprimroot": 13
- "n": 576460752301486081
"n_hex": "0x7ffffffffe27001"
"n_bit": "2^59 - 2^21 + 2^17 + 2^15 - 2^12 + 1"
"n_fac": "2^12 * 3^2 * 5 * 7^2 * 63826525331 + 1"
"nd": 446727202338402303
"nd_hex": "0x63318060ee26fff"
"nd_bit": "2^59 - 2^57 + 2^54 - 2^52 + 2^50 - 2^48 + 2^45 - 2^43 + 2^35 - 2^33 + 2^28 - 2^24 - 2^21 + 2^17 + 2^15 - 2^12 - 1"
"r2": 3753545883649
"r2_hex": "0x369f0c4e001"
"r2_bit": "2^42 - 2^39 - 2^37 + 2^35 + 2^33 - 2^28 + 2^24 - 2^22 + 2^18 + 2^16 - 2^13 + 1"
"znprimroot": 34
- "n": 576460752303415297
"n_hex": "0x7ffffffffffe001"
"n_bit": "2^59 - 2^13 + 1"
"n_fac": "2^13 * 3 * 47 * 499069107643c + 1"
"nd": 571956602853122047
"nd_hex": "0x7efff7ffbffdfff"
"nd_bit": "2^59 - 2^52 - 2^39 - 2^26 - 2^13 - 1"
"r2": 67092481
"r2_hex": "0x3ffc001"
"r2_bit": "2^26 - 2^14 + 1"
"znprimroot": 5
- "n": 576460752302530561
"n_hex": "0x7fffffffff26001"
"n_bit": "2^59 - 2^20 + 2^17 + 2^15 - 2^13 + 1"
"n_fac": "2^13 * 3 * 5 * 541 * 8671441057 + 1"
"nd": 364409791716679679
"nd_hex": "0x50ea4c65bf25fff"
"nd_bit": "2^58 + 2^56 + 2^52 - 2^49 + 2^47 + 2^45 + 2^42 + 2^40 - 2^38 + 2^35 - 2^33 + 2^31 - 2^29 - 2^26 - 2^20 + 2^17 + 2^15 - 2^13 - 1"
"r2": 797318627329
"r2_hex": "0xb9a3e4c001"
"r2_bit": "2^40 - 2^38 - 2^35 + 2^33 - 2^31 + 2^29 + 2^26 - 2^21 + 2^18 + 2^16 - 2^14 + 1"
"znprimroot": 13
- "n": 576460752301449217
"n_hex": "0x7ffffffffe1e001"
"n_bit": "2^59 - 2^21 + 2^17 - 2^13 + 1"
"n_fac": "2^13 * 3^3 * 53 * 193 * 254790281 + 1"
"nd": 82494108947570687
"nd_hex": "0x12513f47be1dfff"
"nd_bit": "2^56 + 2^53 + 2^50 + 2^48 + 2^44 + 2^42 - 2^36 + 2^34 + 2^31 - 2^26 - 2^21 + 2^17 - 2^13 - 1"
"r2": 3897745981441
"r2_hex": "0x38b83c3c001"
"r2_bit": "2^42 - 2^39 + 2^36 - 2^34 - 2^31 + 2^26 - 2^22 + 2^18 - 2^14 + 1"
"znprimroot": 5
- "n": 576460752296878081
"n_hex": "0x7ffffffff9c2001"
"n_bit": "2^59 - 2^23 + 2^21 - 2^18 + 2^13 + 1"
"n_fac": "2^13 * 3^2 * 5 * 1231 * 8269 * 153623 + 1"
"nd": 311075517578878975
"nd_hex": "0x4512988fb9c1fff"
"nd_bit": "2^58 + 2^54 + 2^52 + 2^48 + 2^45 + 2^43 + 2^41 - 2^39 + 2^35 + 2^32 - 2^26 - 2^23 + 2^21 - 2^18 + 2^13 - 1"
"r2": 42842352795649
"r2_hex": "0x26f703384001"
"r2_bit": "2^45 + 2^43 - 2^40 - 2^35 - 2^32 + 2^26 - 2^24 + 2^22 - 2^19 + 2^14 + 1"
"znprimroot": 7
- "n": 576460752303210497
"n_hex": "0x7fffffffffcc001"
"n_bit": "2^59 - 2^18 + 2^16 - 2^14 + 1"
"n_fac": "2^14 * 59 * 596345289641 + 1"
"nd": 494740604714795007
"nd_hex": "0x6ddabf56ffcbfff"
"nd_bit": "2^59 - 2^56 - 2^53 - 2^49 - 2^46 - 2^44 - 2^42 - 2^35 - 2^33 - 2^31 - 2^28 - 2^18 + 2^16 - 2^14 - 1"
"r2": 45365166081
"r2_hex": "0xa8ff98001"
"r2_bit": "2^35 + 2^33 + 2^31 + 2^28 - 2^19 + 2^17 - 2^15 + 1"
"znprimroot": 3
- "n": 576460752303046657
"n_hex": "0x7fffffffffa4001"
"n_bit": "2^59 - 2^19 + 2^17 + 2^14 + 1"
"n_fac": "2^14 * 3 * 11728124029603 + 1"
"nd": 450891984362160127
"nd_hex": "0x641e3deeffa3fff"
"nd_bit": "2^59 - 2^57 + 2^54 + 2^49 - 2^45 + 2^42 - 2^37 - 2^32 - 2^28 - 2^19 + 2^17 + 2^14 - 1"
"r2": 142001602561
"r2_hex": "0x210ff48001"
"r2_bit": "2^37 + 2^32 + 2^28 - 2^20 + 2^18 + 2^15 + 1"
"znprimroot": 5
- "n": 576460752302161921
"n_hex": "0x7ffffffffecc001"
"n_bit": "2^59 - 2^20 - 2^18 + 2^16 - 2^14 + 1"
"n_fac": "2^14 * 3 * 5 * 2345624805917 + 1"
"nd": 225930455766843391
"nd_hex": "0x322aa8d6fecbfff"
"nd_bit": "2^58 - 2^56 + 2^53 + 2^49 + 2^47 + 2^45 + 2^43 + 2^41 + 2^39 + 2^36 - 2^33 - 2^31 - 2^28 - 2^20 - 2^18 + 2^16 - 2^14 - 1"
"r2": 1591551295489
"r2_hex": "0x1728fd98001"
"r2_bit": "2^41 - 2^39 - 2^36 + 2^33 + 2^31 + 2^28 - 2^21 - 2^19 + 2^17 - 2^15 + 1"
"znprimroot": 17
- "n": 576460752293314561
"n_hex": "0x7ffffffff65c001"
"n_bit": "2^59 - 2^23 - 2^21 + 2^19 - 2^17 - 2^14 + 1"
"n_fac": "2^14 * 3 * 5 * 7 * 79 * 4909 * 864053 + 1"
"nd": 486317355646173183
"nd_hex": "0x6bfbf0eef65bfff"
"nd_bit": "2^59 - 2^56 - 2^54 - 2^46 - 2^40 + 2^36 - 2^32 - 2^28 - 2^23 - 2^21 + 2^19 - 2^17 - 2^14 - 1"
"r2": 102190405091329
"r2_hex": "0x5cf10ecb8001"
"r2_bit": "2^47 - 2^45 - 2^42 + 2^40 - 2^36 + 2^32 + 2^28 - 2^24 - 2^22 + 2^20 - 2^18 - 2^15 + 1"
"znprimroot": 17
- "n": 576460752289873921
"n_hex": "0x7ffffffff314001"
"n_bit": "2^59 - 2^24 + 2^22 - 2^20 + 2^16 + 2^14 + 1"
"n_fac": "2^14 * 3^2 * 5 * 7 * 111696419327 + 1"
"nd": 356432010546331647
"nd_hex": "0x4f24d066f313fff"
"nd_bit": "2^58 + 2^56 - 2^52 + 2^49 + 2^46 + 2^44 - 2^42 + 2^40 + 2^35 - 2^33 + 2^31 - 2^28 - 2^24 + 2^22 - 2^20 + 2^16 + 2^14 - 1"
"r2": 183590765887489
"r2_hex": "0xa6f98e628001"
"r2_bit": "2^47 + 2^45 + 2^43 - 2^40 - 2^35 + 2^33 - 2^31 + 2^28 - 2^25 + 2^23 - 2^21 + 2^17 + 2^15 + 1"
"znprimroot": 22
- "n": 576460752302473217
"n_hex": "0x7fffffffff18001"
"n_bit": "2^59 - 2^20 + 2^17 - 2^15 + 1"
"n_fac": "2^15 * 67 * 262569940961c + 1"
"nd": 294808950714499071
"nd_hex": "0x4175f2dbff17fff"
"nd_bit": "2^58 + 2^53 - 2^51 - 2^47 - 2^45 - 2^40 + 2^38 - 2^36 - 2^33 - 2^30 - 2^20 + 2^17 - 2^15 - 1"
"r2": 903014973441
"r2_hex": "0xd23fe30001"
"r2_bit": "2^40 - 2^38 + 2^36 + 2^33 + 2^30 - 2^21 + 2^18 - 2^16 + 1"
"znprimroot": 3
- "n": 576460752301228033
"n_hex": "0x7ffffffffde8001"
"n_bit": "2^59 - 2^21 - 2^17 + 2^15 + 1"
"n_fac": "2^15 * 3^5 * 7 * 17 * 608368297c + 1"
"nd": 370592171182424063
"nd_hex": "0x5249b9dbfde7fff"
"nd_bit": "2^58 + 2^56 + 2^53 + 2^50 + 2^47 + 2^45 - 2^42 - 2^39 + 2^37 - 2^33 - 2^30 - 2^21 - 2^17 + 2^15 - 1"
"r2": 4820022657025
"r2_hex": "0x4623fbd0001"
"r2_bit": "2^42 + 2^39 - 2^37 + 2^33 + 2^30 - 2^22 - 2^18 + 2^16 + 1"
"znprimroot": 10
- "n": 576460752297492481
"n_hex": "0x7ffffffffa58001"
"n_bit": "2^59 - 2^23 + 2^21 + 2^19 - 2^17 - 2^15 + 1"
"n_fac": "2^15 * 3 * 5 * 11 * 106619309359 + 1"
"nd": 44543422574723071
"nd_hex": "0x9e4001bfa57fff"
"nd_bit": "2^55 + 2^53 - 2^49 + 2^46 + 2^33 - 2^30 - 2^23 + 2^21 + 2^19 - 2^17 - 2^15 - 1"
"r2": 35176844034049
"r2_hex": "0x1ffe3f4b0001"
"r2_bit": "2^45 - 2^33 + 2^30 - 2^24 + 2^22 + 2^20 - 2^18 - 2^16 + 1"
"znprimroot": 14
- "n": 576460752291594241
"n_hex": "0x7ffffffff4b8001"
"n_bit": "2^59 - 2^24 + 2^22 + 2^20 - 2^18 - 2^15 + 1"
"n_fac": "2^15 * 3 * 5 * 7 * 199 * 3011 * 279619 + 1"
"nd": 315358333400481791
"nd_hex": "0x46060bbbf4b7fff"
"nd_bit": "2^58 + 2^55 - 2^53 + 2^47 - 2^45 + 2^40 - 2^38 - 2^34 - 2^30 - 2^24 + 2^22 + 2^20 - 2^18 - 2^15 - 1"
"r2": 139931084587009
"r2_hex": "0x7f443e970001"
"r2_bit": "2^47 - 2^40 + 2^38 + 2^34 + 2^30 - 2^25 + 2^23 + 2^21 - 2^19 - 2^16 + 1"
"znprimroot": 13
- "n": 576460752281763841
"n_hex": "0x7fffffffeb58001"
"n_bit": "2^59 - 2^24 - 2^22 - 2^19 - 2^17 - 2^15 + 1"
"n_fac": "2^15 * 3^3 * 5 * 9341 * 13950593 + 1"
"nd": 434796726737797119
"nd_hex": "0x608b551beb57fff"
"nd_bit": "2^59 - 2^57 + 2^51 + 2^48 - 2^46 - 2^44 + 2^42 + 2^40 + 2^38 + 2^36 + 2^33 - 2^30 - 2^24 - 2^22 - 2^19 - 2^17 - 2^15 - 1"
"r2": 469140308164609
"r2_hex": "0x1aaae3d6b0001"
"r2_bit": "2^49 - 2^46 - 2^44 - 2^42 - 2^40 - 2^38 - 2^36 - 2^33 + 2^30 - 2^25 - 2^23 - 2^20 - 2^18 - 2^16 + 1"
"znprimroot": 13
- "n": 576460752301785089
"n_hex": "0x7ffffffffe70001"
"n_bit": "2^59 - 2^21 + 2^19 - 2^16 + 1"
"n_fac": "2^16 * 17 * 281 * 1841342479 + 1"
"nd": 213636822967189503
"nd_hex": "0x2f6fd8effe6ffff"
"nd_bit": "2^58 - 2^56 - 2^51 - 2^48 - 2^41 - 2^39 + 2^36 - 2^32 - 2^21 + 2^19 - 2^16 - 1"
"r2": 2684351283201
"r2_hex": "0x270ffce0001"
"r2_bit": "2^41 + 2^39 - 2^36 + 2^32 - 2^22 + 2^20 - 2^17 + 1"
"znprimroot": 3
- "n": 576460752290119681
"n_hex": "0x7ffffffff350001"
"n_bit": "2^59 - 2^24 + 2^22 - 2^20 + 2^18 + 2^16 + 1"
"n_fac": "2^16 * 3 * 5 * 1709 * 343128263 + 1"
"nd": 183626168471453695
"nd_hex": "0x28c5f06ff34ffff"
"nd_bit": "2^57 + 2^55 + 2^52 - 2^50 + 2^47 - 2^45 - 2^40 + 2^35 - 2^32 - 2^24 + 2^22 - 2^20 + 2^18 + 2^16 - 1"
"r2": 176991280693249
"r2_hex": "0xa0f8fe6a0001"
"r2_bit": "2^47 + 2^45 + 2^40 - 2^35 + 2^32 - 2^25 + 2^23 - 2^21 + 2^19 + 2^17 + 1"
"znprimroot": 14
- "n": 576460752284418049
"n_hex": "0x7fffffffede0001"
"n_bit": "2^59 - 2^24 - 2^21 - 2^17 + 1"
"n_fac": "2^17 * 3^3 * 139 * 9941 * 117883 + 1"
"nd": 177530978512535551
"nd_hex": "0x276b77bfeddffff"
"nd_bit": "2^57 + 2^55 - 2^51 - 2^48 - 2^46 - 2^43 - 2^39 - 2^34 - 2^24 - 2^21 - 2^17 - 1"
"r2": 361206711582721
"r2_hex": "0x14883fdbc0001"
"r2_bit": "2^48 + 2^46 + 2^43 + 2^39 + 2^34 - 2^25 - 2^22 - 2^18 + 1"
"znprimroot": 7
- "n": 576460752265543681
"n_hex": "0x7fffffffdbe0001"
"n_bit": "2^59 - 2^25 - 2^22 - 2^17 + 1"
"n_fac": "2^17 * 3^2 * 5 * 29 * 1607 * 2097169 + 1"
"nd": 356601290483957759
"nd_hex": "0x4f2e6fbfdbdffff"
"nd_bit": "2^58 + 2^56 - 2^52 + 2^50 - 2^48 - 2^45 + 2^43 - 2^40 - 2^34 - 2^25 - 2^22 - 2^17 - 1"
"r2": 1434879778357249
"r2_hex": "0x51903fb7c0001"
"r2_bit": "2^50 + 2^48 + 2^45 - 2^43 + 2^40 + 2^34 - 2^26 - 2^23 - 2^18 + 1"
"znprimroot": 11
- "n": 576460752253747201
"n_hex": "0x7fffffffd0a0001"
"n_bit": "2^59 - 2^26 + 2^24 + 2^19 + 2^17 + 1"
"n_fac": "2^17 * 3^2 * 5^2 * 7 * 47 * 59412989 + 1"
"nd": 567237619223232511
"nd_hex": "0x7df3b9bfd09ffff"
"nd_bit": "2^59 - 2^53 - 2^48 + 2^46 - 2^42 - 2^39 + 2^37 - 2^34 - 2^26 + 2^24 + 2^19 + 2^17 - 1"
"r2": 2467733490106369
"r2_hex": "0x8c463fa140001"
"r2_bit": "2^51 + 2^48 - 2^46 + 2^42 + 2^39 - 2^37 + 2^34 - 2^27 + 2^25 + 2^20 + 2^18 + 1"
"znprimroot": 73
- "n": 576460752300015617
"n_hex": "0x7ffffffffcc0001"
"n_bit": "2^59 - 2^22 + 2^20 - 2^18 + 1"
"n_fac": "2^18 * 11 * 19 * 10521642371 + 1"
"nd": 198146770009325567
"nd_hex": "0x2bff56fffcbffff"
"nd_bit": "2^58 - 2^56 - 2^54 - 2^43 - 2^41 - 2^39 - 2^36 - 2^22 + 2^20 - 2^18 - 1"
"r2": 11613584752641
"r2_hex": "0xa8fff980001"
"r2_bit": "2^43 + 2^41 + 2^39 + 2^36 - 2^23 + 2^21 - 2^19 + 1"
"znprimroot": 3
- "n": 576460752273801217
"n_hex": "0x7fffffffe3c0001"
"n_bit": "2^59 - 2^25 + 2^22 - 2^18 + 1"
"n_fac": "2^18 * 3^3 * 81445305757 + 1"
"nd": 269338498614165503
"nd_hex": "0x3bce1effe3bffff"
"nd_bit": "2^58 - 2^54 - 2^50 + 2^48 - 2^45 + 2^41 - 2^36 - 2^25 + 2^22 - 2^18 - 1"
"r2": 877478939197441
"r2_hex": "0x31e0ffc780001"
"r2_bit": "2^50 - 2^48 + 2^45 - 2^41 + 2^36 - 2^26 + 2^23 - 2^19 + 1"
"znprimroot": 5
- "n": 576460752267509761
"n_hex": "0x7fffffffddc0001"
"n_bit": "2^59 - 2^25 - 2^21 - 2^18 + 1"
"n_fac": "2^18 * 3 * 5 * 7 * 2671 * 7840913 + 1"
"nd": 124810993671602175
"nd_hex": "0x1bb6aeffddbffff"
"nd_bit": "2^57 - 2^54 - 2^50 - 2^47 - 2^44 - 2^42 - 2^40 - 2^36 - 2^25 - 2^21 - 2^18 - 1"
"r2": 1289795787030529
"r2_hex": "0x4950ffbb80001"
"r2_bit": "2^50 + 2^47 + 2^44 + 2^42 + 2^40 + 2^36 - 2^26 - 2^22 - 2^19 + 1"
"znprimroot": 13
- "n": 576460752259645441
"n_hex": "0x7fffffffd640001"
"n_bit": "2^59 - 2^25 - 2^23 - 2^21 + 2^18 + 1"
"n_fac": "2^18 * 3^3 * 5 * 11 * 89 * 16638469 + 1"
"nd": 160213069054869503
"nd_hex": "0x23930effd63ffff"
"nd_bit": "2^57 + 2^54 - 2^51 + 2^48 + 2^46 - 2^44 + 2^40 - 2^36 - 2^25 - 2^23 - 2^21 + 2^18 - 1"
"r2": 1916517399134209
"r2_hex": "0x6cf0ffac80001"
"r2_bit": "2^51 - 2^48 - 2^46 + 2^44 - 2^40 + 2^36 - 2^26 - 2^24 - 2^22 + 2^19 + 1"
"znprimroot": 7
- "n": 576460752205381633
"n_hex": "0x7fffffffa280001"
"n_bit": "2^59 - 2^27 + 2^25 + 2^21 + 2^19 + 1"
"n_fac": "2^19 * 3^2 * 19 * 31 * 3373 * 61493 + 1"
"nd": 134502982449889279
"nd_hex": "0x1ddd9bffa27ffff"
"nd_bit": "2^57 - 2^53 - 2^49 - 2^45 - 2^43 + 2^41 - 2^38 - 2^27 + 2^25 + 2^21 + 2^19 - 1"
"r2": 9612205331841025
"r2_hex": "0x22263ff4500001"
"r2_bit": "2^53 + 2^49 + 2^45 + 2^43 - 2^41 + 2^38 - 2^28 + 2^26 + 2^22 + 2^20 + 1"
"znprimroot": 10
- "n": 576460751799582721
"n_hex": "0x7ffffffe1f80001"
"n_bit": "2^59 - 2^29 + 2^25 - 2^19 + 1"
"n_fac": "2^19 * 3^5 * 5 * 7 * 59 * 863 * 2539 + 1"
"nd": 178490044224897023
"nd_hex": "0x27a1fbfe1f7ffff"
"nd_bit": "2^57 + 2^55 - 2^51 + 2^49 + 2^45 - 2^38 - 2^29 + 2^25 - 2^19 - 1"
"r2": 253855518491148289
"r2_hex": "0x385e03fc3f00001"
"r2_bit": "2^58 - 2^55 + 2^51 - 2^49 - 2^45 + 2^38 - 2^30 + 2^26 - 2^20 + 1"
"znprimroot": 17
- "n": 576460752298180609
"n_hex": "0x7ffffffffb00001"
"n_bit": "2^59 - 2^22 - 2^20 + 1"
"n_fac": "2^20 * 3 * 173 * 1597 * 663281 + 1"
"nd": 576433264507486207
"nd_hex": "0x7ffe6ffffafffff"
"nd_bit": "2^59 - 2^45 + 2^43 - 2^40 - 2^22 - 2^20 - 1"
"r2": 27487780208641
"r2_hex": "0x18ffff600001"
"r2_bit": "2^45 - 2^43 + 2^40 - 2^23 - 2^21 + 1"
"znprimroot": 7
- "n": 576460752279306241
"n_hex": "0x7fffffffe900001"
"n_bit": "2^59 - 2^25 + 2^23 + 2^20 + 1"
"n_fac": "2^20 * 3 * 5 * 53 * 691516747 + 1"
"nd": 575879110628212735
"nd_hex": "0x7fdeefffe8fffff"
"nd_bit": "2^59 - 2^49 - 2^44 - 2^40 - 2^25 + 2^23 + 2^20 - 1"
"r2": 581641602859009
"r2_hex": "0x210fffd200001"
"r2_bit": "2^49 + 2^44 + 2^40 - 2^26 + 2^24 + 2^21 + 1"
"znprimroot": 11
- "n": 576460752191225857
"n_hex": "0x7fffffff9500001"
"n_bit": "2^59 - 2^27 + 2^24 + 2^22 + 2^20 + 1"
"n_fac": "2^20 * 3^2 * 61083979309c + 1"
"nd": 563872443564818431
"nd_hex": "0x7d346fff94fffff"
"nd_bit": "2^59 - 2^54 + 2^52 + 2^50 - 2^48 + 2^46 + 2^43 - 2^40 - 2^27 + 2^24 + 2^22 + 2^20 - 1"
"r2": 12588308402012161
"r2_hex": "0x2cb8fff2a00001"
"r2_bit": "2^54 - 2^52 - 2^50 + 2^48 - 2^46 - 2^43 + 2^40 - 2^28 + 2^25 + 2^23 + 2^21 + 1"
"znprimroot": 10
- "n": 576460751744532481
"n_hex": "0x7ffffffdeb00001"
"n_bit": "2^59 - 2^29 - 2^24 - 2^22 - 2^20 + 1"
"n_fac": "2^20 * 3 * 5 * 7^2 * 3461 * 216113 + 1"
"nd": 264101592921276415
"nd_hex": "0x3aa46ffdeafffff"
"nd_bit": "2^58 - 2^55 + 2^53 + 2^51 + 2^49 + 2^46 + 2^43 - 2^40 - 2^29 - 2^24 - 2^22 - 2^20 - 1"
"r2": 312359157705474049
"r2_hex": "0x455b8ffbd600001"
"r2_bit": "2^58 + 2^55 - 2^53 - 2^51 - 2^49 - 2^46 - 2^43 + 2^40 - 2^30 - 2^25 - 2^23 - 2^21 + 1"
"znprimroot": 11
- "n": 576460751398502401
"n_hex": "0x7ffffffca100001"
"n_bit": "2^59 - 2^30 + 2^27 + 2^25 + 2^20 + 1"
"n_fac": "2^20 * 3^2 * 5^2 * 19 * 8363 * 15377 + 1"
"nd": 334039328194822143
"nd_hex": "0x4a2beffca0fffff"
"nd_bit": "2^58 + 2^55 + 2^53 + 2^50 - 2^48 - 2^46 - 2^40 - 2^30 + 2^27 + 2^25 + 2^20 - 1"
"r2": 242421422298759168
"r2_hex": "0x35d40ffca100000"
"r2_bit": "2^58 - 2^55 - 2^53 - 2^50 + 2^48 + 2^46 + 2^40 - 2^30 + 2^27 + 2^25 + 2^20"
"znprimroot": 13
- "n": 576460752213245953
"n_hex": "0x7fffffffaa00001"
"n_bit": "2^59 - 2^27 + 2^25 + 2^23 + 2^21 + 1"
"n_fac": "2^21 * 3 * 13 * 163 * 5119 * 8447 + 1"
"nd": 568328764214214655
"nd_hex": "0x7e31bfffa9fffff"
"nd_bit": "2^59 - 2^53 + 2^50 - 2^48 + 2^45 - 2^42 - 2^27 + 2^25 + 2^23 + 2^21 - 1"
"r2": 8131987818676225
"r2_hex": "0x1ce3fff5400001"
"r2_bit": "2^53 - 2^50 + 2^48 - 2^45 + 2^42 - 2^28 + 2^26 + 2^24 + 2^22 + 1"
"znprimroot": 5
- "n": 576460750218854401
"n_hex": "0x7ffffff83c00001"
"n_bit": "2^59 - 2^31 + 2^26 - 2^22 + 1"
"n_fac": "2^22 * 3^2 * 5^2 * 610839791 + 1"
"nd": 266257733697667071
"nd_hex": "0x3b1efff83bfffff"
"nd_bit": "2^58 - 2^54 - 2^52 + 2^49 - 2^44 - 2^31 + 2^26 - 2^22 - 1"
"r2": 310203026944032762
"r2_hex": "0x44e10026d3ffffa"
"r2_bit": "2^58 + 2^54 + 2^52 - 2^49 + 2^44 + 2^33 + 2^31 - 2^28 - 2^26 + 2^24 + 2^22 - 2^3 + 2"
"znprimroot": 29
- "n": 576460748331417601
"n_hex": "0x7ffffff13400001"
"n_bit": "2^59 - 2^32 + 2^28 + 2^26 - 2^24 + 2^22 + 1"
"n_fac": "2^22 * 3^3 * 5^2 * 7 * 29 * 193 * 5197 + 1"
"nd": 364070286217183231
"nd_hex": "0x50d6fff133fffff"
"nd_bit": "2^58 + 2^56 + 2^52 - 2^49 - 2^47 - 2^44 - 2^32 + 2^28 + 2^26 - 2^24 + 2^22 - 1"
"r2": 212390561414381542
"r2_hex": "0x2f290171ebfffe6"
"r2_bit": "2^58 - 2^56 - 2^52 + 2^49 + 2^47 + 2^44 + 2^37 - 2^35 - 2^32 + 2^29 - 2^24 - 2^22 - 2^5 + 2^3 - 2"
"znprimroot": 17
- "n": 576460752144039937
"n_hex": "0x7fffffff6800001"
"n_bit": "2^59 - 2^27 - 2^25 + 2^23 + 1"
"n_fac": "2^23 * 3^2 * 3797 * 2010929 + 1"
"nd": 551057635495903231
"nd_hex": "0x7a5bffff67fffff"
"nd_bit": "2^59 - 2^55 + 2^53 + 2^51 - 2^49 - 2^46 - 2^27 - 2^25 + 2^23 - 1"
"r2": 25403116329369601
"r2_hex": "0x5a3fffed000001"
"r2_bit": "2^55 - 2^53 - 2^51 + 2^49 + 2^46 - 2^28 - 2^26 + 2^24 + 1"
"znprimroot": 5
- "n": 576460743486996481
"n_hex": "0x7fffffdf2800001"
"n_bit": "2^59 - 2^33 - 2^28 + 2^25 + 2^23 + 1"
"n_fac": "2^23 * 3 * 5 * 7 * 569 * 1150213 + 1"
"nd": 92816364753911807
"nd_hex": "0x149bffdf27fffff"
"nd_bit": "2^56 + 2^54 + 2^51 + 2^49 - 2^46 - 2^33 - 2^28 + 2^25 + 2^23 - 1"
"r2": 483645542501449595
"r2_hex": "0x6b6410ef5ffff7b"
"r2_bit": "2^59 - 2^56 - 2^54 - 2^51 - 2^49 + 2^46 + 2^40 + 2^36 - 2^32 - 2^27 - 2^25 - 2^7 - 2^2 - 1"
"znprimroot": 19
- "n": 576460752118874113
"n_hex": "0x7fffffff5000001"
"n_bit": "2^59 - 2^28 + 2^26 + 2^24 + 1"
"n_fac": "2^24 * 3 * 7 * 503 * 3252839 + 1"
"nd": 542402279936884735
"nd_hex": "0x786fffff4ffffff"
"nd_bit": "2^59 - 2^55 + 2^51 - 2^48 - 2^28 + 2^26 + 2^24 - 1"
"r2": 34058471812890625
"r2_hex": "0x78ffffea000001"
"r2_bit": "2^55 - 2^51 + 2^48 - 2^29 + 2^27 + 2^25 + 1"
"znprimroot": 11
- "n": 576460751665889281
"n_hex": "0x7ffffffda000001"
"n_bit": "2^59 - 2^29 - 2^27 + 2^25 + 1"
"n_fac": "2^25 * 3 * 5 * 1145324611 + 1"
"nd": 170010885295702015
"nd_hex": "0x25bffffd9ffffff"
"nd_bit": "2^57 + 2^55 - 2^53 - 2^50 - 2^29 - 2^27 + 2^25 - 1"
"r2": 406449865095118849
"r2_hex": "0x5a3ffffb4000001"
"r2_bit": "2^59 - 2^57 - 2^55 + 2^53 + 2^50 - 2^30 - 2^28 + 2^26 + 1"
"znprimroot": 19
- "n": 576460751464562689
"n_hex": "0x7ffffffce000001"
"n_bit": "2^59 - 2^30 + 2^28 - 2^25 + 1"
"n_fac": "2^25 * 3^2 * 23 * 41 * 139 * 14563 + 1"
"nd": 449234061991346175
"nd_hex": "0x63bffffcdffffff"
"nd_bit": "2^59 - 2^57 + 2^54 - 2^50 - 2^30 + 2^28 - 2^25 - 1"
"r2": 127226688634355712
"r2_hex": "0x1c3ffffce000000"
"r2_bit": "2^57 - 2^54 + 2^50 - 2^30 + 2^28 - 2^25"
"znprimroot": 11
- "n": 576460748142673921
"n_hex": "0x7ffffff08000001"
"n_bit": "2^59 - 2^32 + 2^27 + 1"
"n_fac": "2^27 * 3^2 * 5 * 95443717 + 1"
"nd": 558446349633191935
"nd_hex": "0x7bfffff07ffffff"
"nd_bit": "2^59 - 2^54 - 2^32 + 2^27 - 1"
"r2": 18014515010469859
"r2_hex": "0x40001b1fffffe3"
"r2_bit": "2^54 + 2^37 - 2^34 - 2^32 + 2^29 - 2^5 + 2^2 - 1"
"znprimroot": 11
- "n": 576460752034988033
"n_hex": "0x7fffffff0000001"
"n_bit": "2^59 - 2^28 + 1"
"n_fac": "2^28 * 2147483647 + 1"
"nd": 504403157997060095
"nd_hex": "0x6ffffffefffffff"
"nd_bit": "2^59 - 2^56 - 2^28 - 1"
"r2": 72057593501057025
"r2_hex": "0xffffffe0000001"
"r2_bit": "2^56 - 2^29 + 1"
"znprimroot": 3
- "n": 576460750961246209
"n_hex": "0x7ffffffb0000001"
"n_bit": "2^59 - 2^30 - 2^28 + 1"
"n_fac": "2^28 * 3 * 715827881 + 1"
"nd": 504403156923318271
"nd_hex": "0x6ffffffafffffff"
"nd_bit": "2^59 - 2^56 - 2^30 - 2^28 - 1"
"r2": 72057595380105214
"r2_hex": "0x10000004ffffffe"
"r2_bit": "2^56 + 2^30 + 2^28 - 2"
"znprimroot": 13
- "n": 576460749350633473
"n_hex": "0x7ffffff50000001"
"n_bit": "2^59 - 2^32 + 2^30 + 2^28 + 1"
"n_fac": "2^28 * 3^3 * 13 * 6118187 + 1"
"nd": 504403155312705535
"nd_hex": "0x6ffffff4fffffff"
"nd_bit": "2^59 - 2^56 - 2^32 + 2^30 + 2^28 - 1"
"r2": 72057632424198130
"r2_hex": "0x1000008effffff2"
"r2_bit": "2^56 + 2^35 + 2^32 - 2^28 - 2^4 + 2"
"znprimroot": 5
- "n": 576460733512941569
"n_hex": "0x7fffffba0000001"
"n_bit": "2^59 - 2^34 - 2^31 + 2^29 + 1"
"n_fac": "2^29 * 1073741789 + 1"
"nd": 288230357361229823
"nd_hex": "0x3fffffb9fffffff"
"nd_bit": "2^58 - 2^34 - 2^31 + 2^29 - 1"
"r2": 288241838345682333
"r2_hex": "0x4000a6cbffffd9d"
"r2_bit": "2^58 + 2^43 + 2^41 + 2^39 - 2^36 - 2^34 + 2^32 - 2^30 - 2^9 - 2^7 + 2^5 - 2^2 + 1"
"znprimroot": 3
- "n": 576460717943685121
"n_hex": "0x7fffff800000001"
"n_bit": "2^59 - 2^35 + 1"
"n_fac": "2^35 * 3^2 * 5 * 7 * 13 * 17 * 241 + 1"
"nd": 576460717943685119
"nd_hex": "0x7fffff7ffffffff"
"nd_bit": "2^59 - 2^35 - 1"
"r2": 70300024698881
"r2_hex": "0x3feffffff801"
"r2_bit": "2^46 - 2^36 - 2^11 + 1"
"znprimroot": 22
- "n": 576459996389179393
"n_hex": "0x7ffff5000000001"
"n_bit": "2^59 - 2^40 + 2^38 + 2^36 + 1"
"n_fac": "2^36 * 3 * 7 * 173 * 2309 + 1"
"nd": 576459996389179391
"nd_hex": "0x7ffff4fffffffff"
"nd_bit": "2^59 - 2^40 + 2^38 + 2^36 - 1"
"r2": 172824879785107456
"r2_hex": "0x265ff4ffff0e000"
"r2_bit": "2^57 + 2^55 - 2^53 + 2^51 - 2^49 - 2^40 + 2^38 + 2^36 - 2^20 + 2^16 - 2^13"
"znprimroot": 5
- "n": 576457110171156481
"n_hex": "0x7fffcb000000001"
"n_bit": "2^59 - 2^42 + 2^40 - 2^38 - 2^36 + 1"
"n_fac": "2^36 * 3 * 5 * 7^2 * 101 * 113 + 1"
"nd": 576457110171156479
"nd_hex": "0x7fffcafffffffff"
"nd_bit": "2^59 - 2^42 + 2^40 - 2^38 - 2^36 - 1"
"r2": 224011956399431536
"r2_hex": "0x31bd9affea0df70"
"r2_bit": "2^58 - 2^56 + 2^53 - 2^50 - 2^45 - 2^43 + 2^41 - 2^38 - 2^36 - 2^25 + 2^23 + 2^21 + 2^16 - 2^13 - 2^7 - 2^4"
"znprimroot": 13
- "n": 576341661450240001
"n_hex": "0x7ff93b000000001"
"n_bit": "2^59 - 2^47 + 2^44 + 2^42 - 2^38 - 2^36 + 1"
"n_fac": "2^36 * 3^3 * 5^4 * 7 * 71 + 1"
"nd": 576341661450239999
"nd_hex": "0x7ff93afffffffff"
"nd_bit": "2^59 - 2^47 + 2^44 + 2^42 - 2^38 - 2^36 - 1"
"r2": 540391935940971917
"r2_hex": "0x77fdb9a453f4d8d"
"r2_bit": "2^59 - 2^55 - 2^45 - 2^42 - 2^39 + 2^37 - 2^35 + 2^33 + 2^30 + 2^26 + 2^24 + 2^22 - 2^16 + 2^14 + 2^12 - 2^9 - 2^7 + 2^4 - 2^2 + 1"
"znprimroot": 19
- "n": 576460065108656129
"n_hex": "0x7ffff6000000001"
"n_bit": "2^59 - 2^39 - 2^37 + 1"
"n_fac": "2^37 * 29 * 61 * 2371 + 1"
"nd": 576460065108656127
"nd_hex": "0x7ffff5fffffffff"
"nd_bit": "2^59 - 2^39 - 2^37 - 1"
"r2": 562948579030958081
"r2_hex": "0x7cffebffff38001"
"r2_bit": "2^59 - 2^54 + 2^52 - 2^40 - 2^38 - 2^20 + 2^18 - 2^15 + 1"
"znprimroot": 3
- "n": 576437525120286721
"n_hex": "0x7ffeae000000001"
"n_bit": "2^59 - 2^44 - 2^42 - 2^40 - 2^37 + 1"
"n_fac": "2^37 * 3^2 * 5 * 11 * 37 * 229 + 1"
"nd": 576437525120286719
"nd_hex": "0x7ffeadfffffffff"
"nd_bit": "2^59 - 2^44 - 2^42 - 2^40 - 2^37 - 1"
"r2": 556095047242017971
"r2_hex": "0x7b7a57fc836ecb3"
"r2_bit": "2^59 - 2^54 - 2^51 - 2^47 + 2^45 + 2^43 - 2^41 - 2^39 - 2^30 + 2^27 + 2^22 - 2^19 - 2^16 - 2^12 - 2^10 + 2^8 - 2^6 - 2^4 + 2^2 - 1"
"znprimroot": 7
- "n": 576451131576680449
"n_hex": "0x7fff74000000001"
"n_bit": "2^59 - 2^43 - 2^40 + 2^38 + 1"
"n_fac": "2^38 * 3^3 * 11 * 23 * 307 + 1"
"nd": 576451131576680447
"nd_hex": "0x7fff73fffffffff"
"nd_bit": "2^59 - 2^43 - 2^40 + 2^38 - 1"
"r2": 422071452539155850
"r2_hex": "0x5db7fbff66df58a"
"r2_bit": "2^59 - 2^57 - 2^53 - 2^50 - 2^47 - 2^38 - 2^27 - 2^25 + 2^23 - 2^20 - 2^17 - 2^11 - 2^9 - 2^7 + 2^3 + 2"
"znprimroot": 7
- "n": 576431340367380481
"n_hex": "0x7ffe54000000001"
"n_bit": "2^59 - 2^45 + 2^42 + 2^40 + 2^38 + 1"
"n_fac": "2^38 * 3^2 * 5 * 46601 + 1"
"nd": 576431340367380479
"nd_hex": "0x7ffe53fffffffff"
"nd_bit": "2^59 - 2^45 + 2^42 + 2^40 + 2^38 - 1"
"r2": 54227087347471592
"r2_hex": "0xc0a73fa68cd4e8"
"r2_bit": "2^56 - 2^54 + 2^47 + 2^45 + 2^43 - 2^40 + 2^38 - 2^31 + 2^29 + 2^27 - 2^25 + 2^23 + 2^20 - 2^18 + 2^16 - 2^14 + 2^12 + 2^10 + 2^8 - 2^5 + 2^3"
"znprimroot": 17
- "n": 575887082111631361
"n_hex": "0x7fdf64000000001"
"n_bit": "2^59 - 2^49 - 2^43 - 2^41 + 2^38 + 1"
"n_fac": "2^38 * 3^4 * 5 * 7 * 739 + 1"
"nd": 575887082111631359
"nd_hex": "0x7fdf63fffffffff"
"nd_bit": "2^59 - 2^49 - 2^43 - 2^41 + 2^38 - 1"
"r2": 541040788142318928
"r2_hex": "0x78229baf2386550"
"r2_bit": "2^59 - 2^55 + 2^49 + 2^45 + 2^43 + 2^41 - 2^38 - 2^34 - 2^32 - 2^28 + 2^25 + 2^22 - 2^19 + 2^15 - 2^13 + 2^10 + 2^8 + 2^6 + 2^4"
"znprimroot": 29
- "n": 576344753826693121
"n_hex": "0x7ff968000000001"
"n_bit": "2^59 - 2^47 + 2^45 - 2^43 - 2^41 + 2^39 + 1"
"n_fac": "2^39 * 3^2 * 5 * 23297 + 1"
"nd": 576344753826693119
"nd_hex": "0x7ff967fffffffff"
"nd_bit": "2^59 - 2^47 + 2^45 - 2^43 - 2^41 + 2^39 - 1"
"r2": 482991245479661771
"r2_hex": "0x6b3edfa907050cb"
"r2_bit": "2^59 - 2^56 - 2^54 - 2^52 + 2^50 - 2^44 - 2^41 - 2^35 + 2^33 + 2^31 + 2^28 + 2^23 - 2^20 + 2^14 + 2^12 + 2^8 - 2^6 + 2^4 - 2^2 - 1"
"znprimroot": 11
- "n": 574068764757196801
"n_hex": "0x7f7808000000001"
"n_bit": "2^59 - 2^51 - 2^47 + 2^39 + 1"
"n_fac": "2^39 * 3^3 * 5^2 * 7 * 13 * 17 + 1"
"nd": 574068764757196799
"nd_hex": "0x7f7807fffffffff"
"nd_bit": "2^59 - 2^51 - 2^47 + 2^39 - 1"
"r2": 339717685748098792
"r2_hex": "0x4b6eb6f6eeee6e8"
"r2_bit": "2^58 + 2^56 - 2^54 - 2^51 - 2^48 - 2^44 - 2^42 - 2^39 - 2^36 - 2^31 - 2^28 - 2^24 - 2^20 - 2^16 - 2^13 + 2^11 - 2^8 - 2^5 + 2^3"
"znprimroot": 23
- "n": 576435463535984641
"n_hex": "0x7ffe90000000001"
"n_bit": "2^59 - 2^45 + 2^43 + 2^40 + 1"
"n_fac": "2^40 * 3 * 5 * 7 * 4993 + 1"
"nd": 576435463535984639
"nd_hex": "0x7ffe8ffffffffff"
"nd_bit": "2^59 - 2^45 + 2^43 + 2^40 - 1"
"r2": 77832227997565411
"r2_hex": "0x11483ffbddf41e3"
"r2_bit": "2^56 + 2^52 + 2^50 + 2^47 + 2^42 - 2^30 - 2^25 - 2^21 - 2^16 + 2^14 + 2^9 - 2^5 + 2^2 - 1"
"znprimroot": 11
- "n": 566968668420833281
"n_hex": "0x7de470000000001"
"n_bit": "2^59 - 2^53 - 2^49 + 2^46 + 2^43 - 2^40 + 1"
"n_fac": "2^40 * 3^2 * 5 * 7 * 1637 + 1"
"nd": 566968668420833279
"nd_hex": "0x7de46ffffffffff"
"nd_bit": "2^59 - 2^53 - 2^49 + 2^46 + 2^43 - 2^40 - 1"
"r2": 272204409150248662
"r2_hex": "0x3c71077c9b216d6"
"r2_bit": "2^58 - 2^54 + 2^51 - 2^48 + 2^44 + 2^39 - 2^35 - 2^30 + 2^27 + 2^25 - 2^22 - 2^20 + 2^17 + 2^13 - 2^11 - 2^8 - 2^5 - 2^3 - 2"
"znprimroot": 29
- "n": 576221058768568321
"n_hex": "0x7ff260000000001"
"n_bit": "2^59 - 2^48 + 2^45 + 2^43 - 2^41 + 1"
"n_fac": "2^41 * 3^4 * 5 * 647 + 1"
"nd": 576221058768568319
"nd_hex": "0x7ff25ffffffffff"
"nd_bit": "2^59 - 2^48 + 2^45 + 2^43 - 2^41 - 1"
"r2": 223429459150595595
"r2_hex": "0x319c7e8c907660b"
"r2_bit": "2^58 - 2^56 + 2^53 - 2^51 + 2^49 - 2^46 + 2^43 - 2^37 + 2^35 + 2^32 - 2^30 + 2^27 + 2^24 + 2^19 - 2^15 - 2^13 + 2^11 - 2^9 + 2^4 - 2^2 - 1"
"znprimroot": 7
- "n": 573747157606072321
"n_hex": "0x7f65c0000000001"
"n_bit": "2^59 - 2^51 - 2^49 + 2^47 - 2^45 - 2^42 + 1"
"n_fac": "2^42 * 3^2 * 5 * 13 * 223 + 1"
"nd": 573747157606072319
"nd_hex": "0x7f65bffffffffff"
"nd_bit": "2^59 - 2^51 - 2^49 + 2^47 - 2^45 - 2^42 - 1"
"r2": 76961775819195985
"r2_hex": "0x1116c53ccfc8651"
"r2_bit": "2^56 + 2^52 + 2^49 - 2^47 - 2^44 - 2^42 + 2^38 + 2^36 + 2^34 - 2^30 + 2^28 - 2^26 + 2^24 - 2^18 + 2^15 + 2^11 - 2^9 + 2^6 + 2^4 + 1"
"znprimroot": 19
- "n": 563851552956088321
"n_hex": "0x7d3340000000001"
"n_bit": "2^59 - 2^54 + 2^52 + 2^50 - 2^48 + 2^46 - 2^44 + 2^42 + 1"
"n_fac": "2^42 * 3^2 * 5 * 7 * 11 * 37 + 1"
"nd": 563851552956088319
"nd_hex": "0x7d333ffffffffff"
"nd_bit": "2^59 - 2^54 + 2^52 + 2^50 - 2^48 + 2^46 - 2^44 + 2^42 - 1"
"r2": 384643851981544809
"r2_hex": "0x556878ba265dd69"
"r2_bit": "2^59 - 2^57 - 2^55 - 2^53 - 2^51 - 2^49 + 2^47 + 2^43 - 2^39 + 2^36 - 2^34 - 2^31 + 2^29 + 2^25 + 2^23 - 2^21 + 2^19 - 2^17 - 2^13 - 2^9 - 2^7 - 2^5 + 2^3 + 1"
"znprimroot": 23
- "n": 576399179652268033
"n_hex": "0x7ffc80000000001"
"n_bit": "2^59 - 2^46 + 2^43 + 1"
"n_fac": "2^43 * 3^4 * 809 + 1"
"nd": 576399179652268031
"nd_hex": "0x7ffc7ffffffffff"
"nd_bit": "2^59 - 2^46 + 2^43 - 1"
"r2": 22509195466459062
"r2_hex": "0x4ff7fe77f547b6"
"r2_bit": "2^54 + 2^52 - 2^43 - 2^33 + 2^31 - 2^27 - 2^20 + 2^18 + 2^16 + 2^14 + 2^11 - 2^6 - 2^3 - 2"
"znprimroot": 10
- "n": 574472835280404481
"n_hex": "0x7f8f00000000001"
"n_bit": "2^59 - 2^51 + 2^48 - 2^44 + 1"
"n_fac": "2^44 * 3 * 5 * 7 * 311 + 1"
"nd": 574472835280404479
"nd_hex": "0x7f8efffffffffff"
"nd_bit": "2^59 - 2^51 + 2^48 - 2^44 - 1"
"r2": 361829203534642727
"r2_hex": "0x50579be5a0b7e27"
"r2_bit": "2^58 + 2^56 + 2^51 - 2^49 - 2^47 - 2^43 + 2^41 - 2^38 - 2^33 + 2^31 - 2^29 - 2^27 + 2^25 + 2^20 - 2^18 - 2^15 - 2^9 + 2^5 + 2^3 - 1"
"znprimroot": 26
- "n": 572361772955074561
"n_hex": "0x7f1700000000001"
"n_bit": "2^59 - 2^52 + 2^49 - 2^47 - 2^44 + 1"
"n_fac": "2^44 * 3^3 * 5 * 241 + 1"
"nd": 572361772955074559
"nd_hex": "0x7f16fffffffffff"
"nd_bit": "2^59 - 2^52 + 2^49 - 2^47 - 2^44 - 1"
"r2": 564204828086674078
"r2_hex": "0x7d4754d46aaa29e"
"r2_bit": "2^59 - 2^54 + 2^52 + 2^50 + 2^47 - 2^44 + 2^42 + 2^40 + 2^38 + 2^36 - 2^34 + 2^32 + 2^30 + 2^27 - 2^25 + 2^23 + 2^21 + 2^19 + 2^17 + 2^15 + 2^13 + 2^9 + 2^7 + 2^5 - 2"
"znprimroot": 11
- "n": 576425567931334657
"n_hex": "0x7ffe00000000001"
"n_bit": "2^59 - 2^45 + 1"
"n_fac": "2^45 * 3 * 43 * 127 + 1"
"nd": 576425567931334655
"nd_hex": "0x7ffdfffffffffff"
"nd_bit": "2^59 - 2^45 - 1"
"r2": 211104084918265
"r2_hex": "0xbfff7ffdfff9"
"r2_bit": "2^48 - 2^46 - 2^31 - 2^17 - 2^3 + 1"
"znprimroot": 5
- "n": 572625655745740801
"n_hex": "0x7f2600000000001"
"n_bit": "2^59 - 2^52 + 2^49 + 2^47 - 2^45 + 1"
"n_fac": "2^45 * 3 * 5^2 * 7 * 31 + 1"
"nd": 572625655745740799
"nd_hex": "0x7f25fffffffffff"
"nd_bit": "2^59 - 2^52 + 2^49 + 2^47 - 2^45 - 1"
"r2": 280534497904254977
"r2_hex": "0x3e4a8a3b6d36001"
"r2_bit": "2^58 - 2^53 + 2^50 + 2^47 + 2^45 + 2^43 + 2^39 + 2^37 + 2^34 - 2^30 - 2^27 - 2^24 - 2^22 + 2^20 + 2^18 - 2^15 - 2^13 + 1"
"znprimroot": 11
- "n": 576108908582535169
"n_hex": "0x7fec00000000001"
"n_bit": "2^59 - 2^48 - 2^46 + 1"
"n_fac": "2^46 * 3 * 2729 + 1"
"nd": 576108908582535167
"nd_hex": "0x7febfffffffffff"
"nd_bit": "2^59 - 2^48 - 2^46 - 1"
"r2": 493566156782618449
"r2_hex": "0x6d97fcdf82ec751"
"r2_bit": "2^59 - 2^56 - 2^53 - 2^51 + 2^49 - 2^47 - 2^38 + 2^36 - 2^33 - 2^27 + 2^22 - 2^20 - 2^16 - 2^14 + 2^11 - 2^8 + 2^6 + 2^4 + 1"
"znprimroot": 11
- "n": 571042359001743361
"n_hex": "0x7ecc00000000001"
"n_bit": "2^59 - 2^52 - 2^50 + 2^48 - 2^46 + 1"
"n_fac": "2^46 * 3 * 5 * 541 + 1"
"nd": 571042359001743359
"nd_hex": "0x7ecbfffffffffff"
"nd_bit": "2^59 - 2^52 - 2^50 + 2^48 - 2^46 - 1"
"r2": 353340420286201577
"r2_hex": "0x4e7513d7bf23ee9"
"r2_bit": "2^58 + 2^56 - 2^53 + 2^51 - 2^48 + 2^46 + 2^44 + 2^40 + 2^38 - 2^33 - 2^31 - 2^26 - 2^20 + 2^17 + 2^14 - 2^8 - 2^5 + 2^3 + 1"
"znprimroot": 7
- "n": 554153860399104001
"n_hex": "0x7b0c00000000001"
"n_bit": "2^59 - 2^54 - 2^52 + 2^48 - 2^46 + 1"
"n_fac": "2^46 * 3^2 * 5^3 * 7 + 1"
"nd": 554153860399103999
"nd_hex": "0x7b0bfffffffffff"
"nd_bit": "2^59 - 2^54 - 2^52 + 2^48 - 2^46 - 1"
"r2": 21057107264869991
"r2_hex": "0x4acf53d6851667"
"r2_bit": "2^54 + 2^52 - 2^50 - 2^48 - 2^46 + 2^44 - 2^40 + 2^38 + 2^36 + 2^34 - 2^29 - 2^27 - 2^25 + 2^23 + 2^18 + 2^16 + 2^13 - 2^11 - 2^9 + 2^7 - 2^5 + 2^3 - 1"
"znprimroot": 19
- "n": 573786740024672257
"n_hex": "0x7f6800000000001"
"n_bit": "2^59 - 2^51 - 2^49 + 2^47 + 1"
"n_fac": "2^47 * 3^3 * 151 + 1"
"nd": 573786740024672255
"nd_hex": "0x7f67fffffffffff"
"nd_bit": "2^59 - 2^51 - 2^49 + 2^47 - 1"
"r2": 91607643248164182
"r2_hex": "0x14574aa8a847d56"
"r2_bit": "2^56 + 2^54 + 2^51 - 2^49 - 2^47 - 2^44 + 2^42 + 2^39 + 2^37 + 2^35 + 2^33 + 2^31 + 2^27 + 2^25 + 2^23 + 2^18 + 2^15 - 2^9 - 2^7 - 2^5 - 2^3 - 2"
"znprimroot": 5
- "n": 567875765513748481
"n_hex": "0x7e1800000000001"
"n_bit": "2^59 - 2^53 + 2^49 - 2^47 + 1"
"n_fac": "2^47 * 3 * 5 * 269 + 1"
"nd": 567875765513748479
"nd_hex": "0x7e17fffffffffff"
"nd_bit": "2^59 - 2^53 + 2^49 - 2^47 - 1"
"r2": 365928421786143650
"r2_hex": "0x51409f5f9c84ba2"
"r2_bit": "2^58 + 2^56 + 2^52 + 2^50 + 2^43 + 2^41 - 2^35 - 2^33 - 2^27 + 2^25 - 2^22 + 2^19 + 2^14 + 2^12 - 2^10 - 2^7 + 2^5 + 2"
"znprimroot": 21
- "n": 550987266911109121
"n_hex": "0x7a5800000000001"
"n_bit": "2^59 - 2^55 + 2^53 + 2^51 - 2^49 - 2^47 + 1"
"n_fac": "2^47 * 3^3 * 5 * 29 + 1"
"nd": 550987266911109119
"nd_hex": "0x7a57fffffffffff"
"nd_bit": "2^59 - 2^55 + 2^53 + 2^51 - 2^49 - 2^47 - 1"
"r2": 90442403551244736
"r2_hex": "0x14150e3084df1c0"
"r2_bit": "2^56 + 2^54 + 2^48 + 2^46 + 2^44 + 2^40 - 2^37 + 2^34 - 2^32 + 2^27 + 2^22 + 2^20 - 2^17 - 2^12 + 2^9 - 2^6"
"znprimroot": 17
- "n": 398990779487354881
"n_hex": "0x589800000000001"
"n_bit": "2^59 - 2^57 - 2^55 + 2^51 + 2^49 - 2^47 + 1"
"n_fac": "2^47 * 3^4 * 5 * 7 + 1"
"nd": 398990779487354879
"nd_hex": "0x5897fffffffffff"
"nd_bit": "2^59 - 2^57 - 2^55 + 2^51 + 2^49 - 2^47 - 1"
"r2": 297675375727371835
"r2_hex": "0x4218e2d549c663b"
"r2_bit": "2^58 + 2^53 + 2^49 - 2^47 + 2^44 - 2^41 + 2^38 - 2^36 - 2^34 + 2^32 + 2^30 + 2^28 + 2^26 + 2^23 + 2^21 - 2^18 + 2^15 - 2^13 + 2^11 - 2^9 + 2^6 - 2^2 - 1"
"znprimroot": 11
- "n": 576179277326712833
"n_hex": "0x7ff000000000001"
"n_bit": "2^59 - 2^48 + 1"
"n_fac": "2^48 * 23 * 89 + 1"
"nd": 576179277326712831
"nd_hex": "0x7feffffffffffff"
"nd_bit": "2^59 - 2^48 - 1"
"r2": 3940512167854065
"r2_hex": "0xdffdffbff7ff1"
"r2_bit": "2^52 - 2^49 - 2^37 - 2^26 - 2^15 - 2^4 + 1"
"znprimroot": 5
- "n": 417990340415324161
"n_hex": "0x5cd000000000001"
"n_bit": "2^59 - 2^57 - 2^54 + 2^52 - 2^50 + 2^48 + 1"
"n_fac": "2^48 * 3^3 * 5 * 11 + 1"
"nd": 417990340415324159
"nd_hex": "0x5ccffffffffffff"
"nd_bit": "2^59 - 2^57 - 2^54 + 2^52 - 2^50 + 2^48 - 1"
"r2": 50539637636513452
"r2_hex": "0xb38d885c66beac"
"r2_bit": "2^56 - 2^54 - 2^52 + 2^50 - 2^47 + 2^44 - 2^41 - 2^39 + 2^35 + 2^31 - 2^29 - 2^26 + 2^23 - 2^21 + 2^19 - 2^16 - 2^14 - 2^8 - 2^6 - 2^4 - 2^2"
"znprimroot": 37
- "n": 384213343210045441
"n_hex": "0x555000000000001"
"n_bit": "2^58 + 2^56 + 2^54 + 2^52 + 2^50 + 2^48 + 1"
"n_fac": "2^48 * 3 * 5 * 7 * 13 + 1"
"nd": 384213343210045439
"nd_hex": "0x554ffffffffffff"
"nd_bit": "2^58 + 2^56 + 2^54 + 2^52 + 2^50 + 2^48 - 1"
"r2": 191754776331940866
"r2_hex": "0x2a93ff3ff3ff402"
"r2_bit": "2^57 + 2^55 + 2^53 + 2^51 + 2^48 + 2^46 - 2^36 + 2^34 - 2^24 + 2^22 - 2^12 + 2^10 + 2"
"znprimroot": 34
- "n": 265993852991569921
"n_hex": "0x3b1000000000001"
"n_bit": "2^58 - 2^54 - 2^52 + 2^48 + 1"
"n_fac": "2^48 * 3^3 * 5 * 7 + 1"
"nd": 265993852991569919
"nd_hex": "0x3b0ffffffffffff"
"nd_bit": "2^58 - 2^54 - 2^52 + 2^48 - 1"
"r2": 14237868107667801
"r2_hex": "0x329543feea9959"
"r2_bit": "2^54 - 2^52 + 2^49 + 2^47 + 2^44 + 2^42 + 2^40 + 2^38 + 2^34 - 2^24 - 2^21 + 2^19 + 2^17 + 2^15 + 2^13 - 2^11 + 2^9 - 2^7 - 2^5 - 2^3 + 1"
"znprimroot": 17
- "n": 565764703188418561
"n_hex": "0x7da000000000001"
"n_bit": "2^59 - 2^53 - 2^51 + 2^49 + 1"
"n_fac": "2^49 * 3 * 5 * 67 + 1"
"nd": 565764703188418559
"nd_hex": "0x7d9ffffffffffff"
"nd_bit": "2^59 - 2^53 - 2^51 + 2^49 - 1"
"r2": 435521050084229725
"r2_hex": "0x60b48166a79c25d"
"r2_bit": "2^59 - 2^57 + 2^52 - 2^50 - 2^48 + 2^46 + 2^43 + 2^37 - 2^35 - 2^33 + 2^31 - 2^29 + 2^27 + 2^25 + 2^23 - 2^19 + 2^17 - 2^14 + 2^9 + 2^7 - 2^5 - 2^2 + 1"
"znprimroot": 34
- "n": 59109745109237761
"n_hex": "0xd2000000000001"
"n_bit": "2^56 - 2^54 + 2^52 + 2^49 + 1"
"n_fac": "2^49 * 3 * 5 * 7 + 1"
"nd": 59109745109237759
"nd_hex": "0xd1ffffffffffff"
"nd_bit": "2^56 - 2^54 + 2^52 + 2^49 - 1"
"r2": 45352320533246555
"r2_hex": "0xa11fb1fb1fb25b"
"r2_bit": "2^55 + 2^53 + 2^48 + 2^45 - 2^38 - 2^36 + 2^33 - 2^26 - 2^24 + 2^21 - 2^14 - 2^12 + 2^9 + 2^7 - 2^5 - 2^2 - 1"
"znprimroot": 17
- "n": 550565054446043137
"n_hex": "0x7a4000000000001"
"n_bit": "2^59 - 2^55 + 2^53 + 2^50 + 1"
"n_fac": "2^50 * 3 * 163 + 1"
"nd": 550565054446043135
"nd_hex": "0x7a3ffffffffffff"
"nd_bit": "2^59 - 2^55 + 2^53 + 2^50 - 1"
"r2": 56202897190242234
"r2_hex": "0xc7ac3cba5f47ba"
"r2_bit": "2^56 - 2^54 + 2^51 - 2^46 - 2^44 - 2^42 + 2^38 - 2^34 + 2^32 - 2^30 - 2^27 + 2^25 + 2^23 - 2^21 - 2^16 + 2^14 + 2^11 - 2^6 - 2^3 + 2"
"znprimroot": 10
- "n": 537054255563931649
"n_hex": "0x774000000000001"
"n_bit": "2^59 - 2^55 - 2^52 + 2^50 + 1"
"n_fac": "2^50 * 3^2 * 53 + 1"
"nd": 537054255563931647
"nd_hex": "0x773ffffffffffff"
"nd_bit": "2^59 - 2^55 - 2^52 + 2^50 - 1"
"r2": 307856912263653923
"r2_hex": "0x445ba3b091faa23"
"r2_bit": "2^58 + 2^54 + 2^51 - 2^49 - 2^46 - 2^43 + 2^41 + 2^38 - 2^34 - 2^32 + 2^27 + 2^24 + 2^21 - 2^15 + 2^13 + 2^11 + 2^9 + 2^5 + 2^2 - 1"
"znprimroot": 14
- "n": 523543456681820161
"n_hex": "0x744000000000001"
"n_bit": "2^59 - 2^56 + 2^54 + 2^50 + 1"
"n_fac": "2^50 * 3 * 5 * 31 + 1"
"nd": 523543456681820159
"nd_hex": "0x743ffffffffffff"
"nd_bit": "2^59 - 2^56 + 2^54 + 2^50 - 1"
"r2": 177047155028472065
"r2_hex": "0x274ff730ff73101"
"r2_bit": "2^57 + 2^55 - 2^52 + 2^50 + 2^48 - 2^39 - 2^36 + 2^34 - 2^32 + 2^28 - 2^19 - 2^16 + 2^14 - 2^12 + 2^8 + 1"
"znprimroot": 14
- "n": 511158557706551297
"n_hex": "0x718000000000001"
"n_bit": "2^59 - 2^56 + 2^53 - 2^51 + 1"
"n_fac": "2^51 * 227 + 1"
"nd": 511158557706551295
"nd_hex": "0x717ffffffffffff"
"nd_bit": "2^59 - 2^56 + 2^53 - 2^51 - 1"
"r2": 201074811556828094
"r2_hex": "0x2ca5c79cc1f93be"
"r2_bit": "2^58 - 2^56 - 2^54 + 2^51 + 2^49 + 2^47 - 2^45 - 2^42 + 2^39 - 2^35 + 2^33 - 2^30 + 2^28 - 2^26 + 2^21 - 2^15 + 2^12 + 2^10 - 2^6 - 2"
"znprimroot": 3
- "n": 493144159197069313
"n_hex": "0x6d8000000000001"
"n_bit": "2^59 - 2^56 - 2^53 - 2^51 + 1"
"n_fac": "2^51 * 3 * 73 + 1"
"nd": 493144159197069311
"nd_hex": "0x6d7ffffffffffff"
"nd_bit": "2^59 - 2^56 - 2^53 - 2^51 - 1"
"r2": 19700677822013404
"r2_hex": "0x45fda97f6a5fdc"
"r2_bit": "2^54 + 2^51 - 2^49 - 2^41 - 2^39 + 2^37 + 2^35 + 2^33 - 2^31 - 2^23 - 2^21 + 2^19 + 2^17 + 2^15 - 2^13 - 2^5 - 2^2"
"znprimroot": 5
- "n": 371546969258065921
"n_hex": "0x528000000000001"
"n_bit": "2^58 + 2^56 + 2^53 + 2^51 + 1"
"n_fac": "2^51 * 3 * 5 * 11 + 1"
"nd": 371546969258065919
"nd_hex": "0x527ffffffffffff"
"nd_bit": "2^58 + 2^56 + 2^53 + 2^51 - 1"
"r2": 136936723215259266
"r2_hex": "0x1e67f3967f39682"
"r2_bit": "2^57 - 2^53 + 2^51 - 2^49 + 2^47 - 2^40 + 2^38 - 2^35 + 2^33 - 2^31 - 2^29 + 2^27 - 2^20 + 2^18 - 2^15 + 2^13 - 2^11 - 2^9 + 2^7 + 2"
"znprimroot": 7
- "n": 303992974847508481
"n_hex": "0x438000000000001"
"n_bit": "2^58 + 2^54 - 2^51 + 1"
"n_fac": "2^51 * 3^3 * 5 + 1"
"nd": 303992974847508479
"nd_hex": "0x437ffffffffffff"
"nd_bit": "2^58 + 2^54 - 2^51 - 1"
"r2": 208399902756914734
"r2_hex": "0x2e4629b7f0d462e"
"r2_bit": "2^58 - 2^56 - 2^53 + 2^50 + 2^47 - 2^45 + 2^41 + 2^39 + 2^37 - 2^34 - 2^31 - 2^24 + 2^20 - 2^18 + 2^16 + 2^14 + 2^11 - 2^9 + 2^6 - 2^4 - 2"
"znprimroot": 11
- "n": 459367161991790593
"n_hex": "0x660000000000001"
"n_bit": "2^59 - 2^57 + 2^55 - 2^53 + 1"
"n_fac": "2^53 * 3 * 17 + 1"
"nd": 459367161991790591
"nd_hex": "0x65fffffffffffff"
"nd_bit": "2^59 - 2^57 + 2^55 - 2^53 - 1"
"r2": 213346994112296440
"r2_hex": "0x2f5f5f5f5f5f5f8"
"r2_bit": "2^58 - 2^56 - 2^51 - 2^49 - 2^43 - 2^41 - 2^35 - 2^33 - 2^27 - 2^25 - 2^19 - 2^17 - 2^11 - 2^9 - 2^3"
"znprimroot": 5
- "n": 180143985094819841
"n_hex": "0x280000000000001"
"n_bit": "2^57 + 2^55 + 1"
"n_fac": "2^55 * 5 + 1"
"nd": 180143985094819839
"nd_hex": "0x27fffffffffffff"
"nd_bit": "2^57 + 2^55 - 1"
"r2": 64851834634135153
"r2_hex": "0xe6666666666671"
"r2_bit": "2^56 - 2^53 + 2^51 - 2^49 + 2^47 - 2^45 + 2^43 - 2^41 + 2^39 - 2^37 + 2^35 - 2^33 + 2^31 - 2^29 + 2^27 - 2^25 + 2^23 - 2^21 + 2^19 - 2^17 + 2^15 - 2^13 + 2^11 - 2^9 + 2^7 - 2^4 + 1"
"znprimroot": 6
- "r": 60
"primes":
- "n": 1152921504606846883
"n_hex": "0xfffffffffffffa3"
"n_bit": "2^60 - 2^7 + 2^5 + 2^2 - 1"
"n_fac": "2 * 3 * 31 * 6198502712940037c + 1"
"nd": 1140524499180966901
"nd_hex": "0xfd3f4fd3f4fd3f5"
"nd_bit": "2^60 - 2^54 + 2^52 + 2^50 - 2^44 + 2^42 + 2^40 - 2^34 + 2^32 + 2^30 - 2^24 + 2^22 + 2^20 - 2^14 + 2^12 + 2^10 - 2^4 + 2^2 + 1"
"r2": 8649
"r2_hex": "0x21c9"
"r2_bit": "2^13 + 2^9 - 2^6 + 2^3 + 1"
"znprimroot": 2
- "n": 1152921504606844591
"n_hex": "0xffffffffffff6af"
"n_bit": "2^60 - 2^11 - 2^8 - 2^6 - 2^4 - 1"
"n_fac": "2 * 3^3 * 5 * 521 * 1777 * 4612228601 + 1"
"nd": 412828077540564913
"nd_hex": "0x5baa8f3031cdfb1"
"nd_bit": "2^59 - 2^57 - 2^54 - 2^51 + 2^49 + 2^47 + 2^45 + 2^43 + 2^40 - 2^36 + 2^34 - 2^32 + 2^26 - 2^24 + 2^21 - 2^18 + 2^16 - 2^13 - 2^6 - 2^4 + 1"
"r2": 5688225
"r2_hex": "0x56cba1"
"r2_bit": "2^23 - 2^21 - 2^19 - 2^16 - 2^14 + 2^12 - 2^10 - 2^7 + 2^5 + 1"
"znprimroot": 15
- "n": 1152921504606841831
"n_hex": "0xfffffffffffebe7"
"n_bit": "2^60 - 2^12 - 2^10 - 2^5 + 2^3 - 1"
"n_fac": "2 * 3 * 5 * 7 * 223 * 24619293286501c + 1"
"nd": 799762264323000361
"nd_hex": "0xb19538ac5bc0829"
"nd_bit": "2^60 - 2^58 - 2^56 + 2^53 - 2^51 + 2^48 + 2^46 + 2^44 + 2^42 - 2^39 + 2^36 - 2^34 - 2^32 - 2^30 + 2^27 - 2^25 - 2^22 - 2^18 + 2^11 + 2^5 + 2^3 + 1"
"r2": 26471025
"r2_hex": "0x193ea71"
"r2_bit": "2^25 - 2^23 + 2^20 + 2^18 - 2^13 + 2^11 + 2^9 + 2^7 - 2^4 + 1"
"znprimroot": 7
- "n": 1152921504606846869
"n_hex": "0xfffffffffffff95"
"n_bit": "2^60 - 2^7 + 2^4 + 2^2 + 1"
"n_fac": "2^2 * 288230376151711717 + 1"
"nd": 549523333971487811
"nd_hex": "0x7a04c8f8d28ac43"
"nd_bit": "2^59 - 2^55 + 2^53 + 2^46 + 2^44 - 2^42 + 2^39 + 2^36 - 2^31 + 2^28 - 2^26 + 2^24 + 2^21 + 2^19 + 2^16 - 2^14 - 2^12 - 2^10 + 2^6 + 2^2 - 1"
"r2": 11449
"r2_hex": "0x2cb9"
"r2_bit": "2^14 - 2^12 - 2^10 + 2^8 - 2^6 - 2^3 + 1"
"znprimroot": 2
- "n": 1152921504606843421
"n_hex": "0xffffffffffff21d"
"n_bit": "2^60 - 2^12 + 2^9 + 2^5 - 2^2 + 1"
"n_fac": "2^2 * 3^2 * 5 * 881 * 7270283166899 + 1"
"nd": 992063820701081547
"nd_hex": "0xdc484c9eb679fcb"
"nd_bit": "2^60 - 2^57 - 2^54 + 2^50 + 2^47 + 2^42 + 2^40 - 2^38 + 2^35 + 2^33 - 2^28 - 2^26 - 2^23 - 2^21 + 2^19 - 2^15 + 2^13 - 2^6 + 2^4 - 2^2 - 1"
"r2": 12638025
"r2_hex": "0xc0d749"
"r2_bit": "2^24 - 2^22 + 2^16 - 2^13 - 2^11 - 2^8 + 2^6 + 2^3 + 1"
"znprimroot": 2
- "n": 1152921504606846697
"n_hex": "0xffffffffffffee9"
"n_bit": "2^60 - 2^8 - 2^5 + 2^3 + 1"
"n_fac": "2^3 * 3^3 * 31 * 172180630915001c + 1"
"nd": 1148789169464886951
"nd_hex": "0xff151a9bfc546a7"
"nd_bit": "2^60 - 2^52 + 2^48 + 2^46 + 2^44 + 2^41 - 2^39 + 2^37 + 2^35 + 2^33 - 2^30 - 2^22 + 2^18 + 2^16 + 2^14 + 2^11 - 2^9 + 2^7 + 2^5 + 2^3 - 1"
"r2": 77841
"r2_hex": "0x13011"
"r2_bit": "2^16 + 2^14 - 2^12 + 2^4 + 1"
"znprimroot": 11
- "n": 1152921504606845161
"n_hex": "0xffffffffffff8e9"
"n_bit": "2^60 - 2^11 + 2^8 - 2^5 + 2^3 + 1"
"n_fac": "2^3 * 3 * 5 * 11 * 73 * 11964731264081c + 1"
"nd": 208986873286860967
"nd_hex": "0x2e6787438fba0a7"
"nd_bit": "2^58 - 2^56 - 2^53 + 2^51 - 2^49 + 2^47 - 2^43 + 2^39 - 2^36 + 2^34 + 2^30 - 2^27 + 2^24 - 2^18 - 2^15 + 2^13 + 2^7 + 2^5 + 2^3 - 1"
"r2": 3294225
"r2_hex": "0x324411"
"r2_bit": "2^22 - 2^20 + 2^17 + 2^14 + 2^10 + 2^4 + 1"
"znprimroot": 7
- "n": 1152921504606830281
"n_hex": "0xfffffffffffbec9"
"n_bit": "2^60 - 2^14 - 2^8 - 2^6 + 2^3 + 1"
"n_fac": "2^3 * 3^3 * 5 * 7 * 152502844524713c + 1"
"nd": 717787727995421831
"nd_hex": "0x9f61822b74d4487"
"nd_bit": "2^59 + 2^57 - 2^51 - 2^49 + 2^45 - 2^43 + 2^37 + 2^34 - 2^32 - 2^30 - 2^27 - 2^24 + 2^22 + 2^20 - 2^18 + 2^16 + 2^14 + 2^10 + 2^7 + 2^3 - 1"
"r2": 278723025
"r2_hex": "0x109cf9d1"
"r2_bit": "2^28 + 2^23 + 2^21 - 2^18 + 2^16 - 2^11 + 2^9 - 2^6 + 2^4 + 1"
"znprimroot": 26
- "n": 1152921504606846577
"n_hex": "0xffffffffffffe71"
"n_bit": "2^60 - 2^9 + 2^7 - 2^4 + 1"
"n_fac": "2^4 * 3 * 7 * 23 * 71 * 2101233314027c + 1"
"nd": 846631581077208431
"nd_hex": "0xbbfd6eff5bbfd6f"
"nd_bit": "2^60 - 2^58 - 2^54 - 2^45 - 2^43 - 2^40 - 2^36 - 2^27 - 2^25 - 2^22 - 2^18 - 2^9 - 2^7 - 2^4 - 1"
"r2": 159201
"r2_hex": "0x26de1"
"r2_bit": "2^17 + 2^15 - 2^12 - 2^9 - 2^5 + 1"
"znprimroot": 15
- "n": 1152921504606845473
"n_hex": "0xffffffffffffa21"
"n_bit": "2^60 - 2^11 + 2^9 + 2^5 + 1"
"n_fac": "2^5 * 3^2 * 23 * 174052159511903 + 1"
"nd": 744834850946938399
"nd_hex": "0xa562f59c305f61f"
"nd_bit": "2^59 + 2^57 + 2^55 - 2^53 - 2^51 - 2^49 + 2^46 - 2^44 - 2^39 - 2^37 - 2^35 + 2^33 - 2^30 + 2^26 - 2^24 + 2^19 - 2^17 - 2^11 - 2^9 + 2^5 - 1"
"r2": 2259009
"r2_hex": "0x227841"
"r2_bit": "2^21 + 2^17 + 2^15 - 2^11 + 2^6 + 1"
"znprimroot": 7
- "n": 1152921504606841441
"n_hex": "0xfffffffffffea61"
"n_bit": "2^60 - 2^13 + 2^11 + 2^9 + 2^7 - 2^5 + 1"
"n_fac": "2^5 * 3^2 * 5 * 19 * 41 * 1027779119069c + 1"
"nd": 384098871634151007
"nd_hex": "0x55497e38261c65f"
"nd_bit": "2^58 + 2^56 + 2^54 + 2^52 + 2^50 + 2^47 + 2^45 - 2^43 - 2^37 + 2^34 - 2^31 + 2^25 + 2^23 - 2^21 + 2^17 - 2^14 + 2^11 - 2^9 + 2^7 - 2^5 - 1"
"r2": 30636225
"r2_hex": "0x1d378c1"
"r2_bit": "2^25 - 2^22 + 2^20 + 2^18 - 2^15 - 2^11 + 2^8 - 2^6 + 1"
"znprimroot": 7
- "n": 1152921504606732001
"n_hex": "0xffffffffffe3ee1"
"n_bit": "2^60 - 2^17 + 2^14 - 2^8 - 2^5 + 1"
"n_fac": "2^5 * 3^3 * 5^3 * 7 * 19^2 * 4224455527c + 1"
"nd": 189511315638745823
"nd_hex": "0x2a1478999907adf"
"nd_bit": "2^57 + 2^55 + 2^53 + 2^48 + 2^46 + 2^43 - 2^39 + 2^35 + 2^33 - 2^31 + 2^29 - 2^27 + 2^25 - 2^23 + 2^20 + 2^15 - 2^10 - 2^8 - 2^5 - 1"
"r2": 13219250625
"r2_hex": "0x313edc1c1"
"r2_bit": "2^34 - 2^32 + 2^28 + 2^26 - 2^20 - 2^17 - 2^14 + 2^9 - 2^6 + 1"
"znprimroot": 13
- "n": 1152921504606836161
"n_hex": "0xfffffffffffd5c1"
"n_bit": "2^60 - 2^13 - 2^11 - 2^9 - 2^6 + 1"
"n_fac": "2^6 * 3 * 5 * 7 * 171565700090303c + 1"
"nd": 391662839382853055
"nd_hex": "0x56f7746fd22c5bf"
"nd_bit": "2^59 - 2^57 - 2^55 - 2^52 - 2^47 - 2^43 - 2^40 + 2^38 + 2^35 - 2^32 - 2^26 + 2^24 + 2^21 + 2^18 - 2^16 - 2^14 + 2^11 - 2^9 - 2^6 - 1"
"r2": 116964225
"r2_hex": "0x6f8bb81"
"r2_bit": "2^27 - 2^24 - 2^19 + 2^16 - 2^14 - 2^10 - 2^7 + 1"
"znprimroot": 19
- "n": 1152921504606833089
"n_hex": "0xfffffffffffc9c1"
"n_bit": "2^60 - 2^14 + 2^11 + 2^9 - 2^6 + 1"
"n_fac": "2^6 * 3^3 * 17 * 109 * 360064730057c + 1"
"nd": 593936807370734015
"nd_hex": "0x83e1661265cb9bf"
"nd_bit": "2^59 + 2^54 - 2^49 + 2^45 - 2^43 - 2^41 + 2^39 - 2^37 + 2^32 + 2^29 + 2^27 - 2^25 + 2^23 - 2^21 - 2^18 + 2^16 - 2^14 - 2^11 + 2^9 - 2^6 - 1"
"r2": 192848769
"r2_hex": "0xb7ea381"
"r2_bit": "2^28 - 2^26 - 2^23 - 2^17 + 2^15 + 2^13 + 2^10 - 2^7 + 1"
"znprimroot": 11
- "n": 1152921504606759361
"n_hex": "0xffffffffffea9c1"
"n_bit": "2^60 - 2^17 + 2^15 + 2^13 + 2^11 + 2^9 - 2^6 + 1"
"n_fac": "2^6 * 3^2 * 5 * 11 * 19 * 23 * 83278545221c + 1"
"nd": 280075116179331519
"nd_hex": "0x3e306d5924b99bf"
"nd_bit": "2^58 - 2^53 + 2^50 - 2^48 + 2^43 - 2^40 - 2^37 - 2^35 - 2^33 - 2^31 + 2^28 + 2^25 + 2^22 + 2^20 - 2^18 - 2^15 + 2^13 - 2^11 + 2^9 - 2^6 - 1"
"r2": 7676388225
"r2_hex": "0x1c98c6381"
"r2_bit": "2^33 - 2^30 + 2^27 + 2^25 - 2^23 + 2^20 - 2^18 + 2^15 - 2^13 + 2^10 - 2^7 + 1"
"znprimroot": 13
- "n": 1152921504606701761
"n_hex": "0xffffffffffdc8c1"
"n_bit": "2^60 - 2^17 - 2^14 + 2^11 + 2^8 - 2^6 + 1"
"n_fac": "2^6 * 3^5 * 5 * 7 * 2118095062843 + 1"
"nd": 697747157737617599
"nd_hex": "0x9aee557d7fd38bf"
"nd_bit": "2^59 + 2^57 - 2^54 - 2^52 - 2^48 - 2^45 + 2^43 - 2^41 - 2^39 - 2^37 - 2^35 - 2^29 - 2^27 - 2^18 + 2^16 + 2^14 - 2^11 + 2^8 - 2^6 - 1"
"r2": 21087396225
"r2_hex": "0x4e8e82181"
"r2_bit": "2^34 + 2^32 - 2^29 + 2^27 + 2^24 - 2^21 + 2^19 + 2^13 + 2^9 - 2^7 + 1"
"znprimroot": 11
- "n": 1152921504606830209
"n_hex": "0xfffffffffffbe81"
"n_bit": "2^60 - 2^14 - 2^9 + 2^7 + 1"
"n_fac": "2^7 * 3^2 * 823 * 1216038781523c + 1"
"nd": 522242430219419263
"nd_hex": "0x73f60b92bdd7e7f"
"nd_bit": "2^59 - 2^56 + 2^54 - 2^47 - 2^45 + 2^40 - 2^38 - 2^35 + 2^32 + 2^30 - 2^28 - 2^26 - 2^21 - 2^17 - 2^15 - 2^9 + 2^7 - 1"
"r2": 281132289
"r2_hex": "0x10c1bd01"
"r2_bit": "2^28 + 2^24 - 2^22 + 2^17 - 2^14 - 2^10 + 2^8 + 1"
"znprimroot": 21
- "n": 1152921504606668161
"n_hex": "0xffffffffffd4581"
"n_bit": "2^60 - 2^18 + 2^16 + 2^14 + 2^11 - 2^9 - 2^7 + 1"
"n_fac": "2^7 * 3 * 5 * 7 * 13 * 19 * 47 * 1553 * 4758107 + 1"
"nd": 466442710786442623
"nd_hex": "0x679232c947f057f"
"nd_bit": "2^59 - 2^57 + 2^55 - 2^51 + 2^48 + 2^45 + 2^42 - 2^40 + 2^38 - 2^36 - 2^34 + 2^31 + 2^28 + 2^26 + 2^23 - 2^16 + 2^11 - 2^9 - 2^7 - 1"
"r2": 31974804225
"r2_hex": "0x771d8cb01"
"r2_bit": "2^35 - 2^31 - 2^28 + 2^25 - 2^21 - 2^19 + 2^16 - 2^14 + 2^12 - 2^10 - 2^8 + 1"
"znprimroot": 22
- "n": 1152921504606076801
"n_hex": "0xffffffffff43f81"
"n_bit": "2^60 - 2^20 + 2^18 + 2^14 - 2^7 + 1"
"n_fac": "2^7 * 3^2 * 5^2 * 7^2 * 816979524239 + 1"
"nd": 978449268707950463
"nd_hex": "0xd94266d0413ff7f"
"nd_bit": "2^60 - 2^57 - 2^55 + 2^52 + 2^50 + 2^45 + 2^43 - 2^41 + 2^39 - 2^36 - 2^34 + 2^32 + 2^26 + 2^20 + 2^18 - 2^7 - 1"
"r2": 593169530625
"r2_hex": "0x8a1ba8bf01"
"r2_bit": "2^39 + 2^35 + 2^33 + 2^29 - 2^26 - 2^23 + 2^21 + 2^19 + 2^16 - 2^14 - 2^8 + 1"
"znprimroot": 31
- "n": 1152921504606823681
"n_hex": "0xfffffffffffa501"
"n_bit": "2^60 - 2^15 + 2^13 + 2^10 + 2^8 + 1"
"n_fac": "2^8 * 3 * 5 * 300239975158027 + 1"
"nd": 243452280796783871
"nd_hex": "0x360ea8f3ca6a4ff"
"nd_bit": "2^58 - 2^55 - 2^53 + 2^48 - 2^45 + 2^43 + 2^41 + 2^39 + 2^36 - 2^32 + 2^30 - 2^26 + 2^23 + 2^21 + 2^19 - 2^17 + 2^15 + 2^13 + 2^10 + 2^8 - 1"
"r2": 542657025
"r2_hex": "0x20584a01"
"r2_bit": "2^29 + 2^23 - 2^21 - 2^19 + 2^14 + 2^11 + 2^9 + 1"
"znprimroot": 13
- "n": 1152921504606716161
"n_hex": "0xffffffffffe0101"
"n_bit": "2^60 - 2^17 + 2^8 + 1"
"n_fac": "2^8 * 3^2 * 5 * 100079991719333c + 1"
"nd": 348207588774314239
"nd_hex": "0x4d514f504fd00ff"
"nd_bit": "2^58 + 2^56 - 2^54 + 2^52 + 2^50 + 2^48 + 2^44 + 2^42 + 2^40 - 2^36 + 2^34 + 2^32 + 2^26 + 2^24 - 2^18 + 2^16 + 2^8 - 1"
"r2": 17112564225
"r2_hex": "0x3fbfd0201"
"r2_bit": "2^34 - 2^26 - 2^18 + 2^16 + 2^9 + 1"
"znprimroot": 13
- "n": 1152921504603859201
"n_hex": "0xfffffffffd26901"
"n_bit": "2^60 - 2^22 + 2^20 + 2^17 + 2^15 - 2^13 + 2^11 + 2^8 + 1"
"n_fac": "2^8 * 3^3 * 5^2 * 7 * 19 * 50165409383 + 1"
"nd": 573725444562577663
"nd_hex": "0x7f6484089c168ff"
"nd_bit": "2^59 - 2^51 - 2^49 + 2^46 + 2^43 + 2^38 + 2^31 + 2^27 + 2^25 - 2^22 + 2^17 - 2^15 - 2^13 + 2^11 + 2^8 - 1"
"r2": 8926799450625
"r2_hex": "0x81e6eb5d201"
"r2_bit": "2^43 + 2^37 - 2^33 + 2^31 - 2^28 - 2^24 - 2^22 - 2^19 - 2^17 - 2^14 + 2^12 + 2^9 + 1"
"znprimroot": 33
- "n": 1152921504606844417
"n_hex": "0xffffffffffff601"
"n_bit": "2^60 - 2^11 - 2^9 + 1"
"n_fac": "2^9 * 3 * 750599937895081 + 1"
"nd": 880797788787176959
"nd_hex": "0xc3938ec179bf5ff"
"nd_bit": "2^60 - 2^58 + 2^54 - 2^51 + 2^48 + 2^46 - 2^43 + 2^40 - 2^36 - 2^34 + 2^29 - 2^27 - 2^23 + 2^21 - 2^18 - 2^11 - 2^9 - 1"
"r2": 6548481
"r2_hex": "0x63ec01"
"r2_bit": "2^23 - 2^21 + 2^18 - 2^12 - 2^10 + 1"
"znprimroot": 10
- "n": 1152921504606574081
"n_hex": "0xffffffffffbd601"
"n_bit": "2^60 - 2^18 - 2^13 - 2^11 - 2^9 + 1"
"n_fac": "2^9 * 3 * 5 * 7 * 647 * 33146387189 + 1"
"nd": 450695370710177279
"nd_hex": "0x641310d4117d5ff"
"nd_bit": "2^59 - 2^57 + 2^54 + 2^48 + 2^46 - 2^44 + 2^40 + 2^36 - 2^34 + 2^32 + 2^30 + 2^24 + 2^21 - 2^19 - 2^13 - 2^11 - 2^9 - 1"
"r2": 74471681025
"r2_hex": "0x1156dbac01"
"r2_bit": "2^36 + 2^33 - 2^31 - 2^29 - 2^27 - 2^24 - 2^21 - 2^18 - 2^14 - 2^12 - 2^10 + 1"
"znprimroot": 26
- "n": 1152921504602488321
"n_hex": "0xfffffffffbd7e01"
"n_bit": "2^60 - 2^22 - 2^17 - 2^15 - 2^9 + 1"
"n_fac": "2^9 * 3^2 * 5 * 7 * 127 * 1427 * 39444961 + 1"
"nd": 1022939484858711551
"nd_hex": "0xe32360aadb97dff"
"nd_bit": "2^60 - 2^57 + 2^54 - 2^52 + 2^49 + 2^46 - 2^43 - 2^41 + 2^36 - 2^34 - 2^32 - 2^30 - 2^28 - 2^25 - 2^22 - 2^19 + 2^17 - 2^15 - 2^9 - 1"
"r2": 18997873409025
"r2_hex": "0x1147497efc01"
"r2_bit": "2^44 + 2^40 + 2^38 + 2^35 - 2^32 + 2^30 + 2^27 + 2^25 - 2^23 - 2^16 - 2^10 + 1"
"znprimroot": 22
- "n": 1152921504606815233
"n_hex": "0xfffffffffff8401"
"n_bit": "2^60 - 2^15 + 2^10 + 1"
"n_fac": "2^10 * 3^2 * 125099989649177 + 1"
"nd": 1111370857180005375
"nd_hex": "0xf6c61e803ef83ff"
"nd_bit": "2^60 - 2^55 - 2^52 - 2^50 + 2^47 - 2^45 + 2^41 - 2^37 + 2^35 + 2^26 - 2^20 - 2^15 + 2^10 - 1"
"r2": 1007618049
"r2_hex": "0x3c0f0801"
"r2_bit": "2^30 - 2^26 + 2^20 - 2^16 + 2^11 + 1"
"znprimroot": 5
- "n": 1152921504606704641
"n_hex": "0xffffffffffdd401"
"n_bit": "2^60 - 2^17 - 2^14 + 2^12 + 2^10 + 1"
"n_fac": "2^10 * 3^2 * 5 * 19 * 1316841996307 + 1"
"nd": 102052608540005375
"nd_hex": "0x16a904e886dd3ff"
"nd_bit": "2^57 - 2^55 - 2^53 + 2^51 + 2^49 + 2^47 + 2^44 + 2^38 + 2^36 - 2^33 + 2^31 + 2^27 + 2^23 - 2^20 - 2^17 - 2^14 + 2^12 + 2^10 - 1"
"r2": 20259252225
"r2_hex": "0x4b78ba801"
"r2_bit": "2^34 + 2^32 - 2^30 - 2^27 - 2^23 + 2^20 - 2^18 - 2^15 + 2^13 + 2^11 + 1"
"znprimroot": 22
- "n": 1152921504605660161
"n_hex": "0xfffffffffede401"
"n_bit": "2^60 - 2^20 - 2^17 - 2^13 + 2^10 + 1"
"n_fac": "2^10 * 3 * 5 * 7 * 43 * 467 * 509 * 1049077 + 1"
"nd": 1047553116173362175
"nd_hex": "0xe89a8024cdde3ff"
"nd_bit": "2^60 - 2^57 + 2^55 + 2^51 + 2^49 - 2^47 + 2^45 + 2^43 + 2^33 + 2^30 + 2^28 - 2^26 + 2^24 - 2^21 - 2^17 - 2^13 + 2^10 - 1"
"r2": 1408529844225
"r2_hex": "0x147f2ebc801"
"r2_bit": "2^40 + 2^38 + 2^35 - 2^28 + 2^26 - 2^24 - 2^20 - 2^18 - 2^14 + 2^11 + 1"
"znprimroot": 13
- "n": 1152921504596843521
"n_hex": "0xfffffffff675c01"
"n_bit": "2^60 - 2^23 - 2^21 + 2^19 - 2^15 - 2^13 - 2^10 + 1"
"n_fac": "2^10 * 3^3 * 5 * 7 * 11 * 5471 * 19797419 + 1"
"nd": 700059253495782399
"nd_hex": "0x9b71c2e96575bff"
"nd_bit": "2^59 + 2^57 - 2^54 - 2^51 - 2^48 + 2^45 - 2^42 + 2^38 - 2^36 - 2^33 + 2^31 + 2^29 - 2^27 - 2^25 + 2^23 - 2^21 - 2^19 - 2^15 - 2^13 - 2^10 - 1"
"r2": 100069111937025
"r2_hex": "0x5b0327deb801"
"r2_bit": "2^47 - 2^45 - 2^42 - 2^40 + 2^34 - 2^32 + 2^29 + 2^27 - 2^21 - 2^16 - 2^14 - 2^11 + 1"
"znprimroot": 17
- "n": 1152921504606504961
"n_hex": "0xffffffffffac801"
"n_bit": "2^60 - 2^18 - 2^16 - 2^14 + 2^11 + 1"
"n_fac": "2^11 * 3 * 5 * 151 * 248543025793 + 1"
"nd": 595545485716670463
"nd_hex": "0x843cd76c3bac7ff"
"nd_bit": "2^59 + 2^54 + 2^50 - 2^46 + 2^44 - 2^41 - 2^39 - 2^35 - 2^32 - 2^30 + 2^26 - 2^22 - 2^18 - 2^16 - 2^14 + 2^11 - 1"
"r2": 116974260225
"r2_hex": "0x1b3c359001"
"r2_bit": "2^37 - 2^34 - 2^32 + 2^30 - 2^26 + 2^22 - 2^19 - 2^17 - 2^15 + 2^12 + 1"
"znprimroot": 7
- "n": 1152921504577812481
"n_hex": "0xffffffffe44f801"
"n_bit": "2^60 - 2^25 + 2^22 + 2^18 + 2^16 - 2^11 + 1"
"n_fac": "2^11 * 3^2 * 5 * 7 * 19 * 23 * 4089571417 + 1"
"nd": 108734043369306111
"nd_hex": "0x1824d094e04f7ff"
"nd_bit": "2^57 - 2^55 + 2^49 + 2^46 + 2^44 - 2^42 + 2^40 + 2^35 + 2^32 + 2^30 + 2^28 - 2^25 + 2^18 + 2^16 - 2^11 - 1"
"r2": 843001899905025
"r2_hex": "0x2feb4acc9f001"
"r2_bit": "2^50 - 2^48 - 2^40 - 2^38 - 2^36 + 2^34 + 2^32 - 2^30 - 2^28 - 2^26 + 2^24 - 2^22 + 2^19 + 2^17 - 2^12 + 1"
"znprimroot": 11
- "n": 1152921504604999681
"n_hex": "0xfffffffffe3d001"
"n_bit": "2^60 - 2^21 + 2^18 - 2^14 + 2^12 + 1"
"n_fac": "2^12 * 3^3 * 5 * 43^2 * 601 * 1876267 + 1"
"nd": 806996684438753279
"nd_hex": "0xb33073576e3cfff"
"nd_bit": "2^60 - 2^58 - 2^56 + 2^54 - 2^52 + 2^50 - 2^48 + 2^43 - 2^40 + 2^38 - 2^35 - 2^33 - 2^31 - 2^27 - 2^24 - 2^21 + 2^18 - 2^14 + 2^12 - 1"
"r2": 3412498817025
"r2_hex": "0x31a88c7a001"
"r2_bit": "2^42 - 2^40 + 2^37 - 2^35 + 2^33 + 2^31 + 2^27 + 2^24 - 2^22 + 2^19 - 2^15 + 2^13 + 1"
"znprimroot": 7
- "n": 1152921504604692481
"n_hex": "0xfffffffffdf2001"
"n_bit": "2^60 - 2^21 - 2^16 + 2^13 + 1"
"n_fac": "2^13 * 3 * 5 * 7 * 1340357031953 + 1"
"nd": 1091507489072947199
"nd_hex": "0xf25d0473bdf1fff"
"nd_bit": "2^60 - 2^56 + 2^53 + 2^51 - 2^49 - 2^46 + 2^44 + 2^38 + 2^35 - 2^32 + 2^30 - 2^26 - 2^21 - 2^16 + 2^13 - 1"
"r2": 4641848705025
"r2_hex": "0x438c3be4001"
"r2_bit": "2^42 + 2^38 - 2^35 + 2^32 - 2^30 + 2^26 - 2^22 - 2^17 + 2^14 + 1"
"znprimroot": 11
- "n": 1152921504602234881
"n_hex": "0xfffffffffb9a001"
"n_bit": "2^60 - 2^22 - 2^19 + 2^17 - 2^15 + 2^13 + 1"
"n_fac": "2^13 * 3^3 * 5 * 1042499913739c + 1"
"nd": 392331206600531967
"nd_hex": "0x571d7275bb99fff"
"nd_bit": "2^59 - 2^57 - 2^55 - 2^52 + 2^49 - 2^45 - 2^43 - 2^40 + 2^37 + 2^35 - 2^31 - 2^29 - 2^26 - 2^22 - 2^19 + 2^17 - 2^15 + 2^13 - 1"
"r2": 21271420289025
"r2_hex": "0x1358a3734001"
"r2_bit": "2^44 + 2^42 - 2^39 - 2^37 - 2^35 + 2^31 + 2^29 + 2^26 - 2^23 - 2^20 + 2^18 - 2^16 + 2^14 + 1"
"znprimroot": 7
- "n": 1152921504566845441
"n_hex": "0xffffffffd9da001"
"n_bit": "2^60 - 2^25 - 2^23 + 2^21 - 2^17 - 2^15 + 2^13 + 1"
"n_fac": "2^13 * 3^3 * 5 * 7^3 * 1933 * 1572353 + 1"
"nd": 444848327198875647
"nd_hex": "0x62c6b32599d9fff"
"nd_bit": "2^59 - 2^57 + 2^54 - 2^52 - 2^50 + 2^47 - 2^44 - 2^42 - 2^40 + 2^38 - 2^36 + 2^33 + 2^31 - 2^29 - 2^27 + 2^25 - 2^23 + 2^21 - 2^17 - 2^15 + 2^13 - 1"
"r2": 1600122802356225
"r2_hex": "0x5af4d9f3b4001"
"r2_bit": "2^51 - 2^49 - 2^46 - 2^44 - 2^40 + 2^38 + 2^36 - 2^33 - 2^31 + 2^29 - 2^24 + 2^22 - 2^18 - 2^16 + 2^14 + 1"
"znprimroot": 22
- "n": 1152921504606830593
"n_hex": "0xfffffffffffc001"
"n_bit": "2^60 - 2^14 + 1"
"n_fac": "2^14 * 3 * 47 * 499069107643c + 1"
"nd": 1080859512253956095
"nd_hex": "0xefffbffefffbfff"
"nd_bit": "2^60 - 2^56 - 2^42 - 2^28 - 2^14 - 1"
"r2": 268402689
"r2_hex": "0xfff8001"
"r2_bit": "2^28 - 2^15 + 1"
"znprimroot": 10
- "n": 1152921504600145921
"n_hex": "0xfffffffff99c001"
"n_bit": "2^60 - 2^23 + 2^21 - 2^19 + 2^17 - 2^14 + 1"
"n_fac": "2^14 * 3 * 5 * 4691249611817 + 1"
"nd": 1088097773386579967
"nd_hex": "0xf19b328ef99bfff"
"nd_bit": "2^60 - 2^56 + 2^53 - 2^51 + 2^49 - 2^46 - 2^44 + 2^42 - 2^40 + 2^37 + 2^35 + 2^32 - 2^28 - 2^23 + 2^21 - 2^19 + 2^17 - 2^14 - 1"
"r2": 44904138113025
"r2_hex": "0x28d70f338001"
"r2_bit": "2^45 + 2^43 + 2^40 - 2^37 - 2^35 - 2^32 + 2^28 - 2^24 + 2^22 - 2^20 + 2^18 - 2^15 + 1"
"znprimroot": 41
- "n": 1152921504571146241
"n_hex": "0xffffffffddf4001"
"n_bit": "2^60 - 2^25 - 2^21 - 2^16 + 2^14 + 1"
"n_fac": "2^14 * 3 * 5 * 7 * 670178515957c + 1"
"nd": 172558245764743167
"nd_hex": "0x2650ccf6ddf3fff"
"nd_bit": "2^57 + 2^55 - 2^53 + 2^50 + 2^48 + 2^44 - 2^42 + 2^40 - 2^38 + 2^36 - 2^31 - 2^28 - 2^25 - 2^21 - 2^16 + 2^14 - 1"
"r2": 1274542479540225
"r2_hex": "0x487308bbe8001"
"r2_bit": "2^50 + 2^47 + 2^43 - 2^40 + 2^38 - 2^36 + 2^31 + 2^28 - 2^26 - 2^22 - 2^17 + 2^15 + 1"
"znprimroot": 17
- "n": 1152921504440401921
"n_hex": "0xffffffff6144001"
"n_bit": "2^60 - 2^27 - 2^25 + 2^20 + 2^18 + 2^14 + 1"
"n_fac": "2^14 * 3^2 * 5 * 7^3 * 5521 * 825763 + 1"
"nd": 84820063153307647
"nd_hex": "0x12d5765e6143fff"
"nd_bit": "2^56 + 2^54 - 2^52 - 2^49 - 2^47 - 2^45 - 2^43 - 2^39 - 2^37 + 2^35 - 2^33 - 2^29 + 2^27 - 2^25 + 2^20 + 2^18 + 2^14 - 1"
"r2": 27703956333953025
"r2_hex": "0x626c99fc288001"
"r2_bit": "2^55 - 2^53 + 2^49 + 2^47 - 2^44 - 2^42 + 2^39 + 2^37 - 2^35 + 2^33 - 2^26 + 2^21 + 2^19 + 2^15 + 1"
"znprimroot": 17
- "n": 1152921504606748673
"n_hex": "0xffffffffffe8001"
"n_bit": "2^60 - 2^17 + 2^15 + 1"
"n_fac": "2^15 * 2087 * 16858827067c + 1"
"nd": 1151971516896673791
"nd_hex": "0xffc9ffdbffe7fff"
"nd_bit": "2^60 - 2^50 + 2^47 + 2^45 - 2^33 - 2^30 - 2^17 + 2^15 - 1"
"r2": 9663479809
"r2_hex": "0x23ffd0001"
"r2_bit": "2^33 + 2^30 - 2^18 + 2^16 + 1"
"znprimroot": 3
- "n": 1152921504606683137
"n_hex": "0xffffffffffd8001"
"n_bit": "2^60 - 2^17 - 2^15 + 1"
"n_fac": "2^15 * 3 * 13 * 902163386893 + 1"
"nd": 1148523431252033535
"nd_hex": "0xff05ff9bffd7fff"
"nd_bit": "2^60 - 2^52 + 2^47 - 2^45 - 2^35 + 2^33 - 2^30 - 2^17 - 2^15 - 1"
"r2": 26843217921
"r2_hex": "0x63ffb0001"
"r2_bit": "2^35 - 2^33 + 2^30 - 2^18 - 2^16 + 1"
"znprimroot": 5
- "n": 1152921504565985281
"n_hex": "0xffffffffd908001"
"n_bit": "2^60 - 2^25 - 2^23 + 2^20 + 2^15 + 1"
"n_fac": "2^15 * 3 * 5 * 7 * 131 * 2557933267c + 1"
"nd": 551182360390959103
"nd_hex": "0x7a6316fbd907fff"
"nd_bit": "2^59 - 2^55 + 2^53 + 2^51 - 2^49 + 2^46 - 2^44 + 2^41 - 2^39 - 2^36 - 2^30 - 2^25 - 2^23 + 2^20 + 2^15 - 1"
"r2": 1669678118273025
"r2_hex": "0x5ee903b210001"
"r2_bit": "2^51 - 2^49 - 2^44 - 2^41 + 2^39 + 2^36 + 2^30 - 2^26 - 2^24 + 2^21 + 2^16 + 1"
"znprimroot": 11
- "n": 1152921504376750081
"n_hex": "0xffffffff2490001"
"n_bit": "2^60 - 2^28 + 2^25 + 2^22 + 2^19 + 2^16 + 1"
"n_fac": "2^16 * 3 * 5 * 7 * 167544628961 + 1"
"nd": 350409059847438335
"nd_hex": "0x4dce72ef248ffff"
"nd_bit": "2^58 + 2^56 - 2^53 - 2^50 + 2^48 - 2^45 + 2^43 - 2^40 + 2^38 - 2^36 - 2^32 - 2^28 + 2^25 + 2^22 + 2^19 + 2^16 - 1"
"r2": 52944581088641025
"r2_hex": "0xbc18d0e4920001"
"r2_bit": "2^56 - 2^54 - 2^50 + 2^45 - 2^43 + 2^40 - 2^38 + 2^36 + 2^32 - 2^29 + 2^26 + 2^23 + 2^20 + 2^17 + 1"
"znprimroot": 11
- "n": 1152921504595968001
"n_hex": "0xfffffffff5a0001"
"n_bit": "2^60 - 2^23 - 2^21 - 2^19 + 2^17 + 1"
"n_fac": "2^17 * 3^2 * 5^3 * 7818749353 + 1"
"nd": 263342226071486463
"nd_hex": "0x3a7945bff59ffff"
"nd_bit": "2^58 - 2^55 + 2^53 + 2^51 - 2^47 + 2^44 + 2^42 + 2^39 - 2^37 - 2^34 - 2^23 - 2^21 - 2^19 + 2^17 - 1"
"r2": 118352097050625
"r2_hex": "0x6ba3feb40001"
"r2_bit": "2^47 - 2^44 - 2^42 - 2^39 + 2^37 + 2^34 - 2^24 - 2^22 - 2^20 + 2^18 + 1"
"znprimroot": 13
- "n": 1152921504301056001
"n_hex": "0xfffffffedc60001"
"n_bit": "2^60 - 2^28 - 2^25 - 2^22 + 2^19 - 2^17 + 1"
"n_fac": "2^17 * 3^2 * 5^3 * 7 * 31 * 197 * 182899 + 1"
"nd": 904039196153741311
"nd_hex": "0xc8bcadbedc5ffff"
"nd_bit": "2^60 - 2^58 + 2^55 + 2^52 - 2^50 - 2^46 + 2^44 - 2^42 - 2^40 - 2^37 - 2^34 - 2^28 - 2^25 - 2^22 + 2^19 - 2^17 - 1"
"r2": 93508120391450625
"r2_hex": "0x14c3523db8c0001"
"r2_bit": "2^56 + 2^54 + 2^52 - 2^50 + 2^46 - 2^44 + 2^42 + 2^40 + 2^37 + 2^34 - 2^29 - 2^26 - 2^23 + 2^20 - 2^18 + 1"
"znprimroot": 11
- "n": 1152921504606584833
"n_hex": "0xffffffffffc0001"
"n_bit": "2^60 - 2^18 + 1"
"n_fac": "2^18 * 3^2 * 7^2 * 43 * 127 * 337 * 5419 + 1"
"nd": 1134907037377626111
"nd_hex": "0xfbfffeffffbffff"
"nd_bit": "2^60 - 2^54 - 2^36 - 2^18 - 1"
"r2": 68718952449
"r2_hex": "0xffff80001"
"r2_bit": "2^36 - 2^19 + 1"
"znprimroot": 10
- "n": 1152921504578273281
"n_hex": "0xffffffffe4c0001"
"n_bit": "2^60 - 2^25 + 2^22 + 2^20 - 2^18 + 1"
"n_fac": "2^18 * 3^2 * 5 * 3023 * 32330257 + 1"
"nd": 197341927472627711
"nd_hex": "0x2bd196ffe4bffff"
"nd_bit": "2^58 - 2^56 - 2^54 - 2^50 + 2^48 + 2^45 - 2^43 + 2^41 - 2^39 - 2^36 - 2^25 + 2^22 + 2^20 - 2^18 - 1"
"r2": 816456045953025
"r2_hex": "0x2e68ffc980001"
"r2_bit": "2^50 - 2^48 - 2^45 + 2^43 - 2^41 + 2^39 + 2^36 - 2^26 + 2^23 + 2^21 - 2^19 + 1"
"znprimroot": 7
- "n": 1152921504287293441
"n_hex": "0xfffffffecf40001"
"n_bit": "2^60 - 2^28 - 2^26 + 2^24 - 2^20 + 2^18 + 1"
"n_fac": "2^18 * 3 * 5 * 7 * 6577 * 6368581 + 1"
"nd": 564418282161176575
"nd_hex": "0x7d5376fecf3ffff"
"nd_bit": "2^59 - 2^54 + 2^52 + 2^50 + 2^48 + 2^46 - 2^43 - 2^39 - 2^36 - 2^28 - 2^26 + 2^24 - 2^20 + 2^18 - 1"
"r2": 102114461730996225
"r2_hex": "0x16ac88fd9e80001"
"r2_bit": "2^57 - 2^55 - 2^52 - 2^50 - 2^48 - 2^46 + 2^43 + 2^39 + 2^36 - 2^29 - 2^27 + 2^25 - 2^21 + 2^19 + 1"
"znprimroot": 23
- "n": 1152921504177192961
"n_hex": "0xfffffffe6640001"
"n_bit": "2^60 - 2^29 + 2^27 - 2^25 + 2^23 - 2^21 + 2^18 + 1"
"n_fac": "2^18 * 3^2 * 5 * 7 * 23 * 937 * 647861 + 1"
"nd": 1130448517297602559
"nd_hex": "0xfb028efe663ffff"
"nd_bit": "2^60 - 2^54 - 2^52 + 2^45 + 2^43 + 2^40 - 2^36 - 2^29 + 2^27 - 2^25 + 2^23 - 2^21 + 2^18 - 1"
"r2": 184602572605620225
"r2_hex": "0x28fd70fccc80001"
"r2_bit": "2^57 + 2^55 + 2^52 - 2^45 - 2^43 - 2^40 + 2^36 - 2^30 + 2^28 - 2^26 + 2^24 - 2^22 + 2^19 + 1"
"znprimroot": 11
- "n": 1152921503874416641
"n_hex": "0xfffffffd4580001"
"n_bit": "2^60 - 2^30 + 2^28 + 2^26 + 2^23 - 2^21 - 2^19 + 1"
"n_fac": "2^19 * 3 * 5 * 7^2 * 13 * 31 * 7423991 + 1"
"nd": 1048812871008911359
"nd_hex": "0xe8e21bfd457ffff"
"nd_bit": "2^60 - 2^57 + 2^55 + 2^52 - 2^49 + 2^45 + 2^41 - 2^38 - 2^30 + 2^28 + 2^26 + 2^23 - 2^21 - 2^19 - 1"
"r2": 536454195628212225
"r2_hex": "0x771de3fa8b00001"
"r2_bit": "2^59 - 2^55 - 2^52 + 2^49 - 2^45 - 2^41 + 2^38 - 2^31 + 2^29 + 2^27 + 2^24 - 2^22 - 2^20 + 1"
"znprimroot": 22
- "n": 1152921504542883841
"n_hex": "0xffffffffc300001"
"n_bit": "2^60 - 2^26 + 2^22 - 2^20 + 1"
"n_fac": "2^20 * 3^2 * 5 * 24433591727c + 1"
"nd": 1148830221775929343
"nd_hex": "0xff176fffc2fffff"
"nd_bit": "2^60 - 2^52 + 2^49 - 2^47 - 2^43 - 2^40 - 2^26 + 2^22 - 2^20 - 1"
"r2": 4091282639028225
"r2_hex": "0xe88fff8600001"
"r2_bit": "2^52 - 2^49 + 2^47 + 2^43 + 2^40 - 2^27 + 2^23 - 2^21 + 1"
"znprimroot": 11
- "n": 1152921502277959681
"n_hex": "0xfffffff75300001"
"n_bit": "2^60 - 2^31 - 2^28 + 2^26 + 2^24 + 2^22 - 2^20 + 1"
"n_fac": "2^20 * 3^2 * 5 * 7 * 23 * 151761439 + 1"
"nd": 340891483235155967
"nd_hex": "0x4bb16ff752fffff"
"nd_bit": "2^58 + 2^56 - 2^54 - 2^50 - 2^48 + 2^45 - 2^43 - 2^40 - 2^31 - 2^28 + 2^26 + 2^24 + 2^22 - 2^20 - 1"
"r2": 812030023700578301
"r2_hex": "0xb44e901159ffffd"
"r2_bit": "2^60 - 2^58 - 2^56 + 2^54 + 2^50 + 2^48 - 2^45 + 2^43 + 2^40 + 2^32 + 2^29 - 2^27 - 2^25 - 2^23 + 2^21 - 2^2 + 1"
"znprimroot": 13
- "n": 1152921504495697921
"n_hex": "0xffffffff9600001"
"n_bit": "2^60 - 2^27 + 2^25 - 2^23 - 2^21 + 1"
"n_fac": "2^21 * 3^2 * 5 * 6833 * 1787911 + 1"
"nd": 1140567391846006783
"nd_hex": "0xfd41bfff95fffff"
"nd_bit": "2^60 - 2^54 + 2^52 + 2^50 + 2^45 - 2^42 - 2^27 + 2^25 - 2^23 - 2^21 - 1"
"r2": 12354112427393025
"r2_hex": "0x2be3fff2c00001"
"r2_bit": "2^54 - 2^52 - 2^50 - 2^45 + 2^42 - 2^28 + 2^26 - 2^24 - 2^22 + 1"
"znprimroot": 14
- "n": 1152921504577486849
"n_hex": "0xffffffffe400001"
"n_bit": "2^60 - 2^25 + 2^22 + 1"
"n_fac": "2^22 * 3 * 113 * 810849283 + 1"
"nd": 1152059487461310463
"nd_hex": "0xffceffffe3fffff"
"nd_bit": "2^60 - 2^50 + 2^48 - 2^44 - 2^25 + 2^22 - 1"
"r2": 862017057456129
"r2_hex": "0x30ffffc800001"
"r2_bit": "2^50 - 2^48 + 2^44 - 2^26 + 2^23 + 1"
"znprimroot": 17
- "n": 1152921504023838721
"n_hex": "0xfffffffdd400001"
"n_bit": "2^60 - 2^29 - 2^26 + 2^24 + 2^22 + 1"
"n_fac": "2^22 * 3^4 * 5 * 678710881 + 1"
"nd": 813022877459677183
"nd_hex": "0xb486fffdd3fffff"
"nd_bit": "2^60 - 2^58 - 2^56 + 2^54 + 2^51 + 2^47 - 2^44 - 2^29 - 2^26 + 2^24 + 2^22 - 1"
"r2": 339898625398145025
"r2_hex": "0x4b78fffba800001"
"r2_bit": "2^58 + 2^56 - 2^54 - 2^51 - 2^47 + 2^44 - 2^30 - 2^27 + 2^25 + 2^23 + 1"
"znprimroot": 11
- "n": 1152921501947658241
"n_hex": "0xfffffff61800001"
"n_bit": "2^60 - 2^31 - 2^29 + 2^25 - 2^23 + 1"
"n_fac": "2^23 * 3^2 * 5 * 7^2 * 62330591 + 1"
"nd": 999165795919462399
"nd_hex": "0xdddbfff617fffff"
"nd_bit": "2^60 - 2^57 - 2^53 - 2^49 - 2^46 - 2^31 - 2^29 + 2^25 - 2^23 - 1"
"r2": 153755716664950779
"r2_hex": "0x222400279fffffb"
"r2_bit": "2^57 + 2^53 + 2^49 + 2^46 + 2^33 + 2^31 - 2^27 + 2^25 - 2^2 - 1"
"znprimroot": 11
- "n": 1152921504556515329
"n_hex": "0xffffffffd000001"
"n_bit": "2^60 - 2^26 + 2^24 + 1"
"n_fac": "2^24 * 68719476733c + 1"
"nd": 1150388229766119423
"nd_hex": "0xff6fffffcffffff"
"nd_bit": "2^60 - 2^51 - 2^48 - 2^26 + 2^24 - 1"
"r2": 2533274689732609
"r2_hex": "0x8fffffa000001"
"r2_bit": "2^51 + 2^48 - 2^27 + 2^25 + 1"
"znprimroot": 3
- "n": 1152921503080120321
"n_hex": "0xfffffffa5000001"
"n_bit": "2^60 - 2^31 + 2^29 + 2^26 + 2^24 + 1"
"n_fac": "2^24 * 3^2 * 5 * 359 * 4253759 + 1"
"nd": 1127870230152871935
"nd_hex": "0xfa6ffffa4ffffff"
"nd_bit": "2^60 - 2^55 + 2^53 + 2^51 - 2^48 - 2^31 + 2^29 + 2^26 + 2^24 - 1"
"r2": 25051272927248383
"r2_hex": "0x58ffffffffffff"
"r2_bit": "2^55 - 2^53 - 2^51 + 2^48 - 1"
"znprimroot": 17
- "n": 1152921494020423681
"n_hex": "0xffffffd89000001"
"n_bit": "2^60 - 2^33 - 2^31 + 2^27 + 2^24 + 1"
"n_fac": "2^24 * 3^2 * 5 * 7 * 89 * 2451203 + 1"
"nd": 913949238793076735
"nd_hex": "0xcaefffd88ffffff"
"nd_bit": "2^60 - 2^58 + 2^56 - 2^54 - 2^52 - 2^48 - 2^33 - 2^31 + 2^27 + 2^24 - 1"
"r2": 238973260937559968
"r2_hex": "0x35100ea28ffffa0"
"r2_bit": "2^58 - 2^56 + 2^54 + 2^52 + 2^48 + 2^40 - 2^37 + 2^35 + 2^33 + 2^29 + 2^27 + 2^24 - 2^7 + 2^5"
"znprimroot": 13
- "n": 1152921503432441857
"n_hex": "0xfffffffba000001"
"n_bit": "2^60 - 2^30 - 2^27 + 2^25 + 1"
"n_fac": "2^25 * 3 * 83 * 401 * 344117 + 1"
"nd": 926615622157074431
"nd_hex": "0xcdbffffb9ffffff"
"nd_bit": "2^60 - 2^58 + 2^56 - 2^53 - 2^50 - 2^30 - 2^27 + 2^25 - 1"
"r2": 226305880100962304
"r2_hex": "0x323ffffba000000"
"r2_bit": "2^58 - 2^56 + 2^53 + 2^50 - 2^30 - 2^27 + 2^25"
"znprimroot": 5
- "n": 1152921488735600641
"n_hex": "0xffffffc4e000001"
"n_bit": "2^60 - 2^34 + 2^30 + 2^28 - 2^25 + 1"
"n_fac": "2^25 * 3^4 * 5 * 7 * 12119837 + 1"
"nd": 593349235034816511
"nd_hex": "0x83bfffc4dffffff"
"nd_bit": "2^59 + 2^54 - 2^50 - 2^34 + 2^30 + 2^28 - 2^25 - 1"
"r2": 559575681889992487
"r2_hex": "0x7c4031e2fffff27"
"r2_bit": "2^59 - 2^54 + 2^50 + 2^42 - 2^40 + 2^37 - 2^33 + 2^30 - 2^28 - 2^8 + 2^5 + 2^3 - 1"
"znprimroot": 17
- "n": 1152921487225651201
"n_hex": "0xffffffbf4000001"
"n_bit": "2^60 - 2^34 - 2^28 + 2^26 + 1"
"n_fac": "2^26 * 3^2 * 5^2 * 17 * 4491469 + 1"
"nd": 1112389090579316735
"nd_hex": "0xf6ffffbf3ffffff"
"nd_bit": "2^60 - 2^55 - 2^52 - 2^34 - 2^28 + 2^26 - 1"
"r2": 40536915757235963
"r2_hex": "0x90041c2ffffefb"
"r2_bit": "2^55 + 2^52 + 2^42 + 2^37 - 2^34 + 2^30 - 2^28 - 2^8 - 2^2 - 1"
"znprimroot": 19
- "n": 1152921504204193793
"n_hex": "0xfffffffe8000001"
"n_bit": "2^60 - 2^29 + 2^27 + 1"
"n_fac": "2^27 * 29 * 296204641 + 1"
"nd": 990791917618855935
"nd_hex": "0xdbfffffe7ffffff"
"nd_bit": "2^60 - 2^57 - 2^54 - 2^29 + 2^27 - 1"
"r2": 162129585780031489
"r2_hex": "0x23fffffd0000001"
"r2_bit": "2^57 + 2^54 - 2^30 + 2^28 + 1"
"znprimroot": 3
- "n": 1152921499909226497
"n_hex": "0xffffffee8000001"
"n_bit": "2^60 - 2^32 - 2^29 + 2^27 + 1"
"n_fac": "2^27 * 3^2 * 101 * 349 * 27077 + 1"
"nd": 990791913323888639
"nd_hex": "0xdbffffee7ffffff"
"nd_bit": "2^60 - 2^57 - 2^54 - 2^32 - 2^29 + 2^27 - 1"
"r2": 162129666444885998
"r2_hex": "0x240001297ffffee"
"r2_bit": "2^57 + 2^54 + 2^36 + 2^33 + 2^31 + 2^29 - 2^27 - 2^4 - 2"
"znprimroot": 5
- "n": 1152921478165954561
"n_hex": "0xffffff9d8000001"
"n_bit": "2^60 - 2^35 + 2^33 - 2^29 - 2^27 + 1"
"n_fac": "2^27 * 3^2 * 5 * 7 * 41 * 665113 + 1"
"nd": 702561515428904959
"nd_hex": "0x9bffff9d7ffffff"
"nd_bit": "2^59 + 2^57 - 2^54 - 2^35 + 2^33 - 2^29 - 2^27 - 1"
"r2": 450375933036068259
"r2_hex": "0x6400e865ffffda3"
"r2_bit": "2^59 - 2^57 + 2^54 + 2^44 - 2^41 + 2^39 + 2^35 - 2^33 + 2^31 - 2^29 - 2^9 - 2^7 + 2^5 + 2^2 - 1"
"znprimroot": 19
- "n": 1152921238587310081
"n_hex": "0xfffffc210000001"
"n_bit": "2^60 - 2^38 + 2^33 + 2^28 + 1"
"n_fac": "2^28 * 3 * 5 * 7 * 40904441 + 1"
"nd": 1080863644549382143
"nd_hex": "0xeffffc20fffffff"
"nd_bit": "2^60 - 2^56 - 2^38 + 2^33 + 2^28 - 1"
"r2": 88385341173469245
"r2_hex": "0x13a01ffdfff103d"
"r2_bit": "2^56 + 2^54 - 2^51 + 2^49 + 2^41 - 2^29 - 2^16 + 2^12 + 2^6 - 2^2 + 1"
"znprimroot": 17
- "n": 1152921013101527041
"n_hex": "0xfffff8d90000001"
"n_bit": "2^60 - 2^39 + 2^36 - 2^33 - 2^31 + 2^28 + 1"
"n_fac": "2^28 * 3^6 * 5 * 7 * 168331 + 1"
"nd": 1080863419063599103
"nd_hex": "0xeffff8d8fffffff"
"nd_bit": "2^60 - 2^56 - 2^39 + 2^36 - 2^33 - 2^31 + 2^28 - 1"
"r2": 175044178239868290
"r2_hex": "0x26de1c0affccd82"
"r2_bit": "2^57 + 2^55 - 2^52 - 2^49 - 2^45 + 2^41 - 2^38 + 2^32 - 2^30 - 2^28 - 2^18 + 2^16 - 2^14 + 2^12 - 2^9 - 2^7 + 2"
"znprimroot": 13
- "n": 1152921041287249921
"n_hex": "0xfffff9420000001"
"n_bit": "2^60 - 2^39 + 2^36 + 2^34 + 2^29 + 1"
"n_fac": "2^29 * 3 * 5 * 7 * 20452217 + 1"
"nd": 864690665135538175
"nd_hex": "0xbffff941fffffff"
"nd_bit": "2^60 - 2^58 - 2^39 + 2^36 + 2^34 + 2^29 - 1"
"r2": 374495851927382193
"r2_hex": "0x53279fe3ffd28b1"
"r2_bit": "2^58 + 2^56 + 2^54 - 2^52 + 2^49 + 2^47 - 2^43 + 2^41 - 2^33 + 2^30 - 2^18 + 2^16 + 2^13 + 2^11 + 2^8 - 2^6 - 2^4 + 1"
"znprimroot": 13
- "n": 1152920928544358401
"n_hex": "0xfffff79e0000001"
"n_bit": "2^60 - 2^39 - 2^35 + 2^33 - 2^29 + 1"
"n_fac": "2^29 * 3^2 * 5^2 * 7^2 * 109 * 1787 + 1"
"nd": 864690552392646655
"nd_hex": "0xbffff79dfffffff"
"nd_bit": "2^60 - 2^58 - 2^39 - 2^35 + 2^33 - 2^29 - 1"
"r2": 454038442238253993
"r2_hex": "0x64d118ebffb9ba9"
"r2_bit": "2^59 - 2^57 + 2^54 + 2^52 - 2^50 + 2^48 + 2^44 + 2^41 - 2^39 + 2^36 - 2^32 - 2^30 - 2^18 - 2^15 + 2^13 - 2^10 - 2^7 + 2^5 + 2^3 + 1"
"znprimroot": 11
- "n": 1152921484205752321
"n_hex": "0xffffffb40000001"
"n_bit": "2^60 - 2^34 - 2^32 + 2^30 + 1"
"n_fac": "2^30 * 3^3 * 5 * 313 * 25411 + 1"
"nd": 1152921484205752319
"nd_hex": "0xffffffb3fffffff"
"nd_bit": "2^60 - 2^34 - 2^32 + 2^30 - 1"
"r2": 7323992981144
"r2_hex": "0x6a93ffffe98"
"r2_bit": "2^43 - 2^41 + 2^39 + 2^37 + 2^35 + 2^32 + 2^30 - 2^9 + 2^7 + 2^5 - 2^3"
"znprimroot": 19
- "n": 1152917489886167041
"n_hex": "0xffffc5940000001"
"n_bit": "2^60 - 2^42 + 2^39 - 2^37 - 2^35 + 2^32 + 2^30 + 1"
"n_fac": "2^30 * 3 * 5 * 7 * 10226077 + 1"
"nd": 1152917489886167039
"nd_hex": "0xffffc593fffffff"
"nd_bit": "2^60 - 2^42 + 2^39 - 2^37 - 2^35 + 2^32 + 2^30 - 1"
"r2": 786233342716194296
"r2_hex": "0xae9430f3f2aadf8"
"r2_bit": "2^60 - 2^58 - 2^56 - 2^53 + 2^51 + 2^48 + 2^46 + 2^42 - 2^40 + 2^36 - 2^32 + 2^30 - 2^24 + 2^22 - 2^20 - 2^18 - 2^16 - 2^14 - 2^12 - 2^9 - 2^3"
"znprimroot": 46
- "n": 1152921493869428737
"n_hex": "0xffffffd80000001"
"n_bit": "2^60 - 2^33 - 2^31 + 1"
"n_fac": "2^31 * 3^2 * 59652323 + 1"
"nd": 1152921493869428735
"nd_hex": "0xffffffd7fffffff"
"nd_bit": "2^60 - 2^33 - 2^31 - 1"
"r2": 1052266987421
"r2_hex": "0xf4ffffff9d"
"r2_bit": "2^40 - 2^36 + 2^34 + 2^32 - 2^7 + 2^5 - 2^2 + 1"
"znprimroot": 15
- "n": 1152921274826096641
"n_hex": "0xfffffca80000001"
"n_bit": "2^60 - 2^38 + 2^35 + 2^33 + 2^31 + 1"
"n_fac": "2^31 * 3 * 5 * 137 * 261251 + 1"
"nd": 1152921274826096639
"nd_hex": "0xfffffca7fffffff"
"nd_bit": "2^60 - 2^38 + 2^35 + 2^33 + 2^31 - 1"
"r2": 10522579680840989
"r2_hex": "0x25623affff4d1d"
"r2_bit": "2^53 + 2^51 - 2^49 - 2^47 - 2^45 + 2^41 + 2^38 - 2^34 - 2^32 - 2^16 + 2^14 + 2^12 - 2^10 + 2^8 + 2^5 - 2^2 + 1"
"znprimroot": 7
- "n": 1152919793062379521
"n_hex": "0xffffe7180000001"
"n_bit": "2^60 - 2^41 + 2^39 - 2^36 + 2^33 - 2^31 + 1"
"n_fac": "2^31 * 3^2 * 5 * 17 * 701791 + 1"
"nd": 1152919793062379519
"nd_hex": "0xffffe717fffffff"
"nd_bit": "2^60 - 2^41 + 2^39 - 2^36 + 2^33 - 2^31 - 1"
"r2": 889990996234418906
"r2_hex": "0xc59e2187fd93ada"
"r2_bit": "2^60 - 2^58 + 2^55 - 2^53 - 2^51 + 2^49 - 2^45 + 2^41 + 2^37 - 2^35 + 2^31 - 2^21 - 2^19 + 2^16 + 2^14 - 2^10 - 2^8 - 2^5 - 2^3 + 2"
"znprimroot": 29
- "n": 1152916700685926401
"n_hex": "0xffffba180000001"
"n_bit": "2^60 - 2^42 - 2^39 + 2^37 + 2^33 - 2^31 + 1"
"n_fac": "2^31 * 3^3 * 5^2 * 7 * 113623 + 1"
"nd": 1152916700685926399
"nd_hex": "0xffffba17fffffff"
"nd_bit": "2^60 - 2^42 - 2^39 + 2^37 + 2^33 - 2^31 - 1"
"r2": 466432831997776266
"r2_hex": "0x6791a307ece918a"
"r2_bit": "2^59 - 2^57 + 2^55 - 2^51 + 2^48 + 2^45 - 2^43 + 2^41 + 2^38 - 2^36 + 2^31 - 2^24 - 2^22 + 2^20 - 2^17 + 2^15 + 2^12 + 2^9 - 2^7 + 2^3 + 2"
"znprimroot": 17
- "n": 1152920933376196609
"n_hex": "0xfffff7b00000001"
"n_bit": "2^60 - 2^39 - 2^34 - 2^32 + 1"
"n_fac": "2^32 * 3^3 * 13 * 23 * 41 * 811 + 1"
"nd": 1152920933376196607
"nd_hex": "0xfffff7affffffff"
"nd_bit": "2^60 - 2^39 - 2^34 - 2^32 - 1"
"r2": 161670841128169073
"r2_hex": "0x23e5ec5fffbae71"
"r2_bit": "2^57 + 2^54 - 2^49 + 2^47 - 2^45 - 2^40 - 2^38 + 2^35 - 2^33 - 2^18 - 2^14 - 2^12 - 2^9 + 2^7 - 2^4 + 1"
"znprimroot": 17
- "n": 1152919760850124801
"n_hex": "0xffffe6a00000001"
"n_bit": "2^60 - 2^41 + 2^39 - 2^37 + 2^35 + 2^33 + 1"
"n_fac": "2^33 * 3 * 5^2 * 13 * 137659 + 1"
"nd": 1152919760850124799
"nd_hex": "0xffffe69ffffffff"
"nd_bit": "2^60 - 2^41 + 2^39 - 2^37 + 2^35 + 2^33 - 1"
"r2": 1140179358839194046
"r2_hex": "0xfd2bb15ffd7c1be"
"r2_bit": "2^60 - 2^54 + 2^52 + 2^50 - 2^48 - 2^46 - 2^42 - 2^40 + 2^37 - 2^35 - 2^33 - 2^21 - 2^19 - 2^14 + 2^9 - 2^6 - 2"
"znprimroot": 22
- "n": 1152916926171709441
"n_hex": "0xffffbd600000001"
"n_bit": "2^60 - 2^42 - 2^37 - 2^35 - 2^33 + 1"
"n_fac": "2^33 * 3 * 5 * 7 * 47 * 27197 + 1"
"nd": 1152916926171709439
"nd_hex": "0xffffbd5ffffffff"
"nd_bit": "2^60 - 2^42 - 2^37 - 2^35 - 2^33 - 1"
"r2": 233687985146204537
"r2_hex": "0x33e39fbfeea9179"
"r2_bit": "2^58 - 2^56 + 2^54 - 2^49 + 2^46 - 2^43 + 2^41 - 2^34 - 2^24 - 2^21 + 2^19 + 2^17 + 2^15 + 2^12 + 2^9 - 2^7 - 2^3 + 1"
"znprimroot": 13
- "n": 1152916024228577281
"n_hex": "0xffffb0400000001"
"n_bit": "2^60 - 2^42 - 2^40 + 2^34 + 1"
"n_fac": "2^34 * 3^2 * 5 * 7 * 213043 + 1"
"nd": 1152916024228577279
"nd_hex": "0xffffb03ffffffff"
"nd_bit": "2^60 - 2^42 - 2^40 + 2^34 - 1"
"r2": 959643973351276166
"r2_hex": "0xd51571bfe727e86"
"r2_bit": "2^60 - 2^58 + 2^56 + 2^54 + 2^52 + 2^49 - 2^47 - 2^45 - 2^43 - 2^40 + 2^37 - 2^34 - 2^25 + 2^23 - 2^20 + 2^17 + 2^15 - 2^9 + 2^7 + 2^3 - 2"
"znprimroot": 11
- "n": 1152918858906992641
"n_hex": "0xffffd9800000001"
"n_bit": "2^60 - 2^41 - 2^39 + 2^37 - 2^35 + 1"
"n_fac": "2^35 * 3 * 5 * 23 * 97259 + 1"
"nd": 1152918858906992639
"nd_hex": "0xffffd97ffffffff"
"nd_bit": "2^60 - 2^41 - 2^39 + 2^37 - 2^35 - 1"
"r2": 1074876485634055156
"r2_hex": "0xeeaba77ffa35bf4"
"r2_bit": "2^60 - 2^56 - 2^52 - 2^50 - 2^48 - 2^46 - 2^43 + 2^41 + 2^39 - 2^35 - 2^23 + 2^21 + 2^18 - 2^15 - 2^13 - 2^10 - 2^4 + 2^2"
"znprimroot": 41
- "n": 1152564266407034881
"n_hex": "0xffebb1800000001"
"n_bit": "2^60 - 2^48 - 2^46 - 2^42 - 2^40 + 2^37 - 2^35 + 1"
"n_fac": "2^35 * 3^2 * 5 * 7 * 83 * 1283 + 1"
"nd": 1152564266407034879
"nd_hex": "0xffebb17ffffffff"
"nd_bit": "2^60 - 2^48 - 2^46 - 2^42 - 2^40 + 2^37 - 2^35 - 1"
"r2": 415950738698754112
"r2_hex": "0x5c5c0fe38335840"
"r2_bit": "2^59 - 2^57 - 2^54 + 2^51 - 2^49 - 2^46 + 2^40 - 2^33 + 2^30 - 2^27 + 2^22 - 2^20 + 2^18 - 2^15 - 2^13 - 2^11 + 2^6"
"znprimroot": 17
- "n": 1152920198936788993
"n_hex": "0xffffed000000001"
"n_bit": "2^60 - 2^40 - 2^38 + 2^36 + 1"
"n_fac": "2^36 * 3^2 * 613 * 3041 + 1"
"nd": 1152920198936788991
"nd_hex": "0xffffecfffffffff"
"nd_bit": "2^60 - 2^40 - 2^38 + 2^36 - 1"
"r2": 777714054980005888
"r2_hex": "0xacafecfffe97000"
"r2_bit": "2^60 - 2^58 - 2^56 - 2^54 + 2^52 - 2^50 - 2^48 - 2^40 - 2^38 + 2^36 - 2^21 + 2^19 + 2^17 - 2^15 - 2^12"
"znprimroot": 5
- "n": 1152915251134464001
"n_hex": "0xffffa5000000001"
"n_bit": "2^60 - 2^43 + 2^41 + 2^38 + 2^36 + 1"
"n_fac": "2^36 * 3^4 * 5^3 * 1657 + 1"
"nd": 1152915251134463999
"nd_hex": "0xffffa4fffffffff"
"nd_bit": "2^60 - 2^43 + 2^41 + 2^38 + 2^36 - 1"
"r2": 1127876210240155466
"r2_hex": "0xfa7056ffdfa6f4a"
"r2_bit": "2^60 - 2^55 + 2^53 + 2^51 - 2^48 + 2^43 - 2^41 - 2^39 - 2^36 - 2^25 - 2^19 + 2^17 + 2^15 - 2^12 - 2^8 + 2^6 + 2^3 + 2"
"znprimroot": 11
- "n": 1152401916643246081
"n_hex": "0xffe277000000001"
"n_bit": "2^60 - 2^49 + 2^45 + 2^43 - 2^39 - 2^36 + 1"
"n_fac": "2^36 * 3^2 * 5 * 7 * 139 * 383 + 1"
"nd": 1152401916643246079
"nd_hex": "0xffe276fffffffff"
"nd_bit": "2^60 - 2^49 + 2^45 + 2^43 - 2^39 - 2^36 - 1"
"r2": 153084700947116504
"r2_hex": "0x21fddb9747ff1d8"
"r2_bit": "2^57 + 2^53 - 2^45 - 2^41 - 2^38 - 2^35 + 2^33 - 2^31 - 2^28 + 2^26 + 2^23 - 2^12 + 2^9 - 2^5 - 2^3"
"znprimroot": 13
- "n": 1152921092289986561
"n_hex": "0xfffffa000000001"
"n_bit": "2^60 - 2^39 + 2^37 + 1"
"n_fac": "2^37 * 5 * 1677721 + 1"
"nd": 1152921092289986559
"nd_hex": "0xfffff9fffffffff"
"nd_bit": "2^60 - 2^39 + 2^37 - 1"
"r2": 60797770335633409
"r2_hex": "0xd7ff3ffffdc001"
"r2_bit": "2^56 - 2^53 - 2^51 - 2^40 + 2^38 - 2^17 - 2^14 + 1"
"znprimroot": 3
- "n": 1152916694243475457
"n_hex": "0xffffba000000001"
"n_bit": "2^60 - 2^42 - 2^39 + 2^37 + 1"
"n_fac": "2^37 * 3 * 719 * 3889 + 1"
"nd": 1152916694243475455
"nd_hex": "0xffffb9fffffffff"
"nd_bit": "2^60 - 2^42 - 2^39 + 2^37 - 1"
"r2": 853821768799731630
"r2_hex": "0xbd9625ffecdbfae"
"r2_bit": "2^60 - 2^58 - 2^53 - 2^51 + 2^49 - 2^47 - 2^45 + 2^41 + 2^39 - 2^37 - 2^24 - 2^22 + 2^20 - 2^17 - 2^14 - 2^6 - 2^4 - 2"
"znprimroot": 5
- "n": 1152908447906267137
"n_hex": "0xffff42000000001"
"n_bit": "2^60 - 2^44 + 2^42 + 2^37 + 1"
"n_fac": "2^37 * 3^2 * 7 * 47 * 2833 + 1"
"nd": 1152908447906267135
"nd_hex": "0xffff41fffffffff"
"nd_bit": "2^60 - 2^44 + 2^42 + 2^37 - 1"
"r2": 668097349749291383
"r2_hex": "0x9458efff72fb977"
"r2_bit": "2^59 + 2^56 + 2^54 + 2^51 - 2^49 - 2^47 + 2^44 - 2^40 - 2^27 - 2^24 + 2^22 - 2^20 - 2^14 - 2^11 + 2^9 - 2^7 - 2^3 - 1"
"znprimroot": 11
- "n": 1152885358162083841
"n_hex": "0xfffdf2000000001"
"n_bit": "2^60 - 2^45 - 2^40 + 2^37 + 1"
"n_fac": "2^37 * 3 * 5 * 7 * 79889 + 1"
"nd": 1152885358162083839
"nd_hex": "0xfffdf1fffffffff"
"nd_bit": "2^60 - 2^45 - 2^40 + 2^37 - 1"
"r2": 327232114039928118
"r2_hex": "0x48a8fdfbc733536"
"r2_bit": "2^58 + 2^55 + 2^51 + 2^49 + 2^47 + 2^44 - 2^37 - 2^30 - 2^26 + 2^23 - 2^20 + 2^18 - 2^16 + 2^14 - 2^12 + 2^10 + 2^8 + 2^6 - 2^3 - 2"
"znprimroot": 19
- "n": 1152670953394667521
"n_hex": "0xfff1c2000000001"
"n_bit": "2^60 - 2^48 + 2^45 - 2^42 + 2^37 + 1"
"n_fac": "2^37 * 3^2 * 5 * 11 * 16943 + 1"
"nd": 1152670953394667519
"nd_hex": "0xfff1c1fffffffff"
"nd_bit": "2^60 - 2^48 + 2^45 - 2^42 + 2^37 - 1"
"r2": 859609406128203729
"r2_hex": "0xbedf23351db27d1"
"r2_bit": "2^60 - 2^58 - 2^52 - 2^49 - 2^44 + 2^41 + 2^38 - 2^36 + 2^34 - 2^32 + 2^30 + 2^28 + 2^25 - 2^21 - 2^18 - 2^16 + 2^13 + 2^11 - 2^6 + 2^4 + 1"
"znprimroot": 14
- "n": 1152912983391731713
"n_hex": "0xffff84000000001"
"n_bit": "2^60 - 2^43 + 2^38 + 1"
"n_fac": "2^38 * 3 * 1398091 + 1"
"nd": 1152912983391731711
"nd_hex": "0xffff83fffffffff"
"nd_bit": "2^60 - 2^43 + 2^38 - 1"
"r2": 562391676329328176
"r2_hex": "0x7ce043ffc3efe30"
"r2_bit": "2^59 - 2^54 + 2^52 - 2^49 + 2^42 + 2^38 - 2^26 + 2^22 - 2^16 - 2^9 + 2^6 - 2^4"
"znprimroot": 5
- "n": 1152865154635923457
"n_hex": "0xfffccc000000001"
"n_bit": "2^60 - 2^46 + 2^44 - 2^42 + 2^40 - 2^38 + 1"
"n_fac": "2^38 * 3^4 * 7 * 13 * 569 + 1"
"nd": 1152865154635923455
"nd_hex": "0xfffccbfffffffff"
"nd_bit": "2^60 - 2^46 + 2^44 - 2^42 + 2^40 - 2^38 - 1"
"r2": 1046324674173399592
"r2_hex": "0xe854abf5bd4f228"
"r2_bit": "2^60 - 2^57 + 2^55 + 2^50 + 2^48 + 2^46 + 2^44 - 2^42 - 2^40 - 2^38 - 2^31 - 2^29 - 2^26 - 2^22 + 2^20 + 2^18 + 2^16 - 2^12 + 2^9 + 2^5 + 2^3"
"znprimroot": 5
- "n": 1152668891810365441
"n_hex": "0xfff1a4000000001"
"n_bit": "2^60 - 2^48 + 2^45 - 2^43 + 2^41 + 2^38 + 1"
"n_fac": "2^38 * 3 * 5 * 7 * 39937 + 1"
"nd": 1152668891810365439
"nd_hex": "0xfff1a3fffffffff"
"nd_bit": "2^60 - 2^48 + 2^45 - 2^43 + 2^41 + 2^38 - 1"
"r2": 1012694409163434264
"r2_hex": "0xe0dd0331c35e918"
"r2_bit": "2^60 - 2^57 + 2^52 - 2^49 - 2^46 + 2^44 + 2^38 - 2^36 + 2^34 - 2^32 + 2^29 - 2^26 + 2^22 - 2^19 - 2^17 - 2^13 + 2^11 + 2^8 + 2^5 - 2^3"
"znprimroot": 13
- "n": 1152919855339405313
"n_hex": "0xffffe8000000001"
"n_bit": "2^60 - 2^41 + 2^39 + 1"
"n_fac": "2^39 * 773 * 2713 + 1"
"nd": 1152919855339405311
"nd_hex": "0xffffe7fffffffff"
"nd_bit": "2^60 - 2^41 + 2^39 - 1"
"r2": 432347213492649982
"r2_hex": "0x600017fffdbfffe"
"r2_bit": "2^59 - 2^57 + 2^41 - 2^39 - 2^21 - 2^18 - 2"
"znprimroot": 3
- "n": 1152895666083594241
"n_hex": "0xfffe88000000001"
"n_bit": "2^60 - 2^45 + 2^43 + 2^39 + 1"
"n_fac": "2^39 * 3 * 5 * 251 * 557 + 1"
"nd": 1152895666083594239
"nd_hex": "0xfffe87fffffffff"
"nd_bit": "2^60 - 2^45 + 2^43 + 2^39 - 1"
"r2": 191165489072557391
"r2_hex": "0x2a727ffdd7bcd4f"
"r2_bit": "2^57 + 2^55 + 2^53 + 2^51 - 2^48 + 2^45 + 2^43 - 2^29 - 2^25 - 2^23 - 2^18 - 2^14 + 2^12 - 2^10 + 2^8 + 2^6 + 2^4 - 1"
"znprimroot": 22
- "n": 1152832993920811009
"n_hex": "0xfffaf8000000001"
"n_bit": "2^60 - 2^46 - 2^44 - 2^39 + 1"
"n_fac": "2^39 * 3^2 * 13 * 17923 + 1"
"nd": 1152832993920811007
"nd_hex": "0xfffaf7fffffffff"
"nd_bit": "2^60 - 2^46 - 2^44 - 2^39 - 1"
"r2": 203102880598854173
"r2_hex": "0x2d190fe6af40a1d"
"r2_bit": "2^58 - 2^56 - 2^54 + 2^52 + 2^49 - 2^47 + 2^44 + 2^40 - 2^33 + 2^31 - 2^28 - 2^26 - 2^24 - 2^20 + 2^18 + 2^11 + 2^9 + 2^5 - 2^2 + 1"
"znprimroot": 23
- "n": 1152582305269678081
"n_hex": "0xffecb8000000001"
"n_bit": "2^60 - 2^48 - 2^46 + 2^44 - 2^42 - 2^39 + 1"
"n_fac": "2^39 * 3 * 5 * 7 * 41 * 487 + 1"
"nd": 1152582305269678079
"nd_hex": "0xffecb7fffffffff"
"nd_bit": "2^60 - 2^48 - 2^46 + 2^44 - 2^42 - 2^39 - 1"
"r2": 941606814795684930
"r2_hex": "0xd114268c1fbdc42"
"r2_bit": "2^60 - 2^58 + 2^56 + 2^52 + 2^48 + 2^46 + 2^41 + 2^39 - 2^37 + 2^35 + 2^32 - 2^30 + 2^25 - 2^18 - 2^13 - 2^10 + 2^6 + 2"
"znprimroot": 13
- "n": 1152524580909219841
"n_hex": "0xffe970000000001"
"n_bit": "2^60 - 2^49 + 2^47 + 2^45 - 2^43 - 2^40 + 1"
"n_fac": "2^40 * 3 * 5 * 7 * 67 * 149 + 1"
"nd": 1152524580909219839
"nd_hex": "0xffe96ffffffffff"
"nd_bit": "2^60 - 2^49 + 2^47 + 2^45 - 2^43 - 2^40 - 1"
"r2": 420990770948989886
"r2_hex": "0x5d7a8e02c21e3be"
"r2_bit": "2^59 - 2^57 - 2^53 - 2^51 - 2^47 + 2^45 + 2^43 + 2^40 - 2^37 + 2^30 - 2^28 - 2^26 + 2^21 + 2^17 - 2^13 + 2^10 - 2^6 - 2"
"znprimroot": 19
- "n": 1152293683467386881
"n_hex": "0xffdc50000000001"
"n_bit": "2^60 - 2^49 - 2^46 + 2^42 + 2^40 + 1"
"n_fac": "2^40 * 3^3 * 5 * 7 * 1109 + 1"
"nd": 1152293683467386879
"nd_hex": "0xffdc4ffffffffff"
"nd_bit": "2^60 - 2^49 - 2^46 + 2^42 + 2^40 - 1"
"r2": 485295503132965765
"r2_hex": "0x6bc1db05b55bb85"
"r2_bit": "2^59 - 2^56 - 2^54 - 2^50 + 2^45 - 2^41 - 2^38 - 2^36 + 2^31 - 2^29 - 2^26 - 2^23 - 2^21 - 2^19 - 2^17 - 2^14 - 2^10 - 2^7 + 2^2 + 1"
"znprimroot": 13
- "n": 1152914907537080321
"n_hex": "0xffffa0000000001"
"n_bit": "2^60 - 2^43 + 2^41 + 1"
"n_fac": "2^41 * 5 * 23 * 47 * 97 + 1"
"nd": 1152914907537080319
"nd_hex": "0xffff9ffffffffff"
"nd_bit": "2^60 - 2^43 + 2^41 - 1"
"r2": 1411772892315433
"r2_hex": "0x503fffdbfff29"
"r2_bit": "2^50 + 2^48 + 2^42 - 2^25 - 2^22 - 2^8 + 2^5 + 2^3 + 1"
"znprimroot": 3
- "n": 1152541073583636481
"n_hex": "0xffea60000000001"
"n_bit": "2^60 - 2^49 + 2^47 + 2^45 + 2^43 - 2^41 + 1"
"n_fac": "2^41 * 3^2 * 5 * 19 * 613 + 1"
"nd": 1152541073583636479
"nd_hex": "0xffea5ffffffffff"
"nd_bit": "2^60 - 2^49 + 2^47 + 2^45 + 2^43 - 2^41 - 1"
"r2": 571090611940605681
"r2_hex": "0x7ecebe2c347bef1"
"r2_bit": "2^59 - 2^52 - 2^50 + 2^48 - 2^44 - 2^42 - 2^37 + 2^34 - 2^32 - 2^30 + 2^26 - 2^24 + 2^22 + 2^19 - 2^14 - 2^8 - 2^4 + 1"
"znprimroot": 21
- "n": 1139478875445657601
"n_hex": "0xfd03e0000000001"
"n_bit": "2^60 - 2^54 + 2^52 + 2^46 - 2^41 + 1"
"n_fac": "2^41 * 3^2 * 5^2 * 7^2 * 47 + 1"
"nd": 1139478875445657599
"nd_hex": "0xfd03dffffffffff"
"nd_bit": "2^60 - 2^54 + 2^52 + 2^46 - 2^41 - 1"
"r2": 221914176489734692
"r2_hex": "0x31465c48c4b4224"
"r2_bit": "2^58 - 2^56 + 2^52 + 2^50 + 2^47 - 2^45 + 2^43 - 2^41 - 2^38 + 2^34 + 2^31 + 2^28 - 2^26 + 2^22 + 2^20 - 2^18 - 2^16 + 2^14 + 2^9 + 2^5 + 2^2"
"znprimroot": 17
- "n": 1152855533909180417
"n_hex": "0xfffc40000000001"
"n_bit": "2^60 - 2^46 + 2^42 + 1"
"n_fac": "2^42 * 7 * 37447 + 1"
"nd": 1152855533909180415
"nd_hex": "0xfffc3ffffffffff"
"nd_bit": "2^60 - 2^46 + 2^42 - 1"
"r2": 415272343896372277
"r2_hex": "0x5c357ff1efcb435"
"r2_bit": "2^59 - 2^57 - 2^54 + 2^50 - 2^47 - 2^45 - 2^43 - 2^32 + 2^29 - 2^24 - 2^18 + 2^16 - 2^14 - 2^12 + 2^10 + 2^6 - 2^4 + 2^2 + 1"
"znprimroot": 3
- "n": 1152706000327802881
"n_hex": "0xfff3c0000000001"
"n_bit": "2^60 - 2^48 + 2^46 - 2^42 + 1"
"n_fac": "2^42 * 3 * 5 * 101 * 173 + 1"
"nd": 1152706000327802879
"nd_hex": "0xfff3bffffffffff"
"nd_bit": "2^60 - 2^48 + 2^46 - 2^42 - 1"
"r2": 789453706500052546
"r2_hex": "0xaf4b3f69e8d1642"
"r2_bit": "2^60 - 2^58 - 2^56 - 2^52 + 2^50 + 2^48 - 2^46 - 2^44 + 2^42 - 2^35 - 2^33 + 2^31 + 2^29 - 2^25 + 2^23 + 2^20 - 2^18 + 2^16 + 2^13 - 2^11 - 2^9 + 2^6 + 2"
"znprimroot": 58
- "n": 1152521282374336513
"n_hex": "0xffe940000000001"
"n_bit": "2^60 - 2^49 + 2^47 + 2^44 + 2^42 + 1"
"n_fac": "2^42 * 3^2 * 11 * 2647 + 1"
"nd": 1152521282374336511
"nd_hex": "0xffe93ffffffffff"
"nd_bit": "2^60 - 2^49 + 2^47 + 2^44 + 2^42 - 1"
"r2": 860833902684526038
"r2_hex": "0xbf24bdfa41fd5d6"
"r2_bit": "2^60 - 2^58 - 2^52 + 2^49 + 2^46 + 2^44 - 2^42 - 2^37 - 2^31 + 2^29 + 2^26 + 2^21 - 2^13 - 2^11 - 2^9 - 2^5 - 2^3 - 2"
"znprimroot": 5
- "n": 1123546951959183361
"n_hex": "0xf97a40000000001"
"n_bit": "2^60 - 2^55 + 2^53 - 2^51 - 2^47 + 2^45 + 2^42 + 1"
"n_fac": "2^42 * 3^2 * 5 * 7 * 811 + 1"
"nd": 1123546951959183359
"nd_hex": "0xf97a3ffffffffff"
"nd_bit": "2^60 - 2^55 + 2^53 - 2^51 - 2^47 + 2^45 + 2^42 - 1"
"r2": 1065696723839433157
"r2_hex": "0xeca1d8626bf39c5"
"r2_bit": "2^60 - 2^56 - 2^54 + 2^51 + 2^49 + 2^45 - 2^41 - 2^39 + 2^35 - 2^33 + 2^29 + 2^27 - 2^24 - 2^22 - 2^16 + 2^14 - 2^11 + 2^9 - 2^6 + 2^2 + 1"
"znprimroot": 53
- "n": 1151769216420937729
"n_hex": "0xffbe80000000001"
"n_bit": "2^60 - 2^50 - 2^45 + 2^43 + 1"
"n_fac": "2^43 * 3^2 * 14549 + 1"
"nd": 1151769216420937727
"nd_hex": "0xffbe7ffffffffff"
"nd_bit": "2^60 - 2^50 - 2^45 + 2^43 - 1"
"r2": 256923928278284236
"r2_hex": "0x390c6f3975337cc"
"r2_bit": "2^58 - 2^55 + 2^52 + 2^48 - 2^46 + 2^43 - 2^40 - 2^36 + 2^34 - 2^31 + 2^29 - 2^27 - 2^24 + 2^22 + 2^20 + 2^18 - 2^16 + 2^14 - 2^11 - 2^6 + 2^4 - 2^2"
"znprimroot": 7
- "n": 1150133143118807041
"n_hex": "0xff6180000000001"
"n_bit": "2^60 - 2^51 - 2^49 + 2^45 - 2^43 + 1"
"n_fac": "2^43 * 3 * 5 * 23 * 379 + 1"
"nd": 1150133143118807039
"nd_hex": "0xff617ffffffffff"
"nd_bit": "2^60 - 2^51 - 2^49 + 2^45 - 2^43 - 1"
"r2": 192082319367036057
"r2_hex": "0x2aa69da0d815c99"
"r2_bit": "2^57 + 2^55 + 2^53 + 2^51 + 2^49 + 2^47 - 2^45 + 2^43 + 2^41 - 2^37 - 2^35 + 2^33 + 2^28 - 2^25 - 2^23 + 2^17 - 2^15 - 2^13 - 2^10 + 2^7 + 2^5 - 2^3 + 1"
"znprimroot": 11
- "n": 1140633362654822401
"n_hex": "0xfd4580000000001"
"n_bit": "2^60 - 2^54 + 2^52 + 2^50 + 2^47 - 2^45 - 2^43 + 1"
"n_fac": "2^43 * 3 * 5^2 * 7 * 13 * 19 + 1"
"nd": 1140633362654822399
"nd_hex": "0xfd457ffffffffff"
"nd_bit": "2^60 - 2^54 + 2^52 + 2^50 + 2^47 - 2^45 - 2^43 - 1"
"r2": 888079499979577237
"r2_hex": "0xc5317999896d795"
"r2_bit": "2^60 - 2^58 + 2^54 + 2^52 + 2^50 - 2^48 + 2^45 - 2^43 - 2^39 + 2^37 - 2^35 + 2^33 - 2^31 + 2^29 - 2^27 + 2^23 + 2^21 - 2^19 - 2^16 - 2^13 - 2^11 - 2^7 + 2^4 + 2^2 + 1"
"znprimroot": 17
- "n": 1152059487490670593
"n_hex": "0xffcf00000000001"
"n_bit": "2^60 - 2^50 + 2^48 - 2^44 + 1"
"n_fac": "2^44 * 3 * 83 * 263 + 1"
"nd": 1152059487490670591
"nd_hex": "0xffcefffffffffff"
"nd_bit": "2^60 - 2^50 + 2^48 - 2^44 - 1"
"r2": 751097738170560392
"r2_hex": "0xa6c6f69d3416f88"
"r2_bit": "2^59 + 2^57 + 2^55 - 2^52 - 2^50 + 2^47 - 2^44 - 2^39 - 2^37 + 2^35 + 2^33 - 2^30 + 2^28 + 2^26 - 2^24 + 2^22 + 2^17 - 2^15 - 2^12 - 2^7 + 2^3"
"znprimroot": 10
- "n": 1150898403211739137
"n_hex": "0xff8d00000000001"
"n_bit": "2^60 - 2^51 + 2^48 - 2^46 + 2^44 + 1"
"n_fac": "2^44 * 3^3 * 2423 + 1"
"nd": 1150898403211739135
"nd_hex": "0xff8cfffffffffff"
"nd_bit": "2^60 - 2^51 + 2^48 - 2^46 + 2^44 - 1"
"r2": 661216348366059673
"r2_hex": "0x92d1cc3fc0a3899"
"r2_bit": "2^59 + 2^56 + 2^54 - 2^52 - 2^50 + 2^48 + 2^45 - 2^42 + 2^40 - 2^38 + 2^34 - 2^26 + 2^19 + 2^17 + 2^14 - 2^11 + 2^7 + 2^5 - 2^3 + 1"
"znprimroot": 10
- "n": 1151267839118671873
"n_hex": "0xffa200000000001"
"n_bit": "2^60 - 2^51 + 2^49 + 2^45 + 1"
"n_fac": "2^45 * 3 * 13 * 839 + 1"
"nd": 1151267839118671871
"nd_hex": "0xffa1fffffffffff"
"nd_bit": "2^60 - 2^51 + 2^49 + 2^45 - 1"
"r2": 120468914729512799
"r2_hex": "0x1abfdd6f4edef5f"
"r2_bit": "2^57 - 2^54 - 2^52 - 2^50 - 2^41 - 2^37 - 2^35 - 2^32 - 2^28 + 2^26 + 2^24 - 2^20 - 2^17 - 2^12 - 2^7 - 2^5 - 1"
"znprimroot": 5
- "n": 1149754911118852097
"n_hex": "0xff4c00000000001"
"n_bit": "2^60 - 2^52 + 2^50 + 2^48 - 2^46 + 1"
"n_fac": "2^46 * 16339 + 1"
"nd": 1149754911118852095
"nd_hex": "0xff4bfffffffffff"
"nd_bit": "2^60 - 2^52 + 2^50 + 2^48 - 2^46 - 1"
"r2": 629721170383478038
"r2_hex": "0x8bd38116c401d16"
"r2_bit": "2^59 + 2^56 - 2^54 - 2^50 + 2^48 + 2^46 - 2^43 + 2^36 + 2^33 - 2^31 - 2^28 - 2^26 + 2^22 + 2^13 - 2^10 + 2^8 + 2^5 - 2^3 - 2"
"znprimroot": 3
- "n": 1149473436142141441
"n_hex": "0xff3c00000000001"
"n_bit": "2^60 - 2^52 + 2^50 - 2^46 + 1"
"n_fac": "2^46 * 3^3 * 5 * 11^2 + 1"
"nd": 1149473436142141439
"nd_hex": "0xff3bfffffffffff"
"nd_bit": "2^60 - 2^52 + 2^50 - 2^46 - 1"
"r2": 240369286960929575
"r2_hex": "0x355f697cc385b27"
"r2_bit": "2^58 - 2^55 - 2^53 - 2^51 - 2^49 - 2^43 - 2^41 + 2^39 + 2^37 - 2^35 - 2^30 + 2^28 - 2^26 + 2^22 - 2^19 + 2^15 - 2^13 - 2^10 - 2^8 + 2^5 + 2^3 - 1"
"znprimroot": 13
- "n": 1100919002659553281
"n_hex": "0xf47400000000001"
"n_bit": "2^60 - 2^56 + 2^54 + 2^51 - 2^48 + 2^46 + 1"
"n_fac": "2^46 * 3 * 5 * 7 * 149 + 1"
"nd": 1100919002659553279
"nd_hex": "0xf473fffffffffff"
"nd_bit": "2^60 - 2^56 + 2^54 + 2^51 - 2^48 + 2^46 - 1"
"r2": 470140119713806955
"r2_hex": "0x68645f2ae337a6b"
"r2_bit": "2^59 - 2^57 + 2^55 + 2^51 - 2^49 + 2^46 + 2^43 - 2^41 - 2^36 + 2^34 - 2^32 - 2^30 - 2^28 - 2^25 + 2^22 - 2^20 + 2^18 - 2^15 - 2^11 + 2^9 + 2^7 - 2^4 - 2^2 - 1"
"znprimroot": 11
- "n": 1086141566382243841
"n_hex": "0xf12c00000000001"
"n_bit": "2^60 - 2^56 + 2^52 + 2^50 - 2^48 - 2^46 + 1"
"n_fac": "2^46 * 3^2 * 5 * 7^3 + 1"
"nd": 1086141566382243839
"nd_hex": "0xf12bfffffffffff"
"nd_bit": "2^60 - 2^56 + 2^52 + 2^50 - 2^48 - 2^46 - 1"
"r2": 1037421908820760786
"r2_hex": "0xe65a9bac57818d2"
"r2_bit": "2^60 - 2^57 + 2^55 - 2^53 + 2^51 - 2^49 - 2^47 + 2^45 + 2^43 + 2^41 - 2^38 - 2^34 - 2^32 - 2^30 + 2^27 - 2^25 - 2^23 - 2^19 + 2^13 - 2^11 + 2^8 - 2^6 + 2^4 + 2"
"znprimroot": 17
- "n": 1149684542374674433
"n_hex": "0xff4800000000001"
"n_bit": "2^60 - 2^52 + 2^50 + 2^47 + 1"
"n_fac": "2^47 * 3 * 7 * 389 + 1"
"nd": 1149684542374674431
"nd_hex": "0xff47fffffffffff"
"nd_bit": "2^60 - 2^52 + 2^50 + 2^47 - 1"
"r2": 17442334817372955
"r2_hex": "0x3df7b60ad7cb1b"
"r2_bit": "2^54 - 2^49 - 2^43 - 2^38 - 2^35 - 2^33 + 2^28 - 2^26 - 2^24 - 2^21 - 2^19 - 2^14 + 2^12 - 2^10 - 2^8 + 2^5 - 2^2 - 1"
"znprimroot": 5
- "n": 1125196219400847361
"n_hex": "0xf9d800000000001"
"n_bit": "2^60 - 2^55 + 2^53 - 2^49 - 2^47 + 1"
"n_fac": "2^47 * 3 * 5 * 13 * 41 + 1"
"nd": 1125196219400847359
"nd_hex": "0xf9d7fffffffffff"
"nd_bit": "2^60 - 2^55 + 2^53 - 2^49 - 2^47 - 1"
"r2": 1096787772070322177
"r2_hex": "0xf3892aaec3e6001"
"r2_bit": "2^60 - 2^56 + 2^54 - 2^51 + 2^47 + 2^44 + 2^42 - 2^40 - 2^38 - 2^36 - 2^34 - 2^32 - 2^28 - 2^26 + 2^22 - 2^17 + 2^15 - 2^13 + 1"
"znprimroot": 7
- "n": 398990779487354881
"n_hex": "0x589800000000001"
"n_bit": "2^59 - 2^57 - 2^55 + 2^51 + 2^49 - 2^47 + 1"
"n_fac": "2^47 * 3^4 * 5 * 7 + 1"
"nd": 398990779487354879
"nd_hex": "0x5897fffffffffff"
"nd_bit": "2^59 - 2^57 - 2^55 + 2^51 + 2^49 - 2^47 - 1"
"r2": 392719943934777578
"r2_hex": "0x57338b5527198ea"
"r2_bit": "2^59 - 2^57 - 2^55 - 2^52 + 2^50 - 2^48 + 2^46 - 2^43 + 2^40 - 2^38 - 2^36 + 2^34 + 2^32 + 2^30 + 2^28 + 2^25 + 2^23 - 2^20 + 2^17 - 2^15 + 2^13 - 2^11 + 2^8 - 2^5 + 2^3 + 2"
"znprimroot": 11
- "n": 1147010530095923201
"n_hex": "0xfeb000000000001"
"n_bit": "2^60 - 2^52 - 2^50 - 2^48 + 1"
"n_fac": "2^48 * 5^2 * 163 + 1"
"nd": 1147010530095923199
"nd_hex": "0xfeaffffffffffff"
"nd_bit": "2^60 - 2^52 - 2^50 - 2^48 - 1"
"r2": 1021442229019233350
"r2_hex": "0xe2ce44ba3464c46"
"r2_bit": "2^60 - 2^57 + 2^54 - 2^52 - 2^50 + 2^48 - 2^45 + 2^42 + 2^38 + 2^36 - 2^34 - 2^31 + 2^29 + 2^26 - 2^24 + 2^22 + 2^19 - 2^17 + 2^14 + 2^12 - 2^10 + 2^6 + 2^3 - 2"
"znprimroot": 3
- "n": 1137440380887760897
"n_hex": "0xfc9000000000001"
"n_bit": "2^60 - 2^54 + 2^51 + 2^48 + 1"
"n_fac": "2^48 * 3^2 * 449 + 1"
"nd": 1137440380887760895
"nd_hex": "0xfc8ffffffffffff"
"nd_bit": "2^60 - 2^54 + 2^51 + 2^48 - 1"
"r2": 181903604214261710
"r2_hex": "0x286405d408de7ce"
"r2_bit": "2^57 + 2^55 + 2^51 - 2^49 + 2^46 + 2^39 - 2^37 - 2^34 + 2^32 + 2^30 + 2^23 + 2^20 - 2^17 - 2^13 + 2^11 - 2^6 + 2^4 - 2"
"znprimroot": 7
- "n": 1076641785918259201
"n_hex": "0xef1000000000001"
"n_bit": "2^60 - 2^56 - 2^52 + 2^48 + 1"
"n_fac": "2^48 * 3^2 * 5^2 * 17 + 1"
"nd": 1076641785918259199
"nd_hex": "0xef0ffffffffffff"
"nd_bit": "2^60 - 2^56 - 2^52 + 2^48 - 1"
"r2": 488302716009416825
"r2_hex": "0x6c6ccbbaa998879"
"r2_bit": "2^59 - 2^56 - 2^54 + 2^51 - 2^48 - 2^46 + 2^44 - 2^42 + 2^40 - 2^38 - 2^34 - 2^31 + 2^29 + 2^27 + 2^25 + 2^23 + 2^21 - 2^19 + 2^17 - 2^15 + 2^11 + 2^7 - 2^3 + 1"
"znprimroot": 19
- "n": 857091304083947521
"n_hex": "0xbe5000000000001"
"n_bit": "2^60 - 2^58 - 2^53 + 2^50 + 2^48 + 1"
"n_fac": "2^48 * 3 * 5 * 7 * 29 + 1"
"nd": 857091304083947519
"nd_hex": "0xbe4ffffffffffff"
"nd_bit": "2^60 - 2^58 - 2^53 + 2^50 + 2^48 - 1"
"r2": 488708409367040566
"r2_hex": "0x6c83db583119236"
"r2_bit": "2^59 - 2^56 - 2^54 + 2^51 + 2^46 - 2^41 - 2^38 - 2^35 - 2^33 - 2^31 + 2^26 - 2^24 + 2^20 + 2^17 - 2^15 + 2^12 + 2^9 + 2^6 - 2^3 - 2"
"znprimroot": 11
- "n": 265993852991569921
"n_hex": "0x3b1000000000001"
"n_bit": "2^58 - 2^54 - 2^52 + 2^48 + 1"
"n_fac": "2^48 * 3^3 * 5 * 7 + 1"
"nd": 265993852991569919
"nd_hex": "0x3b0ffffffffffff"
"nd_bit": "2^58 - 2^54 - 2^52 + 2^48 - 1"
"r2": 56951472430671204
"r2_hex": "0xca550ffbaa6564"
"r2_bit": "2^56 - 2^54 + 2^51 + 2^49 + 2^46 + 2^44 + 2^42 + 2^40 + 2^36 - 2^26 - 2^23 + 2^21 + 2^19 + 2^17 + 2^15 - 2^13 + 2^11 - 2^9 - 2^7 - 2^5 + 2^2"
"znprimroot": 17
- "n": 1102818958752350209
"n_hex": "0xf4e000000000001"
"n_bit": "2^60 - 2^56 + 2^54 + 2^52 - 2^49 + 1"
"n_fac": "2^49 * 3 * 653 + 1"
"nd": 1102818958752350207
"nd_hex": "0xf4dffffffffffff"
"nd_bit": "2^60 - 2^56 + 2^54 + 2^52 - 2^49 - 1"
"r2": 613028073167569458
"r2_hex": "0x881e9c8da7ec232"
"r2_bit": "2^59 + 2^55 + 2^49 - 2^45 + 2^43 + 2^41 - 2^38 + 2^35 + 2^32 - 2^29 - 2^27 + 2^25 + 2^23 - 2^16 - 2^14 + 2^9 + 2^6 - 2^4 + 2"
"znprimroot": 7
- "n": 1055531162664960001
"n_hex": "0xea6000000000001"
"n_bit": "2^60 - 2^57 + 2^55 + 2^53 + 2^51 - 2^49 + 1"
"n_fac": "2^49 * 3 * 5^4 + 1"
"nd": 1055531162664959999
"nd_hex": "0xea5ffffffffffff"
"nd_bit": "2^60 - 2^57 + 2^55 + 2^53 + 2^51 - 2^49 - 1"
"r2": 484721226933985854
"r2_hex": "0x6ba1363427de23e"
"r2_bit": "2^59 - 2^56 - 2^54 - 2^51 + 2^49 + 2^44 + 2^42 - 2^39 - 2^37 + 2^34 - 2^32 + 2^30 + 2^25 + 2^23 - 2^17 - 2^13 + 2^9 + 2^6 - 2"
"znprimroot": 13
- "n": 937311672446484481
"n_hex": "0xd02000000000001"
"n_bit": "2^60 - 2^58 + 2^56 + 2^49 + 1"
"n_fac": "2^49 * 3^2 * 5 * 37 + 1"
"nd": 937311672446484479
"nd_hex": "0xd01ffffffffffff"
"nd_bit": "2^60 - 2^58 + 2^56 + 2^49 - 1"
"r2": 925432583159094467
"r2_hex": "0xcd7cc07fec51cc3"
"r2_bit": "2^60 - 2^58 + 2^56 - 2^53 - 2^51 - 2^46 + 2^44 - 2^42 + 2^35 - 2^24 - 2^22 + 2^18 + 2^16 + 2^13 - 2^10 + 2^8 - 2^6 + 2^2 - 1"
"znprimroot": 7
- "n": 59109745109237761
"n_hex": "0xd2000000000001"
"n_bit": "2^56 - 2^54 + 2^52 + 2^49 + 1"
"n_fac": "2^49 * 3 * 5 * 7 + 1"
"nd": 59109745109237759
"nd_hex": "0xd1ffffffffffff"
"nd_bit": "2^56 - 2^54 + 2^52 + 2^49 - 1"
"r2": 4080046805272937
"r2_hex": "0xe7ec7ec7ec969"
"r2_bit": "2^52 - 2^49 + 2^47 - 2^40 - 2^38 + 2^35 - 2^28 - 2^26 + 2^23 - 2^16 - 2^14 + 2^11 + 2^9 - 2^7 - 2^5 + 2^3 + 1"
"znprimroot": 17
- "n": 1043709213643112449
"n_hex": "0xe7c000000000001"
"n_bit": "2^60 - 2^57 + 2^55 - 2^50 + 1"
"n_fac": "2^50 * 3^2 * 103 + 1"
"nd": 1043709213643112447
"nd_hex": "0xe7bffffffffffff"
"nd_bit": "2^60 - 2^57 + 2^55 - 2^50 - 1"
"r2": 254284554688556947
"r2_hex": "0x38766748a146f93"
"r2_bit": "2^58 - 2^55 + 2^51 - 2^47 - 2^45 + 2^43 - 2^41 + 2^39 - 2^36 + 2^34 + 2^31 + 2^27 + 2^25 + 2^20 + 2^18 + 2^15 - 2^12 - 2^7 + 2^4 + 2^2 - 1"
"znprimroot": 7
- "n": 861313428734607361
"n_hex": "0xbf4000000000001"
"n_bit": "2^60 - 2^58 - 2^52 + 2^50 + 1"
"n_fac": "2^50 * 3^2 * 5 * 17 + 1"
"nd": 861313428734607359
"nd_hex": "0xbf3ffffffffffff"
"nd_bit": "2^60 - 2^58 - 2^52 + 2^50 - 1"
"r2": 825636383451245208
"r2_hex": "0xb753fea953fea98"
"r2_bit": "2^60 - 2^58 - 2^55 - 2^52 + 2^50 + 2^48 + 2^46 - 2^37 + 2^35 + 2^33 + 2^31 + 2^28 + 2^26 + 2^24 + 2^22 - 2^13 + 2^11 + 2^9 + 2^7 + 2^5 - 2^3"
"znprimroot": 13
- "n": 1146166105165791233
"n_hex": "0xfe8000000000001"
"n_bit": "2^60 - 2^53 + 2^51 + 1"
"n_fac": "2^51 * 509 + 1"
"nd": 1146166105165791231
"nd_hex": "0xfe7ffffffffffff"
"nd_bit": "2^60 - 2^53 + 2^51 - 1"
"r2": 1116852891874085039
"r2_hex": "0xf7fdbc9ae85c8af"
"r2_bit": "2^60 - 2^55 - 2^45 - 2^42 - 2^38 + 2^35 + 2^33 - 2^30 - 2^28 - 2^25 + 2^23 + 2^19 - 2^17 - 2^14 + 2^11 + 2^8 - 2^6 - 2^4 - 1"
"znprimroot": 3
- "n": 1033576114481528833
"n_hex": "0xe58000000000001"
"n_bit": "2^60 - 2^57 + 2^55 - 2^53 - 2^51 + 1"
"n_fac": "2^51 * 3^3 * 17 + 1"
"nd": 1033576114481528831
"nd_hex": "0xe57ffffffffffff"
"nd_bit": "2^60 - 2^57 + 2^55 - 2^53 - 2^51 - 1"
"r2": 393795143887831934
"r2_hex": "0x5770a98d1b5437e"
"r2_bit": "2^59 - 2^57 - 2^55 - 2^51 - 2^48 + 2^43 + 2^41 + 2^39 + 2^37 - 2^35 + 2^32 - 2^30 + 2^28 + 2^25 - 2^22 - 2^20 + 2^18 + 2^16 + 2^14 + 2^10 - 2^7 - 2"
"znprimroot": 7
- "n": 979532918953082881
"n_hex": "0xd98000000000001"
"n_bit": "2^60 - 2^57 - 2^55 + 2^53 - 2^51 + 1"
"n_fac": "2^51 * 3 * 5 * 29 + 1"
"nd": 979532918953082879
"nd_hex": "0xd97ffffffffffff"
"nd_bit": "2^60 - 2^57 - 2^55 + 2^53 - 2^51 - 1"
"r2": 437682588613566447
"r2_hex": "0x612f5fed2af5fef"
"r2_bit": "2^59 - 2^57 + 2^52 + 2^50 - 2^48 - 2^43 - 2^41 - 2^32 - 2^30 + 2^28 + 2^26 - 2^24 - 2^22 - 2^20 - 2^15 - 2^13 - 2^4 - 1"
"znprimroot": 11
- "n": 303992974847508481
"n_hex": "0x438000000000001"
"n_bit": "2^58 + 2^54 - 2^51 + 1"
"n_fac": "2^51 * 3^3 * 5 + 1"
"nd": 303992974847508479
"nd_hex": "0x437ffffffffffff"
"nd_bit": "2^58 + 2^54 - 2^51 - 1"
"r2": 225613661332641974
"r2_hex": "0x3218a6dfc3518b6"
"r2_bit": "2^58 - 2^56 + 2^53 + 2^49 - 2^47 + 2^43 + 2^41 + 2^39 - 2^36 - 2^33 - 2^26 + 2^22 - 2^20 + 2^18 + 2^16 + 2^13 - 2^11 + 2^8 - 2^6 - 2^3 - 2"
"znprimroot": 11
- "n": 1139410705724735489
"n_hex": "0xfd0000000000001"
"n_bit": "2^60 - 2^54 + 2^52 + 1"
"n_fac": "2^52 * 11 * 23 + 1"
"nd": 1139410705724735487
"nd_hex": "0xfcfffffffffffff"
"nd_bit": "2^60 - 2^54 + 2^52 - 1"
"r2": 1026660507939104179
"r2_hex": "0xe3f6e4ae0a1e5b3"
"r2_bit": "2^60 - 2^57 + 2^54 - 2^47 - 2^44 - 2^41 + 2^38 + 2^36 - 2^34 - 2^32 - 2^29 + 2^23 + 2^21 + 2^17 - 2^13 + 2^11 - 2^9 - 2^6 - 2^4 + 2^2 - 1"
"znprimroot": 3
- "n": 1067353111686807553
"n_hex": "0xed0000000000001"
"n_bit": "2^60 - 2^56 - 2^54 + 2^52 + 1"
"n_fac": "2^52 * 3 * 79 + 1"
"nd": 1067353111686807551
"nd_hex": "0xecfffffffffffff"
"nd_bit": "2^60 - 2^56 - 2^54 + 2^52 - 1"
"r2": 650665632239633561
"r2_hex": "0x907a0f1f532c499"
"r2_bit": "2^59 + 2^56 + 2^51 - 2^47 + 2^45 + 2^40 - 2^36 + 2^33 - 2^28 + 2^26 + 2^24 + 2^22 - 2^20 + 2^18 - 2^16 - 2^14 + 2^10 + 2^7 + 2^5 - 2^3 + 1"
"znprimroot": 5
- "n": 891712726219358209
"n_hex": "0xc60000000000001"
"n_bit": "2^60 - 2^58 + 2^55 - 2^53 + 1"
"n_fac": "2^53 * 3^2 * 11 + 1"
"nd": 891712726219358207
"nd_hex": "0xc5fffffffffffff"
"nd_bit": "2^60 - 2^58 + 2^55 - 2^53 - 1"
"r2": 553988245071897985
"r2_hex": "0x7b0295fad40a581"
"r2_bit": "2^59 - 2^54 - 2^52 + 2^45 + 2^43 + 2^41 - 2^39 - 2^37 - 2^30 - 2^28 - 2^26 + 2^24 + 2^22 + 2^15 + 2^13 + 2^11 - 2^9 - 2^7 + 1"
"znprimroot": 7
- "n": 882705526964617217
"n_hex": "0xc40000000000001"
"n_bit": "2^60 - 2^58 + 2^54 + 1"
"n_fac": "2^54 * 7^2 + 1"
"nd": 882705526964617215
"nd_hex": "0xc3fffffffffffff"
"nd_bit": "2^60 - 2^58 + 2^54 - 1"
"r2": 403669582926759562
"r2_hex": "0x59a1f58d0fac68a"
"r2_bit": "2^59 - 2^57 - 2^55 + 2^53 - 2^51 + 2^49 + 2^45 - 2^39 - 2^37 - 2^35 + 2^32 - 2^30 + 2^28 + 2^24 - 2^18 - 2^16 - 2^14 + 2^11 - 2^9 + 2^7 + 2^3 + 2"
"znprimroot": 5
- "n": 180143985094819841
"n_hex": "0x280000000000001"
"n_bit": "2^57 + 2^55 + 1"
"n_fac": "2^55 * 5 + 1"
"nd": 180143985094819839
"nd_hex": "0x27fffffffffffff"
"nd_bit": "2^57 + 2^55 - 1"
"r2": 79263353441720771
"r2_hex": "0x1199999999999c3"
"r2_bit": "2^56 + 2^53 - 2^51 + 2^49 - 2^47 + 2^45 - 2^43 + 2^41 - 2^39 + 2^37 - 2^35 + 2^33 - 2^31 + 2^29 - 2^27 + 2^25 - 2^23 + 2^21 - 2^19 + 2^17 - 2^15 + 2^13 - 2^11 + 2^9 - 2^6 + 2^2 - 1"
"znprimroot": 6
- "r": 61
"primes":
- "n": 2305843009213693951
"n_hex": "0x1fffffffffffffff"
"n_bit": "2^61 - 1"
"n_fac": "2 * 3^2 * 5^2 * 7 * 11 * 13 * 31 * 41 * 61 * 151 * 331 * 1321 + 1"
"nd": 1
"nd_hex": "0x1"
"nd_bit": "1"
"r2": 1
"r2_hex": "0x1"
"r2_bit": "1"
"znprimroot": 37
- "n": 2305843009213692601
"n_hex": "0x1ffffffffffffab9"
"n_bit": "2^61 - 2^10 - 2^8 - 2^6 - 2^3 + 1"
"n_fac": "2^3 * 3^2 * 5^2 * 23 * 37 * 1505315974157c + 1"
"nd": 172383526225450103
"nd_hex": "0x2646de75dcc1477"
"nd_bit": "2^57 + 2^55 - 2^53 + 2^50 + 2^47 - 2^44 - 2^41 - 2^37 + 2^35 - 2^31 - 2^29 - 2^25 - 2^22 + 2^20 - 2^18 + 2^12 + 2^10 + 2^7 - 2^3 - 1"
"r2": 1825201
"r2_hex": "0x1bd9b1"
"r2_bit": "2^21 - 2^18 - 2^13 - 2^11 + 2^9 - 2^6 - 2^4 + 1"
"znprimroot": 17
- "n": 2305843009213690801
"n_hex": "0x1ffffffffffff3b1"
"n_bit": "2^61 - 2^12 + 2^10 - 2^6 - 2^4 + 1"
"n_fac": "2^4 * 3^3 * 5^2 * 7 * 9173 * 3325037491c + 1"
"nd": 1811158821899045551
"nd_hex": "0x1922875a431b8aaf"
"nd_bit": "2^61 - 2^59 + 2^56 + 2^53 + 2^49 + 2^47 + 2^43 - 2^39 - 2^37 - 2^35 + 2^33 + 2^30 + 2^26 - 2^24 + 2^21 - 2^18 - 2^15 + 2^12 - 2^10 - 2^8 - 2^6 - 2^4 - 1"
"r2": 9928801
"r2_hex": "0x978061"
"r2_bit": "2^23 + 2^21 - 2^19 - 2^15 + 2^7 - 2^5 + 1"
"znprimroot": 11
- "n": 2305843009213693921
"n_hex": "0x1fffffffffffffe1"
"n_bit": "2^61 - 2^5 + 1"
"n_fac": "2^5 * 3 * 5 * 17 * 29 * 43 * 113 * 127 * 15790321 + 1"
"nd": 1115730488329206751
"nd_hex": "0xf7bdef7bdef7bdf"
"nd_bit": "2^60 - 2^55 - 2^50 - 2^45 - 2^40 - 2^35 - 2^30 - 2^25 - 2^20 - 2^15 - 2^10 - 2^5 - 1"
"r2": 961
"r2_hex": "0x3c1"
"r2_bit": "2^10 - 2^6 + 1"
"znprimroot": 14
- "n": 2305843009213675681
"n_hex": "0x1fffffffffffb8a1"
"n_bit": "2^61 - 2^14 - 2^11 + 2^7 + 2^5 + 1"
"n_fac": "2^5 * 3^5 * 5 * 7 * 8472380251373 + 1"
"nd": 104747944701842591
"nd_hex": "0x17423b362e7d49f"
"nd_bit": "2^57 - 2^55 - 2^52 + 2^50 + 2^45 + 2^42 - 2^38 - 2^36 + 2^34 - 2^31 - 2^29 + 2^26 - 2^24 - 2^21 + 2^19 - 2^14 + 2^12 + 2^10 + 2^7 + 2^5 - 1"
"r2": 333829441
"r2_hex": "0x13e5d541"
"r2_bit": "2^28 + 2^26 - 2^21 + 2^19 - 2^17 - 2^14 + 2^12 + 2^10 + 2^8 + 2^6 + 1"
"znprimroot": 11
- "n": 2305843009213692737
"n_hex": "0x1ffffffffffffb41"
"n_bit": "2^61 - 2^10 - 2^8 + 2^6 + 1"
"n_fac": "2^6 * 36028797018963949c + 1"
"nd": 981169412151012159
"nd_hex": "0xd9dd061c3bd6b3f"
"nd_bit": "2^60 - 2^57 - 2^55 + 2^53 - 2^49 - 2^46 + 2^44 + 2^39 - 2^37 + 2^33 - 2^30 + 2^26 - 2^22 - 2^17 - 2^15 - 2^12 - 2^10 - 2^8 + 2^6 - 1"
"r2": 1476225
"r2_hex": "0x168681"
"r2_bit": "2^21 - 2^19 - 2^17 + 2^15 + 2^11 - 2^9 + 2^7 + 1"
"znprimroot": 3
- "n": 2305843009213692097
"n_hex": "0x1ffffffffffff8c1"
"n_bit": "2^61 - 2^11 + 2^8 - 2^6 + 1"
"n_fac": "2^6 * 3^3 * 1334399889591257 + 1"
"nd": 1848403533531408575
"nd_hex": "0x19a6d93871b768bf"
"nd_bit": "2^61 - 2^59 + 2^57 - 2^55 + 2^53 + 2^51 - 2^48 - 2^45 - 2^43 + 2^40 + 2^38 - 2^35 + 2^31 - 2^28 + 2^25 - 2^22 - 2^19 - 2^15 - 2^13 + 2^11 + 2^8 - 2^6 - 1"
"r2": 3441025
"r2_hex": "0x348181"
"r2_bit": "2^22 - 2^20 + 2^18 + 2^15 + 2^9 - 2^7 + 1"
"znprimroot": 11
- "n": 2305843009213423681
"n_hex": "0x1ffffffffffbe041"
"n_bit": "2^61 - 2^18 - 2^13 + 2^6 + 1"
"n_fac": "2^6 * 3^2 * 5 * 7^2 * 11 * 13 * 839 * 3301 * 41257 + 1"
"nd": 461542285751865407
"nd_hex": "0x667ba43770fd03f"
"nd_bit": "2^59 - 2^57 + 2^55 - 2^53 + 2^51 - 2^46 - 2^43 + 2^41 + 2^38 + 2^34 - 2^31 - 2^27 - 2^24 + 2^20 - 2^14 + 2^12 + 2^6 - 1"
"r2": 73046413441
"r2_hex": "0x1101e7d081"
"r2_bit": "2^36 + 2^32 + 2^25 - 2^21 + 2^19 - 2^14 + 2^12 + 2^7 + 1"
"znprimroot": 19
- "n": 2305843009213672321
"n_hex": "0x1fffffffffffab81"
"n_bit": "2^61 - 2^14 - 2^12 - 2^10 - 2^7 + 1"
"n_fac": "2^7 * 3 * 5 * 7 * 171565700090303c + 1"
"nd": 2193274463250508671
"nd_hex": "0x1e701380fcfb6b7f"
"nd_bit": "2^61 - 2^57 + 2^55 - 2^52 + 2^44 + 2^42 - 2^39 + 2^32 - 2^26 + 2^24 - 2^18 - 2^15 - 2^12 - 2^10 - 2^7 - 1"
"r2": 467900161
"r2_hex": "0x1be39701"
"r2_bit": "2^29 - 2^26 - 2^21 + 2^18 - 2^15 + 2^13 - 2^11 - 2^8 + 1"
"znprimroot": 22
- "n": 2305843009213656961
"n_hex": "0x1fffffffffff6f81"
"n_bit": "2^61 - 2^15 - 2^12 - 2^7 + 1"
"n_fac": "2^7 * 3^2 * 5 * 400319966877371c + 1"
"nd": 317722738448871295
"nd_hex": "0x468c725b24f2f7f"
"nd_bit": "2^58 + 2^55 - 2^53 + 2^51 + 2^48 - 2^46 + 2^43 - 2^40 + 2^37 + 2^35 - 2^33 - 2^30 - 2^28 + 2^25 + 2^22 + 2^20 - 2^16 + 2^14 - 2^12 - 2^7 - 1"
"r2": 1368334081
"r2_hex": "0x518f1f01"
"r2_bit": "2^30 + 2^28 + 2^25 - 2^23 + 2^20 - 2^16 + 2^13 - 2^8 + 1"
"znprimroot": 7
- "n": 2305843009213000321
"n_hex": "0x1ffffffffff56a81"
"n_bit": "2^61 - 2^19 - 2^17 - 2^15 - 2^13 + 2^11 + 2^9 + 2^7 + 1"
"n_fac": "2^7 * 3^2 * 5 * 7^2 * 17 * 1801 * 266838529 + 1"
"nd": 1323054596188744319
"nd_hex": "0x125c6f2538472a7f"
"nd_bit": "2^60 + 2^57 + 2^55 - 2^53 - 2^50 + 2^47 - 2^44 - 2^40 + 2^37 + 2^34 + 2^32 + 2^30 - 2^27 + 2^22 + 2^19 - 2^16 + 2^13 + 2^11 + 2^9 + 2^7 - 1"
"r2": 481123964161
"r2_hex": "0x7005391501"
"r2_bit": "2^39 - 2^36 + 2^26 + 2^24 + 2^22 - 2^19 + 2^16 + 2^12 + 2^10 + 2^8 + 1"
"znprimroot": 46
- "n": 2305843009213689601
"n_hex": "0x1fffffffffffef01"
"n_bit": "2^61 - 2^12 - 2^8 + 1"
"n_fac": "2^8 * 3 * 5^2 * 120095990063213c + 1"
"nd": 717031852784676607
"nd_hex": "0x9f368abcddeeeff"
"nd_bit": "2^59 + 2^57 - 2^52 + 2^50 - 2^47 - 2^45 + 2^43 + 2^40 - 2^38 - 2^36 - 2^34 - 2^30 + 2^28 - 2^25 - 2^21 - 2^16 - 2^12 - 2^8 - 1"
"r2": 18931201
"r2_hex": "0x120de01"
"r2_bit": "2^24 + 2^21 + 2^16 - 2^13 - 2^9 + 1"
"znprimroot": 11
- "n": 2305843009213660417
"n_hex": "0x1fffffffffff7d01"
"n_bit": "2^61 - 2^15 - 2^10 + 2^8 + 1"
"n_fac": "2^8 * 3^2 * 823 * 1216038781523c + 1"
"nd": 238044684595133695
"nd_hex": "0x34db46121f67cff"
"nd_bit": "2^58 - 2^56 + 2^54 + 2^52 - 2^49 - 2^46 - 2^44 + 2^42 + 2^39 - 2^37 + 2^32 + 2^29 + 2^25 - 2^19 - 2^17 + 2^15 - 2^10 + 2^8 - 1"
"r2": 1124596225
"r2_hex": "0x4307fa01"
"r2_bit": "2^30 + 2^26 - 2^24 + 2^19 - 2^11 + 2^9 + 1"
"znprimroot": 5
- "n": 2305843009211831041
"n_hex": "0x1fffffffffe39301"
"n_bit": "2^61 - 2^21 + 2^18 - 2^15 + 2^12 + 2^10 - 2^8 + 1"
"n_fac": "2^8 * 3^3 * 5 * 7 * 67 * 167 * 851856983 + 1"
"nd": 1848422602427241215
"nd_hex": "0x19a6ea90447a92ff"
"nd_bit": "2^61 - 2^59 + 2^57 - 2^55 + 2^53 + 2^51 - 2^48 - 2^45 + 2^43 + 2^41 + 2^39 + 2^36 + 2^30 + 2^26 + 2^23 - 2^19 + 2^17 + 2^15 + 2^12 + 2^10 - 2^8 - 1"
"r2": 3470437393921
"r2_hex": "0x32806302601"
"r2_bit": "2^42 - 2^40 + 2^37 + 2^35 + 2^27 - 2^25 + 2^22 - 2^20 + 2^13 + 2^11 - 2^9 + 1"
"znprimroot": 33
- "n": 2305843009213687297
"n_hex": "0x1fffffffffffe601"
"n_bit": "2^61 - 2^13 + 2^11 - 2^9 + 1"
"n_fac": "2^9 * 3 * 337 * 4454599037953c + 1"
"nd": 2048406291580970495
"nd_hex": "0x1c6d66ab555be5ff"
"nd_bit": "2^61 - 2^58 + 2^55 - 2^52 - 2^49 - 2^47 - 2^45 + 2^43 - 2^40 - 2^38 - 2^36 - 2^34 - 2^31 - 2^29 - 2^27 - 2^25 - 2^23 - 2^21 - 2^18 - 2^13 + 2^11 - 2^9 - 1"
"r2": 44289025
"r2_hex": "0x2a3cc01"
"r2_bit": "2^25 + 2^23 + 2^21 + 2^18 - 2^14 + 2^12 - 2^10 + 1"
"znprimroot": 15
- "n": 2305843009213644289
"n_hex": "0x1fffffffffff3e01"
"n_bit": "2^61 - 2^16 + 2^14 - 2^9 + 1"
"n_fac": "2^9 * 3^2 * 31 * 101 * 353 * 452751077 + 1"
"nd": 1014955362773319167
"nd_hex": "0xe15d88664fb3dff"
"nd_bit": "2^60 - 2^57 + 2^53 - 2^51 - 2^49 - 2^45 - 2^43 + 2^39 + 2^35 - 2^33 + 2^31 - 2^29 + 2^26 + 2^24 - 2^18 - 2^16 + 2^14 - 2^9 - 1"
"r2": 2466413569
"r2_hex": "0x93027c01"
"r2_bit": "2^31 + 2^28 + 2^26 - 2^24 + 2^17 + 2^15 - 2^10 + 1"
"znprimroot": 29
- "n": 2305843009209976321
"n_hex": "0x1fffffffffc74601"
"n_bit": "2^61 - 2^22 + 2^19 - 2^16 + 2^14 + 2^11 - 2^9 + 1"
"n_fac": "2^9 * 3^2 * 5 * 7 * 37 * 386409234437 + 1"
"nd": 854492668223505919
"nd_hex": "0xbdbc48df0a345ff"
"nd_bit": "2^60 - 2^58 - 2^53 - 2^50 - 2^46 + 2^42 + 2^39 + 2^36 - 2^33 - 2^28 + 2^23 + 2^21 + 2^18 - 2^16 + 2^14 + 2^11 - 2^9 - 1"
"r2": 13820780252161
"r2_hex": "0xc91e6b28c01"
"r2_bit": "2^44 - 2^42 + 2^39 + 2^36 + 2^33 - 2^29 + 2^27 - 2^24 - 2^22 - 2^20 + 2^17 + 2^15 + 2^12 - 2^10 + 1"
"znprimroot": 13
- "n": 2305843009213682689
"n_hex": "0x1fffffffffffd401"
"n_bit": "2^61 - 2^14 + 2^12 + 2^10 + 1"
"n_fac": "2^10 * 3 * 750599937895079c + 1"
"nd": 1971113956557706239
"nd_hex": "0x1b5acdb3386fd3ff"
"nd_bit": "2^61 - 2^58 - 2^55 - 2^53 - 2^50 - 2^48 - 2^46 + 2^44 - 2^41 - 2^38 - 2^36 + 2^34 - 2^32 + 2^30 - 2^27 + 2^23 - 2^20 - 2^14 + 2^12 + 2^10 - 1"
"r2": 126855169
"r2_hex": "0x78fa801"
"r2_bit": "2^27 - 2^23 + 2^20 - 2^15 + 2^13 + 2^11 + 1"
"znprimroot": 17
- "n": 2305843009213621249
"n_hex": "0x1ffffffffffee401"
"n_bit": "2^61 - 2^16 - 2^13 + 2^10 + 1"
"n_fac": "2^10 * 3^6 * 7^2 * 233 * 270551689 + 1"
"nd": 45670934256739327
"nd_hex": "0xa2417904eee3ff"
"nd_bit": "2^55 + 2^53 + 2^49 + 2^46 + 2^41 - 2^39 - 2^35 + 2^32 + 2^26 + 2^24 - 2^20 - 2^16 - 2^13 + 2^10 - 1"
"r2": 5285726209
"r2_hex": "0x13b0dc801"
"r2_bit": "2^32 + 2^30 - 2^26 - 2^24 + 2^20 - 2^17 - 2^14 + 2^11 + 1"
"znprimroot": 13
- "n": 2305843009206912001
"n_hex": "0x1fffffffff988401"
"n_bit": "2^61 - 2^23 + 2^21 - 2^19 + 2^15 + 2^10 + 1"
"n_fac": "2^10 * 3^2 * 5^3 * 7 * 285942833483c + 1"
"nd": 2223516815089763327
"nd_hex": "0x1edb84c33b8883ff"
"nd_bit": "2^61 - 2^56 - 2^53 - 2^50 - 2^47 + 2^42 + 2^40 - 2^38 + 2^34 - 2^32 + 2^30 - 2^26 - 2^23 + 2^19 + 2^15 + 2^10 - 1"
"r2": 45994859366401
"r2_hex": "0x29d503410801"
"r2_bit": "2^45 + 2^43 + 2^41 - 2^38 + 2^36 + 2^34 + 2^32 + 2^26 - 2^24 + 2^22 + 2^16 + 2^11 + 1"
"znprimroot": 11
- "n": 2305843009213683713
"n_hex": "0x1fffffffffffd801"
"n_bit": "2^61 - 2^13 - 2^11 + 1"
"n_fac": "2^11 * 29 * 38824134718711c + 1"
"nd": 385320577084151807
"nd_hex": "0x558ef05f9bfd7ff"
"nd_bit": "2^59 - 2^57 - 2^55 - 2^53 - 2^51 + 2^48 - 2^44 - 2^40 + 2^35 - 2^33 - 2^27 + 2^25 - 2^22 - 2^13 - 2^11 - 1"
"r2": 104837121
"r2_hex": "0x63fb001"
"r2_bit": "2^27 - 2^25 + 2^22 - 2^14 - 2^12 + 1"
"znprimroot": 3
- "n": 2305843009213470721
"n_hex": "0x1ffffffffffc9801"
"n_bit": "2^61 - 2^18 + 2^15 + 2^13 - 2^11 + 1"
"n_fac": "2^11 * 3 * 5 * 7^2 * 281 * 5451375829 + 1"
"nd": 209253050340907007
"nd_hex": "0x2e76a8a65bc97ff"
"nd_bit": "2^58 - 2^56 - 2^53 + 2^51 - 2^47 - 2^45 + 2^43 + 2^41 + 2^39 + 2^35 + 2^33 + 2^31 - 2^29 + 2^27 - 2^25 - 2^22 - 2^18 + 2^15 + 2^13 - 2^11 - 1"
"r2": 49832079361
"r2_hex": "0xb9a393001"
"r2_bit": "2^36 - 2^34 - 2^31 + 2^29 - 2^27 + 2^25 + 2^22 - 2^19 + 2^16 + 2^14 - 2^12 + 1"
"znprimroot": 34
- "n": 2305843009213616129
"n_hex": "0x1ffffffffffed001"
"n_bit": "2^61 - 2^16 - 2^14 + 2^12 + 1"
"n_fac": "2^12 * 17 * 33114703142429 + 1"
"nd": 1363837859168964607
"nd_hex": "0x12ed534e96fecfff"
"nd_bit": "2^60 + 2^58 - 2^56 - 2^52 - 2^50 + 2^48 + 2^46 + 2^44 + 2^42 - 2^40 + 2^38 + 2^36 - 2^33 + 2^31 + 2^29 - 2^27 - 2^24 - 2^16 - 2^14 + 2^12 - 1"
"r2": 6056419329
"r2_hex": "0x168fda001"
"r2_bit": "2^33 - 2^31 - 2^29 + 2^27 + 2^24 - 2^17 - 2^15 + 2^13 + 1"
"znprimroot": 3
- "n": 2305843009213501441
"n_hex": "0x1ffffffffffd1001"
"n_bit": "2^61 - 2^18 + 2^16 + 2^12 + 1"
"n_fac": "2^12 * 3^2 * 5 * 31 * 403548353707c + 1"
"nd": 1920124466243637247
"nd_hex": "0x1aa5a7075efd0fff"
"nd_bit": "2^61 - 2^59 + 2^57 + 2^55 + 2^53 + 2^51 - 2^49 - 2^47 + 2^45 + 2^43 - 2^40 + 2^35 - 2^31 - 2^29 - 2^24 - 2^18 + 2^16 + 2^12 - 1"
"r2": 37060485121
"r2_hex": "0x8a0fa2001"
"r2_bit": "2^35 + 2^31 + 2^29 + 2^24 - 2^19 + 2^17 + 2^13 + 1"
"znprimroot": 7
- "n": 2305843009213554689
"n_hex": "0x1ffffffffffde001"
"n_bit": "2^61 - 2^17 - 2^13 + 1"
"n_fac": "2^13 * 1019 * 4871 * 56708411 + 1"
"nd": 2010408063726379007
"nd_hex": "0x1be6677b7bfddfff"
"nd_bit": "2^61 - 2^58 - 2^53 + 2^51 - 2^49 + 2^47 - 2^45 + 2^43 - 2^39 - 2^34 - 2^31 - 2^26 - 2^17 - 2^13 - 1"
"r2": 19394183169
"r2_hex": "0x483fbc001"
"r2_bit": "2^34 + 2^31 + 2^26 - 2^18 - 2^14 + 1"
"znprimroot": 3
- "n": 2305843009213489153
"n_hex": "0x1ffffffffffce001"
"n_bit": "2^61 - 2^18 + 2^16 - 2^13 + 1"
"n_fac": "2^13 * 3 * 11 * 101 * 84450938107c + 1"
"nd": 131021611913240575
"nd_hex": "0x1d17b763bfcdfff"
"nd_bit": "2^57 - 2^54 + 2^52 + 2^49 - 2^47 - 2^42 - 2^39 - 2^35 - 2^33 + 2^30 - 2^26 - 2^18 + 2^16 - 2^13 - 1"
"r2": 41942630401
"r2_hex": "0x9c3f9c001"
"r2_bit": "2^35 + 2^33 - 2^30 + 2^26 - 2^19 + 2^17 - 2^14 + 1"
"znprimroot": 15
- "n": 2305843009211965441
"n_hex": "0x1fffffffffe5a001"
"n_bit": "2^61 - 2^21 + 2^19 - 2^17 - 2^15 + 2^13 + 1"
"n_fac": "2^13 * 3 * 5 * 7^2 * 37 * 10350247351 + 1"
"nd": 1676596663707607039
"nd_hex": "0x174477c85be59fff"
"nd_bit": "2^61 - 2^59 - 2^56 + 2^54 + 2^50 + 2^47 - 2^43 - 2^38 + 2^35 + 2^31 - 2^29 - 2^26 - 2^21 + 2^19 - 2^17 - 2^15 + 2^13 - 1"
"r2": 2987750277121
"r2_hex": "0x2b7a3cb4001"
"r2_bit": "2^42 - 2^40 - 2^38 - 2^35 - 2^31 + 2^29 + 2^26 - 2^22 + 2^20 - 2^18 - 2^16 + 2^14 + 1"
"znprimroot": 67
- "n": 2305843009213317121
"n_hex": "0x1ffffffffffa4001"
"n_bit": "2^61 - 2^19 + 2^17 + 2^14 + 1"
"n_fac": "2^14 * 3^3 * 5 * 5779 * 180394517 + 1"
"nd": 2180274241272430591
"nd_hex": "0x1e41e3deeffa3fff"
"nd_bit": "2^61 - 2^57 + 2^54 + 2^49 - 2^45 + 2^42 - 2^37 - 2^32 - 2^28 - 2^19 + 2^17 + 2^14 - 1"
"r2": 142001602561
"r2_hex": "0x210ff48001"
"r2_bit": "2^37 + 2^32 + 2^28 - 2^20 + 2^18 + 2^15 + 1"
"znprimroot": 13
- "n": 2305843009205944321
"n_hex": "0x1fffffffff89c001"
"n_bit": "2^61 - 2^23 + 2^19 + 2^17 - 2^14 + 1"
"n_fac": "2^14 * 3^2 * 5 * 7^2 * 63826525331 + 1"
"nd": 290101061766201343
"nd_hex": "0x406a560ef89bfff"
"nd_bit": "2^58 + 2^51 - 2^49 + 2^47 + 2^45 + 2^43 - 2^41 - 2^39 - 2^37 + 2^32 - 2^28 - 2^23 + 2^19 + 2^17 - 2^14 - 1"
"r2": 60056780636161
"r2_hex": "0x369f0f138001"
"r2_bit": "2^46 - 2^43 - 2^41 + 2^39 + 2^37 - 2^32 + 2^28 - 2^24 + 2^20 + 2^18 - 2^15 + 1"
"znprimroot": 19
- "n": 2305843009101004801
"n_hex": "0x1ffffffff9488001"
"n_bit": "2^61 - 2^27 + 2^24 + 2^22 + 2^19 + 2^15 + 1"
"n_fac": "2^15 * 3 * 5^2 * 7 * 137 * 978362797 + 1"
"nd": 1380637473998667775
"nd_hex": "0x13290277b9487fff"
"nd_bit": "2^60 + 2^58 - 2^56 + 2^53 + 2^51 + 2^48 + 2^41 + 2^39 - 2^35 - 2^30 - 2^27 + 2^24 + 2^22 + 2^19 + 2^15 - 1"
"r2": 12698844753100801
"r2_hex": "0x2d1d8832910001"
"r2_bit": "2^54 - 2^52 - 2^50 + 2^48 + 2^45 - 2^41 - 2^39 + 2^35 + 2^30 - 2^28 + 2^25 + 2^23 + 2^20 + 2^16 + 1"
"znprimroot": 17
- "n": 2305843009211662337
"n_hex": "0x1fffffffffe10001"
"n_bit": "2^61 - 2^21 + 2^16 + 1"
"n_fac": "2^16 * 13 * 37 * 73148382721 + 1"
"nd": 837946878202019839
"nd_hex": "0xba0fc3effe0ffff"
"nd_bit": "2^60 - 2^58 - 2^55 + 2^53 + 2^48 - 2^42 + 2^38 - 2^32 - 2^21 + 2^16 - 1"
"r2": 4127459508225
"r2_hex": "0x3c0ffc20001"
"r2_bit": "2^42 - 2^38 + 2^32 - 2^22 + 2^17 + 1"
"znprimroot": 3
- "n": 2305843009211400193
"n_hex": "0x1fffffffffdd0001"
"n_bit": "2^61 - 2^21 - 2^18 + 2^16 + 1"
"n_fac": "2^16 * 3^2 * 313 * 6703 * 1863347 + 1"
"nd": 1766813167475556351
"nd_hex": "0x1884fb36ffdcffff"
"nd_bit": "2^61 - 2^59 + 2^55 + 2^50 + 2^48 - 2^42 - 2^40 + 2^38 - 2^35 - 2^32 - 2^21 - 2^18 + 2^16 - 1"
"r2": 5261330350081
"r2_hex": "0x4c8ffba0001"
"r2_bit": "2^42 + 2^40 - 2^38 + 2^35 + 2^32 - 2^22 - 2^19 + 2^17 + 1"
"znprimroot": 5
- "n": 2305843009191936001
"n_hex": "0x1ffffffffeb40001"
"n_bit": "2^61 - 2^24 - 2^22 - 2^20 + 2^18 + 1"
"n_fac": "2^18 * 3^2 * 5^3 * 7818749353 + 1"
"nd": 2107211217112399871
"nd_hex": "0x1d3e516ffeb3ffff"
"nd_bit": "2^61 - 2^58 + 2^56 + 2^54 - 2^49 + 2^46 + 2^44 + 2^41 - 2^39 - 2^36 - 2^24 - 2^22 - 2^20 + 2^18 - 1"
"r2": 473408431718401
"r2_hex": "0x1ae8ffd680001"
"r2_bit": "2^49 - 2^46 - 2^44 - 2^41 + 2^39 + 2^36 - 2^25 - 2^23 - 2^21 + 2^19 + 1"
"znprimroot": 11
- "n": 2305843009097564161
"n_hex": "0x1ffffffff9140001"
"n_bit": "2^61 - 2^27 + 2^24 + 2^20 + 2^18 + 1"
"n_fac": "2^18 * 3^2 * 5 * 7^2 * 3989157833 + 1"
"nd": 1085392180372307967
"nd_hex": "0xf10166ff913ffff"
"nd_bit": "2^60 - 2^56 + 2^52 + 2^45 - 2^43 - 2^41 + 2^39 - 2^36 - 2^27 + 2^24 + 2^20 + 2^18 - 1"
"r2": 13486128357703681
"r2_hex": "0x2fe98ff2280001"
"r2_bit": "2^54 - 2^52 - 2^45 + 2^43 + 2^41 - 2^39 + 2^36 - 2^28 + 2^25 + 2^21 + 2^19 + 1"
"znprimroot": 17
- "n": 2305843008244285441
"n_hex": "0x1fffffffc6380001"
"n_bit": "2^61 - 2^30 + 2^27 - 2^25 + 2^22 - 2^19 + 1"
"n_fac": "2^19 * 3 * 5 * 7 * 41 * 7307 * 139813 + 1"
"nd": 69053452423528447
"nd_hex": "0xf553bfc637ffff"
"nd_bit": "2^56 - 2^52 + 2^50 + 2^48 + 2^46 + 2^44 + 2^42 - 2^38 - 2^30 + 2^27 - 2^25 + 2^22 - 2^19 - 1"
"r2": 939752861199237121
"r2_hex": "0xd0aac3f8c700001"
"r2_bit": "2^60 - 2^58 + 2^56 + 2^52 - 2^50 - 2^48 - 2^46 - 2^44 - 2^42 + 2^38 - 2^31 + 2^28 - 2^26 + 2^23 - 2^20 + 1"
"znprimroot": 17
- "n": 2305843009132953601
"n_hex": "0x1ffffffffb300001"
"n_bit": "2^61 - 2^26 - 2^24 + 2^22 - 2^20 + 1"
"n_fac": "2^20 * 3^2 * 5^2 * 167 * 58523573 + 1"
"nd": 1146402500085022719
"nd_hex": "0xfe8d6fffb2fffff"
"nd_bit": "2^60 - 2^53 + 2^51 + 2^48 - 2^45 - 2^43 - 2^40 - 2^26 - 2^24 + 2^22 - 2^20 - 1"
"r2": 6519004279603201
"r2_hex": "0x1728fff6600001"
"r2_bit": "2^53 - 2^51 - 2^48 + 2^45 + 2^43 + 2^40 - 2^27 - 2^25 + 2^23 - 2^21 + 1"
"znprimroot": 7
- "n": 2305843008189235201
"n_hex": "0x1fffffffc2f00001"
"n_bit": "2^61 - 2^30 + 2^26 - 2^24 - 2^20 + 1"
"n_fac": "2^20 * 3^3 * 5^2 * 7 * 6619 * 70313 + 1"
"nd": 103405769032990719
"nd_hex": "0x16f5effc2efffff"
"nd_bit": "2^57 - 2^55 - 2^52 - 2^47 - 2^45 - 2^40 - 2^30 + 2^26 - 2^24 - 2^20 - 1"
"r2": 1049515732500480001
"r2_hex": "0xe90a0ff85e00001"
"r2_bit": "2^60 - 2^57 + 2^55 + 2^52 + 2^47 + 2^45 + 2^40 - 2^31 + 2^27 - 2^25 - 2^21 + 1"
"znprimroot": 13
- "n": 2305843009211596801
"n_hex": "0x1fffffffffe00001"
"n_bit": "2^61 - 2^21 + 1"
"n_fac": "2^21 * 3 * 5^2 * 11 * 17 * 31 * 41 * 61681 + 1"
"nd": 2305838611165085695
"nd_hex": "0x1ffffbffffdfffff"
"nd_bit": "2^61 - 2^42 - 2^21 - 1"
"r2": 4398042316801
"r2_hex": "0x3ffffc00001"
"r2_bit": "2^42 - 2^22 + 1"
"znprimroot": 37
- "n": 2305843008934772737
"n_hex": "0x1fffffffef600001"
"n_bit": "2^61 - 2^28 - 2^23 - 2^21 + 1"
"n_fac": "2^21 * 3^2 * 11 * 13 * 97 * 8807437 + 1"
"nd": 2228045964199854079
"nd_hex": "0x1eeb9bffef5fffff"
"nd_bit": "2^61 - 2^56 - 2^52 - 2^50 - 2^47 + 2^45 - 2^42 - 2^28 - 2^23 - 2^21 - 1"
"r2": 77797044177076225
"r2_hex": "0x11463ffdec00001"
"r2_bit": "2^56 + 2^52 + 2^50 + 2^47 - 2^45 + 2^42 - 2^29 - 2^24 - 2^22 + 1"
"znprimroot": 7
- "n": 2305843008897024001
"n_hex": "0x1fffffffed200001"
"n_bit": "2^61 - 2^28 - 2^26 + 2^24 + 2^21 + 1"
"n_fac": "2^21 * 3^4 * 5^3 * 23 * 4721467 + 1"
"nd": 2205563150397341695
"nd_hex": "0x1e9bbbffed1fffff"
"nd_bit": "2^61 - 2^57 + 2^55 + 2^53 - 2^50 - 2^46 - 2^42 - 2^28 - 2^26 + 2^24 + 2^21 - 1"
"r2": 100279857866342401
"r2_hex": "0x16443ffda400001"
"r2_bit": "2^57 - 2^55 - 2^53 + 2^50 + 2^46 + 2^42 - 2^29 - 2^27 + 2^25 + 2^22 + 1"
"znprimroot": 17
- "n": 2305842993986273281
"n_hex": "0x1ffffffc74600001"
"n_bit": "2^61 - 2^34 + 2^31 - 2^28 + 2^26 + 2^23 - 2^21 + 1"
"n_fac": "2^21 * 3^2 * 5 * 7 * 11 * 317319371 + 1"
"nd": 1015803593302736895
"nd_hex": "0xe18dbfc745fffff"
"nd_bit": "2^60 - 2^57 + 2^53 - 2^51 + 2^48 - 2^45 - 2^42 - 2^34 + 2^31 - 2^28 + 2^26 + 2^23 - 2^21 - 1"
"r2": 1290040892970762141
"r2_hex": "0x11e7255b733fff9d"
"r2_bit": "2^60 + 2^57 - 2^53 + 2^51 - 2^48 + 2^45 + 2^43 - 2^41 - 2^39 - 2^37 - 2^34 - 2^31 - 2^28 + 2^26 - 2^24 + 2^22 - 2^7 + 2^5 - 2^2 + 1"
"znprimroot": 23
- "n": 2305843009117224961
"n_hex": "0x1ffffffffa400001"
"n_bit": "2^61 - 2^27 + 2^25 + 2^22 + 1"
"n_fac": "2^22 * 3 * 5 * 53 * 691516747 + 1"
"nd": 2296536742699728895
"nd_hex": "0x1fdeeffffa3fffff"
"nd_bit": "2^61 - 2^53 - 2^48 - 2^44 - 2^27 + 2^25 + 2^22 - 1"
"r2": 9306266224558081
"r2_hex": "0x210ffff4800001"
"r2_bit": "2^53 + 2^48 + 2^44 - 2^28 + 2^26 + 2^23 + 1"
"znprimroot": 13
- "n": 2305843004335718401
"n_hex": "0x1ffffffedd400001"
"n_bit": "2^61 - 2^32 - 2^29 - 2^26 + 2^24 + 2^22 + 1"
"n_fac": "2^22 * 3 * 5^2 * 7 * 31 * 103 * 327953 + 1"
"nd": 1569627610562953215
"nd_hex": "0x15c86ffedd3fffff"
"nd_bit": "2^61 - 2^59 - 2^57 - 2^54 + 2^51 + 2^47 - 2^44 - 2^32 - 2^29 - 2^26 + 2^24 + 2^22 - 1"
"r2": 736215432796569591
"r2_hex": "0xa37900915fffff7"
"r2_bit": "2^59 + 2^57 + 2^54 - 2^51 - 2^47 + 2^44 + 2^35 + 2^32 + 2^29 - 2^27 - 2^25 - 2^3 - 1"
"znprimroot": 13
- "n": 2305843008550993921
"n_hex": "0x1fffffffd8800001"
"n_bit": "2^61 - 2^29 - 2^27 + 2^23 + 1"
"n_fac": "2^23 * 3 * 5 * 71 * 258101321 + 1"
"nd": 1866671676138192895
"nd_hex": "0x19e7bfffd87fffff"
"nd_bit": "2^61 - 2^59 + 2^57 - 2^53 + 2^51 - 2^46 - 2^29 - 2^27 + 2^23 - 1"
"r2": 439171331087400961
"r2_hex": "0x6183fffb1000001"
"r2_bit": "2^59 - 2^57 + 2^53 - 2^51 + 2^46 - 2^30 - 2^28 + 2^24 + 1"
"znprimroot": 19
- "n": 2305842997729689601
"n_hex": "0x1ffffffd53800001"
"n_bit": "2^61 - 2^34 + 2^32 + 2^30 + 2^28 + 2^26 - 2^23 + 1"
"n_fac": "2^23 * 3 * 5^2 * 7^2 * 13 * 823 * 6991 + 1"
"nd": 1856538566155304959
"nd_hex": "0x19c3bffd537fffff"
"nd_bit": "2^61 - 2^59 + 2^57 - 2^54 + 2^50 - 2^46 - 2^34 + 2^32 + 2^30 + 2^28 + 2^26 - 2^23 - 1"
"r2": 449305063194623944
"r2_hex": "0x63c40930f7fffc8"
"r2_bit": "2^59 - 2^57 + 2^54 - 2^50 + 2^46 + 2^39 + 2^36 + 2^34 - 2^32 + 2^28 - 2^23 - 2^6 + 2^3"
"znprimroot": 17
- "n": 2305843009196916737
"n_hex": "0x1fffffffff000001"
"n_bit": "2^61 - 2^24 + 1"
"n_fac": "2^24 * 223 * 616318177 + 1"
"nd": 2305561534220206079
"nd_hex": "0x1ffefffffeffffff"
"nd_bit": "2^61 - 2^48 - 2^24 - 1"
"r2": 281474943156225
"r2_hex": "0xfffffe000001"
"r2_bit": "2^48 - 2^25 + 1"
"znprimroot": 3
- "n": 2305843008777486337
"n_hex": "0x1fffffffe6000001"
"n_bit": "2^61 - 2^29 + 2^27 - 2^25 + 1"
"n_fac": "2^25 * 3 * 22906492241c + 1"
"nd": 2115565924521082879
"nd_hex": "0x1d5bffffe5ffffff"
"nd_bit": "2^61 - 2^57 - 2^55 - 2^53 - 2^50 - 2^29 + 2^27 - 2^25 - 1"
"r2": 190277083383988225
"r2_hex": "0x2a3ffffcc000001"
"r2_bit": "2^57 + 2^55 + 2^53 + 2^50 - 2^30 + 2^28 - 2^26 + 1"
"znprimroot": 5
- "n": 2305843007368200193
"n_hex": "0x1fffffff92000001"
"n_bit": "2^61 - 2^31 + 2^28 + 2^25 + 1"
"n_fac": "2^25 * 3^4 * 848388601c + 1"
"nd": 1205838798382956543
"nd_hex": "0x10bbffff91ffffff"
"nd_bit": "2^60 + 2^56 - 2^54 - 2^50 - 2^31 + 2^28 + 2^25 - 1"
"r2": 1100004207139749888
"r2_hex": "0xf43ffff92000000"
"r2_bit": "2^60 - 2^56 + 2^54 + 2^50 - 2^31 + 2^28 + 2^25"
"znprimroot": 5
- "n": 2305843006160240641
"n_hex": "0x1fffffff4a000001"
"n_bit": "2^61 - 2^32 + 2^30 + 2^27 + 2^25 + 1"
"n_fac": "2^25 * 3^2 * 5 * 359 * 4253759 + 1"
"nd": 2205637914451247103
"nd_hex": "0x1e9bffff49ffffff"
"nd_bit": "2^61 - 2^57 + 2^55 + 2^53 - 2^50 - 2^32 + 2^30 + 2^27 + 2^25 - 1"
"r2": 100205097815900157
"r2_hex": "0x16400016bfffffd"
"r2_bit": "2^57 - 2^55 - 2^53 + 2^50 + 2^33 - 2^31 - 2^28 - 2^26 - 2^2 + 1"
"znprimroot": 19
- "n": 2305842988040847361
"n_hex": "0x1ffffffb12000001"
"n_bit": "2^61 - 2^34 - 2^32 + 2^28 + 2^25 + 1"
"n_fac": "2^25 * 3^2 * 5 * 7 * 89 * 2451203 + 1"
"nd": 1349953967131459583
"nd_hex": "0x12bbfffb11ffffff"
"nd_bit": "2^60 + 2^58 - 2^56 - 2^54 - 2^50 - 2^34 - 2^32 + 2^28 + 2^25 - 1"
"r2": 955893086095933247
"r2_hex": "0xd4403b27fffff3f"
"r2_bit": "2^60 - 2^58 + 2^56 + 2^54 + 2^50 + 2^42 - 2^38 - 2^36 + 2^33 + 2^31 - 2^8 + 2^6 - 1"
"znprimroot": 11
- "n": 2305843009146585089
"n_hex": "0x1ffffffffc000001"
"n_bit": "2^61 - 2^26 + 1"
"n_fac": "2^26 * 31 * 71 * 127 * 122921 + 1"
"nd": 2301339409519214591
"nd_hex": "0x1feffffffbffffff"
"nd_bit": "2^61 - 2^52 - 2^26 - 1"
"r2": 4503599493152769
"r2_hex": "0xffffff8000001"
"r2_bit": "2^52 - 2^27 + 1"
"znprimroot": 3
- "n": 2305843001227739137
"n_hex": "0x1ffffffe24000001"
"n_bit": "2^61 - 2^33 + 2^29 + 2^26 + 1"
"n_fac": "2^26 * 3 * 23 * 3847 * 129443 + 1"
"nd": 788129926803881983
"nd_hex": "0xaeffffe23ffffff"
"nd_bit": "2^60 - 2^58 - 2^56 - 2^52 - 2^33 + 2^29 + 2^26 - 1"
"r2": 1517713274072727526
"r2_hex": "0x1510002e7bffffe6"
"r2_bit": "2^60 + 2^58 + 2^56 + 2^52 + 2^38 - 2^36 - 2^33 + 2^31 - 2^26 - 2^5 + 2^3 - 2"
"znprimroot": 5
- "n": 2305842991564062721
"n_hex": "0x1ffffffbe4000001"
"n_bit": "2^61 - 2^34 - 2^29 + 2^26 + 1"
"n_fac": "2^26 * 3 * 5 * 7^2 * 11 * 17 * 249989 + 1"
"nd": 2085166609822908415
"nd_hex": "0x1ceffffbe3ffffff"
"nd_bit": "2^61 - 2^58 + 2^56 - 2^52 - 2^34 - 2^29 + 2^26 - 1"
"r2": 220678729142108026
"r2_hex": "0x31002228bffff7a"
"r2_bit": "2^58 - 2^56 + 2^52 + 2^41 + 2^37 + 2^33 + 2^31 + 2^28 - 2^26 - 2^7 - 2^3 + 2"
"znprimroot": 46
- "n": 2305842990758756353
"n_hex": "0x1ffffffbb4000001"
"n_bit": "2^61 - 2^34 - 2^30 - 2^28 + 2^26 + 1"
"n_fac": "2^26 * 3^2 * 3817748677 + 1"
"nd": 680043525278007295
"nd_hex": "0x96ffffbb3ffffff"
"nd_bit": "2^59 + 2^57 - 2^55 - 2^52 - 2^34 - 2^30 - 2^28 + 2^26 - 1"
"r2": 1625802141446700910
"r2_hex": "0x1690026f0bffff6e"
"r2_bit": "2^61 - 2^59 - 2^57 + 2^55 + 2^52 + 2^41 + 2^39 - 2^36 - 2^32 + 2^28 - 2^26 - 2^7 - 2^4 - 2"
"znprimroot": 5
- "n": 2305842977471201281
"n_hex": "0x1ffffff89c000001"
"n_bit": "2^61 - 2^35 + 2^31 + 2^29 - 2^26 + 1"
"n_fac": "2^26 * 3^4 * 5 * 7 * 12119837 + 1"
"nd": 67553962668064767
"nd_hex": "0xeffff89bffffff"
"nd_bit": "2^56 - 2^52 - 2^35 + 2^31 + 2^29 - 2^26 - 1"
"r2": 2238302791044955725
"r2_hex": "0x1f100c8787fffe4d"
"r2_bit": "2^61 - 2^56 + 2^52 + 2^44 - 2^42 + 2^39 + 2^35 - 2^31 + 2^27 - 2^9 + 2^6 + 2^4 - 2^2 + 1"
"znprimroot": 17
- "n": 2305842986530897921
"n_hex": "0x1ffffffab8000001"
"n_bit": "2^61 - 2^34 - 2^32 - 2^30 - 2^27 + 1"
"n_fac": "2^27 * 3^3 * 5 * 971 * 131059 + 1"
"nd": 1999598211869704191
"nd_hex": "0x1bbffffab7ffffff"
"nd_bit": "2^61 - 2^58 - 2^54 - 2^34 - 2^32 - 2^30 - 2^27 - 1"
"r2": 306249787559116578
"r2_hex": "0x440048f27ffff22"
"r2_bit": "2^58 + 2^54 + 2^42 + 2^39 + 2^36 - 2^32 + 2^29 + 2^27 - 2^8 + 2^5 + 2"
"znprimroot": 17
- "n": 2305842942239047681
"n_hex": "0x1ffffff068000001"
"n_bit": "2^61 - 2^36 + 2^31 - 2^29 + 2^27 + 1"
"n_fac": "2^27 * 3 * 5 * 7^2 * 19 * 29 * 59 * 719 + 1"
"nd": 1567252603350286335
"nd_hex": "0x15bffff067ffffff"
"nd_bit": "2^61 - 2^59 - 2^57 - 2^54 - 2^36 + 2^31 - 2^29 + 2^27 - 1"
"r2": 738720470626465896
"r2_hex": "0xa40765aa7fff868"
"r2_bit": "2^59 + 2^57 + 2^54 + 2^47 - 2^43 - 2^41 + 2^39 - 2^37 - 2^35 + 2^33 + 2^31 + 2^29 + 2^27 - 2^11 + 2^7 - 2^5 + 2^3"
"znprimroot": 11
- "n": 2305842744938987521
"n_hex": "0x1fffffc278000001"
"n_bit": "2^61 - 2^38 + 2^33 + 2^31 - 2^27 + 1"
"n_fac": "2^27 * 3^2 * 5 * 7^2 * 31 * 127 * 1979 + 1"
"nd": 558446089519235071
"nd_hex": "0x7bfffc277ffffff"
"nd_bit": "2^59 - 2^54 - 2^38 + 2^33 + 2^31 - 2^27 - 1"
"r2": 1755400479178721713
"r2_hex": "0x185c6f6f6fff89b1"
"r2_bit": "2^61 - 2^59 + 2^55 - 2^53 - 2^50 + 2^47 - 2^44 - 2^39 - 2^36 - 2^31 - 2^28 - 2^15 + 2^11 + 2^9 - 2^6 - 2^4 + 1"
"znprimroot": 26
- "n": 2305843007334645761
"n_hex": "0x1fffffff90000001"
"n_bit": "2^61 - 2^31 + 2^28 + 1"
"n_fac": "2^28 * 5 * 1717986917 + 1"
"nd": 1080863908689870847
"nd_hex": "0xeffffff8fffffff"
"nd_bit": "2^60 - 2^56 - 2^31 + 2^28 - 1"
"r2": 1224979096765726720
"r2_hex": "0x10ffffff90000000"
"r2_bit": "2^60 + 2^56 - 2^31 + 2^28"
"znprimroot": 3
- "n": 2305842062441840641
"n_hex": "0x1fffff2390000001"
"n_bit": "2^61 - 2^40 + 2^37 + 2^34 - 2^31 + 2^28 + 1"
"n_fac": "2^28 * 3^3 * 5 * 19 * 389 * 8609 + 1"
"nd": 1080862963797065727
"nd_hex": "0xeffff238fffffff"
"nd_bit": "2^60 - 2^56 - 2^40 + 2^37 + 2^34 - 2^31 + 2^28 - 1"
"r2": 1593026242129039740
"r2_hex": "0x161b90ed4ffa117c"
"r2_bit": "2^61 - 2^59 - 2^57 + 2^53 - 2^50 - 2^47 + 2^44 + 2^40 - 2^36 - 2^34 + 2^32 + 2^30 + 2^28 - 2^19 + 2^17 + 2^12 + 2^9 - 2^7 - 2^2"
"znprimroot": 7
- "n": 2305841434302873601
"n_hex": "0x1ffffe9150000001"
"n_bit": "2^61 - 2^41 + 2^39 + 2^36 + 2^32 + 2^30 + 2^28 + 1"
"n_fac": "2^28 * 3^2 * 5^2 * 7 * 17 * 31 * 79 * 131 + 1"
"nd": 504401583354675199
"nd_hex": "0x6fffe914fffffff"
"nd_bit": "2^59 - 2^56 - 2^41 + 2^39 + 2^36 + 2^32 + 2^30 + 2^28 - 1"
"r2": 1189690613326386723
"r2_hex": "0x1082a14f3fef9623"
"r2_bit": "2^60 + 2^55 + 2^49 + 2^47 + 2^45 + 2^40 + 2^38 + 2^36 - 2^32 + 2^30 - 2^20 - 2^15 + 2^13 - 2^11 - 2^9 + 2^5 + 2^2 - 1"
"znprimroot": 11
- "n": 2305843003308113921
"n_hex": "0x1ffffffea0000001"
"n_bit": "2^61 - 2^33 + 2^31 + 2^29 + 1"
"n_fac": "2^29 * 5 * 7 * 122713351 + 1"
"nd": 2017612627156402175
"nd_hex": "0x1bfffffe9fffffff"
"nd_bit": "2^61 - 2^58 - 2^33 + 2^31 + 2^29 - 1"
"r2": 288230452924252146
"r2_hex": "0x4000011dffffff2"
"r2_bit": "2^58 + 2^36 + 2^33 - 2^29 - 2^4 + 2"
"znprimroot": 6
- "n": 2305842995791921153
"n_hex": "0x1ffffffce0000001"
"n_bit": "2^61 - 2^34 + 2^32 - 2^29 + 1"
"n_fac": "2^29 * 3 * 7 * 19 * 3121 * 3449 + 1"
"nd": 2017612619640209407
"nd_hex": "0x1bfffffcdfffffff"
"nd_bit": "2^61 - 2^58 - 2^34 + 2^32 - 2^29 - 1"
"r2": 288231396206444467
"r2_hex": "0x40000ed7fffffb3"
"r2_bit": "2^58 + 2^40 - 2^36 - 2^33 - 2^31 - 2^6 - 2^4 + 2^2 - 1"
"znprimroot": 11
- "n": 2305842973243342849
"n_hex": "0x1ffffff7a0000001"
"n_bit": "2^61 - 2^35 - 2^31 + 2^29 + 1"
"n_fac": "2^29 * 3^2 * 7 * 977 * 69779 + 1"
"nd": 2017612597091631103
"nd_hex": "0x1bfffff79fffffff"
"nd_bit": "2^61 - 2^58 - 2^35 - 2^31 + 2^29 - 1"
"r2": 288250483577978320
"r2_hex": "0x40012499ffffdd0"
"r2_bit": "2^58 + 2^44 + 2^41 + 2^38 + 2^35 + 2^33 - 2^31 + 2^29 - 2^9 - 2^6 + 2^4"
"znprimroot": 11
- "n": 2305842718766530561
"n_hex": "0x1fffffbc60000001"
"n_bit": "2^61 - 2^38 - 2^34 + 2^31 - 2^29 + 1"
"n_fac": "2^29 * 3 * 5 * 23 * 349 * 35671 + 1"
"nd": 2017612342614818815
"nd_hex": "0x1bffffbc5fffffff"
"nd_bit": "2^61 - 2^58 - 2^38 - 2^34 + 2^31 - 2^29 - 1"
"r2": 298855804730044696
"r2_hex": "0x425bfc55fff7118"
"r2_bit": "2^58 + 2^53 + 2^51 - 2^49 - 2^46 - 2^38 + 2^35 - 2^33 - 2^31 - 2^29 - 2^15 - 2^12 + 2^8 + 2^5 - 2^3"
"znprimroot": 11
- "n": 2305842469121556481
"n_hex": "0x1fffff8240000001"
"n_bit": "2^61 - 2^39 + 2^33 + 2^30 + 1"
"n_fac": "2^30 * 3 * 5 * 37 * 1453 * 2663 + 1"
"nd": 1152920964514709503
"nd_hex": "0xfffff823fffffff"
"nd_bit": "2^60 - 2^39 + 2^33 + 2^30 - 1"
"r2": 1221244240181203417
"r2_hex": "0x10f2bb2a7ffe11d9"
"r2_bit": "2^60 + 2^56 - 2^52 + 2^50 - 2^48 - 2^46 - 2^42 - 2^40 + 2^37 + 2^35 + 2^33 + 2^31 - 2^17 + 2^12 + 2^9 - 2^5 - 2^3 + 1"
"znprimroot": 22
- "n": 2305842050362245121
"n_hex": "0x1fffff20c0000001"
"n_bit": "2^61 - 2^40 + 2^37 + 2^32 - 2^30 + 1"
"n_fac": "2^30 * 3^2 * 5 * 11 * 17 * 255197 + 1"
"nd": 1152920545755398143
"nd_hex": "0xfffff20bfffffff"
"nd_bit": "2^60 - 2^40 + 2^37 + 2^32 - 2^30 - 1"
"r2": 1535236671987640957
"r2_hex": "0x154e419e7ff9ea7d"
"r2_bit": "2^60 + 2^58 + 2^56 + 2^54 + 2^52 - 2^49 + 2^46 + 2^41 - 2^39 + 2^37 - 2^33 + 2^31 - 2^19 + 2^17 - 2^13 + 2^11 + 2^9 + 2^7 - 2^2 + 1"
"znprimroot": 7
- "n": 2305841180631367681
"n_hex": "0x1ffffe5640000001"
"n_bit": "2^61 - 2^41 + 2^39 - 2^37 - 2^35 - 2^33 + 2^30 + 1"
"n_fac": "2^30 * 3^2 * 5 * 7 * 113 * 60331 + 1"
"nd": 1152919676024520703
"nd_hex": "0xffffe563fffffff"
"nd_bit": "2^60 - 2^41 + 2^39 - 2^37 - 2^35 - 2^33 + 2^30 - 1"
"r2": 1498711212465708936
"r2_hex": "0x14cc7de83fe9df88"
"r2_bit": "2^60 + 2^58 + 2^56 - 2^54 + 2^52 - 2^50 + 2^47 - 2^41 - 2^37 + 2^35 + 2^30 - 2^21 + 2^19 + 2^17 - 2^13 - 2^7 + 2^3"
"znprimroot": 17
- "n": 2305842981296406529
"n_hex": "0x1ffffff980000001"
"n_bit": "2^61 - 2^35 + 2^33 - 2^31 + 1"
"n_fac": "2^31 * 3 * 17 * 467 * 45083 + 1"
"nd": 2305842981296406527
"nd_hex": "0x1ffffff97fffffff"
"nd_bit": "2^61 - 2^35 + 2^33 - 2^31 - 1"
"r2": 9380208574127
"r2_hex": "0x887fffffeaf"
"r2_bit": "2^43 + 2^39 + 2^35 - 2^8 - 2^6 - 2^4 - 1"
"znprimroot": 7
- "n": 2305841035676221441
"n_hex": "0x1ffffe3480000001"
"n_bit": "2^61 - 2^41 + 2^38 - 2^36 + 2^34 + 2^31 + 1"
"n_fac": "2^31 * 3^2 * 5 * 1297 * 18397 + 1"
"nd": 2305841035676221439
"nd_hex": "0x1ffffe347fffffff"
"nd_bit": "2^61 - 2^41 + 2^38 - 2^36 + 2^34 + 2^31 - 1"
"r2": 1027700579891558878
"r2_hex": "0xe43203b7fe639de"
"r2_bit": "2^60 - 2^57 + 2^54 + 2^50 - 2^48 + 2^45 + 2^38 - 2^34 - 2^31 - 2^21 + 2^19 - 2^17 + 2^14 - 2^11 + 2^9 - 2^5 - 2"
"znprimroot": 7
- "n": 2305838136573296641
"n_hex": "0x1ffffb9180000001"
"n_bit": "2^61 - 2^42 - 2^39 + 2^36 + 2^33 - 2^31 + 1"
"n_fac": "2^31 * 3^2 * 5 * 7 * 137 * 139 * 179 + 1"
"nd": 2305838136573296639
"nd_hex": "0x1ffffb917fffffff"
"nd_bit": "2^61 - 2^42 - 2^39 + 2^36 + 2^33 - 2^31 - 1"
"r2": 1749612963760890458
"r2_hex": "0x1847dfb87f62e25a"
"r2_bit": "2^61 - 2^59 + 2^54 + 2^51 - 2^45 - 2^38 - 2^35 + 2^31 - 2^23 - 2^21 + 2^18 - 2^16 - 2^13 + 2^9 + 2^7 - 2^5 - 2^3 + 2"
"znprimroot": 11
- "n": 2305842979148922881
"n_hex": "0x1ffffff900000001"
"n_bit": "2^61 - 2^35 + 2^32 + 1"
"n_fac": "2^32 * 5 * 4603 * 23327 + 1"
"nd": 2305842979148922879
"nd_hex": "0x1ffffff8ffffffff"
"nd_bit": "2^61 - 2^35 + 2^32 - 1"
"r2": 11725260717689
"r2_hex": "0xaa9fffffe79"
"r2_bit": "2^43 + 2^41 + 2^39 + 2^37 + 2^35 + 2^33 - 2^9 + 2^7 - 2^3 + 1"
"znprimroot": 3
- "n": 2305842163105136641
"n_hex": "0x1fffff3b00000001"
"n_bit": "2^61 - 2^40 + 2^38 - 2^34 - 2^32 + 1"
"n_fac": "2^32 * 3 * 5 * 23 * 1556147 + 1"
"nd": 2305842163105136639
"nd_hex": "0x1fffff3affffffff"
"nd_bit": "2^61 - 2^40 + 2^38 - 2^34 - 2^32 - 1"
"r2": 262691323788346169
"r2_hex": "0x3a5445dfffb4339"
"r2_bit": "2^58 - 2^55 + 2^53 + 2^50 + 2^48 + 2^46 + 2^42 + 2^39 - 2^37 - 2^33 - 2^18 - 2^16 + 2^14 + 2^10 - 2^8 + 2^6 - 2^3 + 1"
"znprimroot": 7
- "n": 2305839199577702401
"n_hex": "0x1ffffc8900000001"
"n_bit": "2^61 - 2^42 + 2^39 + 2^35 + 2^32 + 1"
"n_fac": "2^32 * 3^4 * 5^2 * 23 * 11527 + 1"
"nd": 2305839199577702399
"nd_hex": "0x1ffffc88ffffffff"
"nd_bit": "2^61 - 2^42 + 2^39 + 2^35 + 2^32 - 1"
"r2": 920028380443702639
"r2_hex": "0xcc498efff9ff56f"
"r2_bit": "2^60 - 2^58 + 2^56 - 2^54 + 2^50 + 2^47 + 2^45 - 2^43 + 2^40 - 2^36 - 2^23 + 2^21 - 2^11 - 2^9 - 2^7 - 2^4 - 1"
"znprimroot": 11
- "n": 2305842949084151809
"n_hex": "0x1ffffff200000001"
"n_bit": "2^61 - 2^36 + 2^33 + 1"
"n_fac": "2^33 * 3^2 * 4813 * 6197 + 1"
"nd": 2305842949084151807
"nd_hex": "0x1ffffff1ffffffff"
"nd_bit": "2^61 - 2^36 + 2^33 - 1"
"r2": 94162862995937
"r2_hex": "0x55a3fffff9e1"
"r2_bit": "2^47 - 2^45 - 2^43 - 2^41 - 2^39 + 2^37 + 2^34 - 2^11 + 2^9 - 2^5 + 1"
"znprimroot": 7
- "n": 2305841969831608321
"n_hex": "0x1fffff0e00000001"
"n_bit": "2^61 - 2^40 + 2^36 - 2^33 + 1"
"n_fac": "2^33 * 3 * 5 * 7 * 1093 * 2339 + 1"
"nd": 2305841969831608319
"nd_hex": "0x1fffff0dffffffff"
"nd_bit": "2^61 - 2^40 + 2^36 - 2^33 - 1"
"r2": 486960900938979809
"r2_hex": "0x6c2085bfff8d9e1"
"r2_bit": "2^59 - 2^56 - 2^54 + 2^49 + 2^43 + 2^39 - 2^37 - 2^34 - 2^19 + 2^16 - 2^13 - 2^11 + 2^9 - 2^5 + 1"
"znprimroot": 17
- "n": 2305842785875394561
"n_hex": "0x1fffffcc00000001"
"n_bit": "2^61 - 2^38 + 2^36 - 2^34 + 1"
"n_fac": "2^34 * 5 * 26843543 + 1"
"nd": 2305842785875394559
"nd_hex": "0x1fffffcbffffffff"
"nd_bit": "2^61 - 2^38 + 2^36 - 2^34 - 1"
"r2": 4830807415827329
"r2_hex": "0x112997ffffab81"
"r2_bit": "2^52 + 2^48 + 2^45 + 2^43 + 2^41 - 2^39 + 2^37 - 2^35 - 2^14 - 2^12 - 2^10 - 2^7 + 1"
"znprimroot": 3
- "n": 2305838490908098561
"n_hex": "0x1ffffbe400000001"
"n_bit": "2^61 - 2^42 - 2^37 + 2^34 + 1"
"n_fac": "2^34 * 3 * 5 * 17 * 53 * 9931 + 1"
"nd": 2305838490908098559
"nd_hex": "0x1ffffbe3ffffffff"
"nd_bit": "2^61 - 2^42 - 2^37 + 2^34 - 1"
"r2": 804151623083943792
"r2_hex": "0xb28eba3ff78e770"
"r2_bit": "2^60 - 2^58 - 2^56 + 2^53 + 2^51 + 2^48 - 2^44 - 2^42 - 2^39 + 2^37 + 2^34 - 2^23 - 2^19 + 2^16 - 2^13 + 2^11 - 2^7 - 2^4"
"znprimroot": 11
- "n": 2305837460115947521
"n_hex": "0x1ffffaf400000001"
"n_bit": "2^61 - 2^42 - 2^40 - 2^36 + 2^34 + 1"
"n_fac": "2^34 * 3^5 * 5 * 7 * 43 * 367 + 1"
"nd": 2305837460115947519
"nd_hex": "0x1ffffaf3ffffffff"
"nd_bit": "2^61 - 2^42 - 2^40 - 2^36 + 2^34 - 1"
"r2": 316462982881360737
"r2_hex": "0x4644d67ff343b61"
"r2_bit": "2^58 + 2^55 - 2^53 + 2^50 + 2^46 + 2^44 - 2^41 - 2^39 - 2^37 + 2^35 - 2^24 + 2^22 - 2^20 + 2^18 + 2^14 - 2^10 - 2^7 - 2^5 + 1"
"znprimroot": 19
- "n": 2305842218939711489
"n_hex": "0x1fffff4800000001"
"n_bit": "2^61 - 2^40 + 2^38 + 2^35 + 1"
"n_fac": "2^35 * 41 * 79 * 20719 + 1"
"nd": 2305842218939711487
"nd_hex": "0x1fffff47ffffffff"
"nd_bit": "2^61 - 2^40 + 2^38 + 2^35 - 1"
"r2": 214042547054173697
"r2_hex": "0x2f86e8ffffbde01"
"r2_bit": "2^58 - 2^56 - 2^51 + 2^47 - 2^44 - 2^41 + 2^39 + 2^36 - 2^18 - 2^13 - 2^9 + 1"
"znprimroot": 3
- "n": 2305842150220234753
"n_hex": "0x1fffff3800000001"
"n_bit": "2^61 - 2^40 + 2^38 - 2^35 + 1"
"n_fac": "2^35 * 3 * 7 * 1171 * 2729 + 1"
"nd": 2305842150220234751
"nd_hex": "0x1fffff37ffffffff"
"nd_bit": "2^61 - 2^40 + 2^38 - 2^35 - 1"
"r2": 274876188956761601
"r2_hex": "0x3d08e6ffffb1e01"
"r2_bit": "2^58 - 2^54 + 2^52 + 2^47 + 2^44 - 2^41 + 2^39 - 2^36 - 2^18 - 2^16 + 2^13 - 2^9 + 1"
"znprimroot": 5
- "n": 2305805247861227521
"n_hex": "0x1fffdda800000001"
"n_bit": "2^61 - 2^45 - 2^41 - 2^39 + 2^37 + 2^35 + 1"
"n_fac": "2^35 * 3 * 5 * 1439 * 3109 + 1"
"nd": 2305805247861227519
"nd_hex": "0x1fffdda7ffffffff"
"nd_bit": "2^61 - 2^45 - 2^41 - 2^39 + 2^37 + 2^35 - 1"
"r2": 508205784252016242
"r2_hex": "0x70d8277db23e672"
"r2_bit": "2^59 - 2^56 + 2^52 - 2^49 - 2^47 + 2^41 + 2^39 - 2^35 - 2^29 - 2^26 - 2^24 + 2^21 + 2^18 - 2^13 + 2^11 - 2^9 + 2^7 - 2^4 + 2"
"znprimroot": 11
- "n": 2305767108551639041
"n_hex": "0x1fffbaf800000001"
"n_bit": "2^61 - 2^46 - 2^42 - 2^40 - 2^35 + 1"
"n_fac": "2^35 * 3^2 * 5 * 7 * 11 * 107 * 181 + 1"
"nd": 2305767108551639039
"nd_hex": "0x1fffbaf7ffffffff"
"nd_bit": "2^61 - 2^46 - 2^42 - 2^40 - 2^35 - 1"
"r2": 1368554389653175488
"r2_hex": "0x12fe14f76b143cc0"
"r2_bit": "2^60 + 2^58 - 2^56 - 2^49 + 2^44 + 2^42 + 2^40 - 2^35 - 2^31 - 2^28 - 2^26 - 2^24 + 2^20 + 2^18 + 2^14 - 2^10 + 2^8 - 2^6"
"znprimroot": 17
- "n": 2305838542447706113
"n_hex": "0x1ffffbf000000001"
"n_bit": "2^61 - 2^42 - 2^36 + 1"
"n_fac": "2^36 * 3^2 * 7^2 * 11 * 6917 + 1"
"nd": 2305838542447706111
"nd_hex": "0x1ffffbefffffffff"
"nd_bit": "2^61 - 2^42 - 2^36 - 1"
"r2": 1756607126878025713
"r2_hex": "0x1860b8dfff7bf7f1"
"r2_bit": "2^61 - 2^59 + 2^55 - 2^53 + 2^48 - 2^46 - 2^43 + 2^40 - 2^37 - 2^23 - 2^18 - 2^11 - 2^4 + 1"
"znprimroot": 5
- "n": 2305765562363412481
"n_hex": "0x1fffb99000000001"
"n_bit": "2^61 - 2^46 - 2^43 + 2^41 - 2^39 + 2^36 + 1"
"n_fac": "2^36 * 3^3 * 5 * 248543 + 1"
"nd": 2305765562363412479
"nd_hex": "0x1fffb98fffffffff"
"nd_bit": "2^61 - 2^46 - 2^43 + 2^41 - 2^39 + 2^36 - 1"
"r2": 1883207779325518519
"r2_hex": "0x1a227f7f64f322b7"
"r2_bit": "2^61 - 2^59 + 2^57 + 2^53 + 2^49 + 2^47 - 2^39 - 2^31 - 2^29 + 2^26 + 2^24 - 2^20 + 2^18 - 2^16 + 2^13 + 2^10 - 2^8 - 2^6 - 2^3 - 1"
"znprimroot": 7
- "n": 2305720207508766721
"n_hex": "0x1fff905000000001"
"n_bit": "2^61 - 2^47 + 2^44 + 2^38 + 2^36 + 1"
"n_fac": "2^36 * 3 * 5 * 7 * 17 * 18797 + 1"
"nd": 2305720207508766719
"nd_hex": "0x1fff904fffffffff"
"nd_bit": "2^61 - 2^47 + 2^44 + 2^38 + 2^36 - 1"
"r2": 1719406656248997731
"r2_hex": "0x17dc8f3e7a29e763"
"r2_bit": "2^61 - 2^59 - 2^53 - 2^50 + 2^47 + 2^44 - 2^40 + 2^38 - 2^33 + 2^31 - 2^27 + 2^25 + 2^21 + 2^19 + 2^17 - 2^13 + 2^11 - 2^7 - 2^5 + 2^2 - 1"
"znprimroot": 22
- "n": 2305474878976819201
"n_hex": "0x1ffeb13000000001"
"n_bit": "2^61 - 2^48 - 2^46 - 2^44 + 2^40 + 2^38 - 2^36 + 1"
"n_fac": "2^36 * 3^2 * 5^2 * 7^2 * 17 * 179 + 1"
"nd": 2305474878976819199
"nd_hex": "0x1ffeb12fffffffff"
"nd_bit": "2^61 - 2^48 - 2^46 - 2^44 + 2^40 + 2^38 - 2^36 - 1"
"r2": 453388714892428680
"r2_hex": "0x64ac2a250558588"
"r2_bit": "2^59 - 2^57 + 2^54 + 2^52 - 2^50 - 2^48 - 2^46 + 2^41 + 2^39 + 2^37 + 2^33 + 2^30 + 2^28 + 2^23 - 2^21 - 2^19 - 2^17 - 2^15 + 2^11 - 2^9 - 2^7 + 2^3"
"znprimroot": 26
- "n": 2305841497385205761
"n_hex": "0x1ffffea000000001"
"n_bit": "2^61 - 2^41 + 2^39 + 2^37 + 1"
"n_fac": "2^37 * 5 * 83 * 40427 + 1"
"nd": 2305841497385205759
"nd_hex": "0x1ffffe9fffffffff"
"nd_bit": "2^61 - 2^41 + 2^39 + 2^37 - 1"
"r2": 1498569752349564929
"r2_hex": "0x14cbfd3ffff0e001"
"r2_bit": "2^60 + 2^58 + 2^56 - 2^54 + 2^52 - 2^50 - 2^42 + 2^40 + 2^38 - 2^20 + 2^16 - 2^13 + 1"
"znprimroot": 3
- "n": 2305797516920094721
"n_hex": "0x1fffd6a000000001"
"n_bit": "2^61 - 2^45 - 2^43 - 2^41 + 2^39 + 2^37 + 1"
"n_fac": "2^37 * 3 * 5 * 47 * 53 * 449 + 1"
"nd": 2305797516920094719
"nd_hex": "0x1fffd69fffffffff"
"nd_bit": "2^61 - 2^45 - 2^43 - 2^41 + 2^39 + 2^37 - 1"
"r2": 1655495486943042262
"r2_hex": "0x16f9805fca809ad6"
"r2_bit": "2^61 - 2^59 - 2^56 - 2^51 + 2^49 - 2^47 + 2^39 - 2^37 - 2^30 + 2^27 + 2^25 + 2^23 + 2^15 + 2^13 - 2^10 - 2^8 - 2^5 - 2^3 - 2"
"znprimroot": 11
- "n": 2305595481658490881
"n_hex": "0x1fff1ee000000001"
"n_bit": "2^61 - 2^48 + 2^45 - 2^40 - 2^37 + 1"
"n_fac": "2^37 * 3^2 * 5 * 113 * 3299 + 1"
"nd": 2305595481658490879
"nd_hex": "0x1fff1edfffffffff"
"nd_bit": "2^61 - 2^48 + 2^45 - 2^40 - 2^37 - 1"
"r2": 492213533468678298
"r2_hex": "0x6d4b199d00a589a"
"r2_bit": "2^59 - 2^56 - 2^54 + 2^52 + 2^50 + 2^48 - 2^46 - 2^44 + 2^41 - 2^39 + 2^37 - 2^35 + 2^33 - 2^30 + 2^28 + 2^19 + 2^17 + 2^15 - 2^13 - 2^11 + 2^7 + 2^5 - 2^3 + 2"
"znprimroot": 7
- "n": 2305409939071303681
"n_hex": "0x1ffe762000000001"
"n_bit": "2^61 - 2^49 + 2^47 - 2^43 - 2^41 + 2^37 + 1"
"n_fac": "2^37 * 3^2 * 5 * 7 * 11 * 47 * 103 + 1"
"nd": 2305409939071303679
"nd_hex": "0x1ffe761fffffffff"
"nd_bit": "2^61 - 2^49 + 2^47 - 2^43 - 2^41 + 2^37 - 1"
"r2": 2000149008525999143
"r2_hex": "0x1bc1f4ed0f0abc27"
"r2_bit": "2^61 - 2^58 - 2^54 + 2^49 - 2^44 + 2^42 + 2^40 - 2^36 - 2^34 + 2^32 + 2^28 - 2^24 + 2^20 - 2^18 - 2^16 - 2^14 - 2^10 + 2^5 + 2^3 - 1"
"znprimroot": 23
- "n": 2305839985556717569
"n_hex": "0x1ffffd4000000001"
"n_bit": "2^61 - 2^42 + 2^40 + 2^38 + 1"
"n_fac": "2^38 * 3 * 7 * 173 * 2309 + 1"
"nd": 2305839985556717567
"nd_hex": "0x1ffffd3fffffffff"
"nd_bit": "2^61 - 2^42 + 2^40 + 2^38 - 1"
"r2": 459376232958754812
"r2_hex": "0x660083fffc37ffc"
"r2_bit": "2^59 - 2^57 + 2^55 - 2^53 + 2^43 + 2^38 - 2^22 + 2^18 - 2^15 - 2^2"
"znprimroot": 26
- "n": 2305826791417184257
"n_hex": "0x1ffff14000000001"
"n_bit": "2^61 - 2^44 + 2^40 + 2^38 + 1"
"n_fac": "2^38 * 3^3 * 13 * 23899 + 1"
"nd": 2305826791417184255
"nd_hex": "0x1ffff13fffffffff"
"nd_bit": "2^61 - 2^44 + 2^40 + 2^38 - 1"
"r2": 616456587161337055
"r2_hex": "0x88e17fff9337cdf"
"r2_bit": "2^59 + 2^55 + 2^52 - 2^49 + 2^45 - 2^43 - 2^27 + 2^24 + 2^22 - 2^20 + 2^18 - 2^15 - 2^10 + 2^8 - 2^5 - 1"
"znprimroot": 5
- "n": 2304673953475461121
"n_hex": "0x1ffbd8c000000001"
"n_bit": "2^61 - 2^50 - 2^45 - 2^43 + 2^40 - 2^38 + 1"
"n_fac": "2^38 * 3^2 * 5 * 7 * 43 * 619 + 1"
"nd": 2304673953475461119
"nd_hex": "0x1ffbd8bfffffffff"
"nd_bit": "2^61 - 2^50 - 2^45 - 2^43 + 2^40 - 2^38 - 1"
"r2": 645502067815736278
"r2_hex": "0x8f548b5edefe3d6"
"r2_bit": "2^59 + 2^56 - 2^52 + 2^50 + 2^48 + 2^46 + 2^43 + 2^40 - 2^38 - 2^35 - 2^33 - 2^28 - 2^25 - 2^20 - 2^13 + 2^10 - 2^5 - 2^3 - 2"
"znprimroot": 23
- "n": 2305840260434624513
"n_hex": "0x1ffffd8000000001"
"n_bit": "2^61 - 2^41 - 2^39 + 1"
"n_fac": "2^39 * 29 * 61 * 2371 + 1"
"nd": 2305840260434624511
"nd_hex": "0x1ffffd7fffffffff"
"nd_bit": "2^61 - 2^41 - 2^39 - 1"
"r2": 2089672975875702782
"r2_hex": "0x1d00027fffcdfffe"
"r2_bit": "2^61 - 2^58 + 2^56 + 2^41 + 2^39 - 2^22 + 2^20 - 2^17 - 2"
"znprimroot": 3
- "n": 2305835862388113409
"n_hex": "0x1ffff98000000001"
"n_bit": "2^61 - 2^43 + 2^41 - 2^39 + 1"
"n_fac": "2^39 * 3 * 17 * 82241 + 1"
"nd": 2305835862388113407
"nd_hex": "0x1ffff97fffffffff"
"nd_bit": "2^61 - 2^43 + 2^41 - 2^39 - 1"
"r2": 1513681165262651325
"r2_hex": "0x1501acfffeadffbd"
"r2_bit": "2^60 + 2^58 + 2^56 + 2^49 - 2^46 - 2^44 - 2^42 + 2^40 - 2^24 - 2^22 - 2^20 - 2^17 - 2^6 - 2^2 + 1"
"znprimroot": 23
- "n": 2305684129783480321
"n_hex": "0x1fff6f8000000001"
"n_bit": "2^61 - 2^47 - 2^44 - 2^39 + 1"
"n_fac": "2^39 * 3 * 5 * 7 * 59 * 677 + 1"
"nd": 2305684129783480319
"nd_hex": "0x1fff6f7fffffffff"
"nd_bit": "2^61 - 2^47 - 2^44 - 2^39 - 1"
"r2": 18760406200909138
"r2_hex": "0x42a67d73727d52"
"r2_bit": "2^54 + 2^49 + 2^47 + 2^45 + 2^43 - 2^41 + 2^39 - 2^33 - 2^31 - 2^28 + 2^26 - 2^23 - 2^20 + 2^17 + 2^15 - 2^10 + 2^8 + 2^6 + 2^4 + 2"
"znprimroot": 19
- "n": 2305552188388147201
"n_hex": "0x1ffef78000000001"
"n_bit": "2^61 - 2^48 - 2^43 - 2^39 + 1"
"n_fac": "2^39 * 3^4 * 5^2 * 19 * 109 + 1"
"nd": 2305552188388147199
"nd_hex": "0x1ffef77fffffffff"
"nd_bit": "2^61 - 2^48 - 2^43 - 2^39 - 1"
"r2": 154247700797679344
"r2_hex": "0x223ff77757766f0"
"r2_bit": "2^57 + 2^53 + 2^50 - 2^39 - 2^35 - 2^31 - 2^27 - 2^25 - 2^23 - 2^19 - 2^15 - 2^13 + 2^11 - 2^8 - 2^4"
"znprimroot": 7
- "n": 2305835312632299521
"n_hex": "0x1ffff90000000001"
"n_bit": "2^61 - 2^43 + 2^40 + 1"
"n_fac": "2^40 * 5 * 419429 + 1"
"nd": 2305835312632299519
"nd_hex": "0x1ffff8ffffffffff"
"nd_bit": "2^61 - 2^43 + 2^40 - 1"
"r2": 1730021073140318124
"r2_hex": "0x180244fffe77ffac"
"r2_bit": "2^61 - 2^59 + 2^49 + 2^46 + 2^42 + 2^40 - 2^25 + 2^23 - 2^19 - 2^6 - 2^4 - 2^2"
"znprimroot": 3
- "n": 2305804526306721793
"n_hex": "0x1fffdd0000000001"
"n_bit": "2^61 - 2^45 - 2^42 + 2^40 + 1"
"n_fac": "2^40 * 3^3 * 11 * 23 * 307 + 1"
"nd": 2305804526306721791
"nd_hex": "0x1fffdcffffffffff"
"nd_bit": "2^61 - 2^45 - 2^42 + 2^40 - 1"
"r2": 2141765087381673507
"r2_hex": "0x1db913ffd9b7d623"
"r2_bit": "2^61 - 2^57 - 2^54 - 2^51 + 2^48 + 2^44 + 2^42 - 2^29 - 2^27 + 2^25 - 2^22 - 2^19 - 2^13 - 2^11 - 2^9 + 2^5 + 2^2 - 1"
"znprimroot": 5
- "n": 2305758346818355201
"n_hex": "0x1fffb30000000001"
"n_bit": "2^61 - 2^46 - 2^44 + 2^42 - 2^40 + 1"
"n_fac": "2^40 * 3 * 5^2 * 27961 + 1"
"nd": 2305758346818355199
"nd_hex": "0x1fffb2ffffffffff"
"nd_bit": "2^61 - 2^46 - 2^44 + 2^42 - 2^40 - 1"
"r2": 1016031204328489512
"r2_hex": "0xe19aaff46b64228"
"r2_bit": "2^60 - 2^57 + 2^53 - 2^51 + 2^49 - 2^46 - 2^44 - 2^42 - 2^40 - 2^32 + 2^30 + 2^27 - 2^24 - 2^22 - 2^19 - 2^17 + 2^14 + 2^9 + 2^5 + 2^3"
"znprimroot": 7
- "n": 2305497762562572289
"n_hex": "0x1ffec60000000001"
"n_bit": "2^61 - 2^48 - 2^46 + 2^43 - 2^41 + 1"
"n_fac": "2^41 * 3^2 * 116491 + 1"
"nd": 2305497762562572287
"nd_hex": "0x1ffec5ffffffffff"
"nd_bit": "2^61 - 2^48 - 2^46 + 2^43 - 2^41 - 1"
"r2": 62599543315358192
"r2_hex": "0xde65f3f669e1f0"
"r2_bit": "2^56 - 2^53 - 2^49 + 2^47 - 2^45 + 2^43 - 2^41 - 2^36 + 2^34 - 2^27 - 2^25 + 2^23 - 2^21 + 2^19 + 2^17 - 2^13 + 2^9 - 2^4"
"znprimroot": 7
- "n": 2305379015306772481
"n_hex": "0x1ffe5a0000000001"
"n_bit": "2^61 - 2^49 + 2^47 - 2^45 - 2^43 + 2^41 + 1"
"n_fac": "2^41 * 3^2 * 5 * 23297 + 1"
"nd": 2305379015306772479
"nd_hex": "0x1ffe59ffffffffff"
"nd_bit": "2^61 - 2^49 + 2^47 - 2^45 - 2^43 + 2^41 - 1"
"r2": 814507125354087206
"r2_hex": "0xb4db5ea41c14326"
"r2_bit": "2^60 - 2^58 - 2^56 + 2^54 + 2^52 - 2^49 - 2^46 - 2^43 - 2^41 - 2^37 + 2^35 + 2^33 + 2^30 + 2^25 - 2^22 + 2^16 + 2^14 + 2^10 - 2^8 + 2^5 + 2^3 - 2"
"znprimroot": 7
- "n": 2305082147167272961
"n_hex": "0x1ffd4c0000000001"
"n_bit": "2^61 - 2^50 + 2^48 + 2^46 + 2^44 - 2^42 + 1"
"n_fac": "2^42 * 3^2 * 5 * 19 * 613 + 1"
"nd": 2305082147167272959
"nd_hex": "0x1ffd4bffffffffff"
"nd_bit": "2^61 - 2^50 + 2^48 + 2^46 + 2^44 - 2^42 - 1"
"r2": 2285884423000784353
"r2_hex": "0x1fb917c5868f7de1"
"r2_bit": "2^61 - 2^54 - 2^51 + 2^48 + 2^45 - 2^43 - 2^38 + 2^35 - 2^33 - 2^31 + 2^27 - 2^25 + 2^23 + 2^20 - 2^15 - 2^9 - 2^5 + 1"
"znprimroot": 21
- "n": 2303894674609274881
"n_hex": "0x1ff9140000000001"
"n_bit": "2^61 - 2^51 + 2^48 + 2^44 + 2^42 + 1"
"n_fac": "2^42 * 3^2 * 5 * 7 * 1663 + 1"
"nd": 2303894674609274879
"nd_hex": "0x1ff913ffffffffff"
"nd_bit": "2^61 - 2^51 + 2^48 + 2^44 + 2^42 - 1"
"r2": 2037899173969584320
"r2_hex": "0x1c4812806084e0c0"
"r2_bit": "2^61 - 2^58 + 2^54 + 2^51 + 2^44 + 2^41 + 2^39 + 2^31 - 2^29 + 2^23 + 2^18 + 2^16 - 2^13 + 2^8 - 2^6"
"znprimroot": 11
- "n": 2305728660004405249
"n_hex": "0x1fff980000000001"
"n_bit": "2^61 - 2^47 + 2^45 - 2^43 + 1"
"n_fac": "2^43 * 3 * 23 * 29 * 131 + 1"
"nd": 2305728660004405247
"nd_hex": "0x1fff97ffffffffff"
"nd_bit": "2^61 - 2^47 + 2^45 - 2^43 - 1"
"r2": 2182125955185358196
"r2_hex": "0x1e4877feadfbb574"
"r2_bit": "2^61 - 2^57 + 2^54 + 2^51 + 2^47 - 2^43 - 2^32 - 2^30 - 2^28 - 2^25 - 2^18 - 2^14 - 2^11 - 2^9 - 2^7 - 2^4 + 2^2"
"znprimroot": 7
- "n": 2304356469492940801
"n_hex": "0x1ffab80000000001"
"n_bit": "2^61 - 2^50 - 2^48 - 2^46 - 2^43 + 1"
"n_fac": "2^43 * 3 * 5^2 * 7 * 499 + 1"
"nd": 2304356469492940799
"nd_hex": "0x1ffab7ffffffffff"
"nd_bit": "2^61 - 2^50 - 2^48 - 2^46 - 2^43 - 1"
"r2": 2216614482630053535
"r2_hex": "0x1ec2ff20b9268e9f"
"r2_bit": "2^61 - 2^56 - 2^54 + 2^50 - 2^48 - 2^40 + 2^37 + 2^32 - 2^30 - 2^27 + 2^24 + 2^21 + 2^19 - 2^17 + 2^15 + 2^12 - 2^9 + 2^7 + 2^5 - 1"
"znprimroot": 17
- "n": 2299342696470282241
"n_hex": "0x1fe8e80000000001"
"n_bit": "2^61 - 2^53 + 2^51 + 2^48 - 2^45 + 2^43 + 1"
"n_fac": "2^43 * 3^2 * 5 * 37 * 157 + 1"
"nd": 2299342696470282239
"nd_hex": "0x1fe8e7ffffffffff"
"nd_bit": "2^61 - 2^53 + 2^51 + 2^48 - 2^45 + 2^43 - 1"
"r2": 1057228024219613982
"r2_hex": "0xeac07495e32bb1e"
"r2_bit": "2^60 - 2^56 - 2^54 - 2^52 - 2^50 + 2^43 - 2^40 + 2^38 + 2^35 + 2^33 - 2^31 - 2^29 - 2^25 + 2^22 - 2^20 + 2^18 - 2^16 - 2^14 - 2^10 - 2^8 + 2^5 - 2"
"znprimroot": 17
- "n": 2296967751354286081
"n_hex": "0x1fe0780000000001"
"n_bit": "2^61 - 2^53 + 2^47 - 2^43 + 1"
"n_fac": "2^43 * 3^2 * 5 * 7 * 829 + 1"
"nd": 2296967751354286079
"nd_hex": "0x1fe077ffffffffff"
"nd_bit": "2^61 - 2^53 + 2^47 - 2^43 - 1"
"r2": 238251866846678797
"r2_hex": "0x34e70cf82784f0d"
"r2_bit": "2^58 - 2^56 + 2^54 + 2^52 - 2^49 + 2^47 - 2^44 + 2^40 - 2^38 + 2^36 - 2^31 + 2^25 + 2^23 - 2^19 + 2^14 + 2^12 - 2^8 + 2^4 - 2^2 + 1"
"znprimroot": 29
- "n": 2305543942050938881
"n_hex": "0x1ffef00000000001"
"n_bit": "2^61 - 2^48 - 2^44 + 1"
"n_fac": "2^44 * 3 * 5 * 8737 + 1"
"nd": 2305543942050938879
"nd_hex": "0x1ffeefffffffffff"
"nd_bit": "2^61 - 2^48 - 2^44 - 1"
"r2": 1365329520113170805
"r2_hex": "0x12f29ff6f7b33975"
"r2_bit": "2^60 + 2^58 - 2^56 - 2^52 + 2^49 + 2^47 + 2^45 - 2^35 - 2^32 - 2^27 - 2^22 - 2^20 + 2^18 - 2^16 + 2^14 - 2^11 + 2^9 - 2^7 - 2^4 + 2^2 + 1"
"znprimroot": 7
- "n": 2304963399911473153
"n_hex": "0x1ffce00000000001"
"n_bit": "2^61 - 2^50 + 2^48 - 2^45 + 1"
"n_fac": "2^45 * 3^2 * 29 * 251 + 1"
"nd": 2304963399911473151
"nd_hex": "0x1ffcdfffffffffff"
"nd_bit": "2^61 - 2^50 + 2^48 - 2^45 - 1"
"r2": 1746692632305606963
"r2_hex": "0x183d7fb1d85e2133"
"r2_bit": "2^61 - 2^59 + 2^54 - 2^49 - 2^47 - 2^38 - 2^36 + 2^33 - 2^29 - 2^27 + 2^23 - 2^21 - 2^17 + 2^13 + 2^8 + 2^6 - 2^4 + 2^2 - 1"
"znprimroot": 5
- "n": 2249864673220362241
"n_hex": "0x1f39200000000001"
"n_bit": "2^61 - 2^56 + 2^54 - 2^51 + 2^48 + 2^45 + 1"
"n_fac": "2^45 * 3^2 * 5 * 7^2 * 29 + 1"
"nd": 2249864673220362239
"nd_hex": "0x1f391fffffffffff"
"nd_bit": "2^61 - 2^56 + 2^54 - 2^51 + 2^48 + 2^45 - 1"
"r2": 9690293838439650
"r2_hex": "0x226d455a0264e2"
"r2_bit": "2^53 + 2^49 + 2^47 - 2^44 - 2^42 + 2^40 + 2^38 + 2^35 - 2^33 - 2^31 - 2^29 - 2^27 + 2^25 + 2^17 + 2^15 - 2^13 + 2^10 + 2^8 - 2^5 + 2"
"znprimroot": 19
- "n": 2301972728283922433
"n_hex": "0x1ff2400000000001"
"n_bit": "2^61 - 2^52 + 2^49 + 2^46 + 1"
"n_fac": "2^46 * 32713 + 1"
"nd": 2301972728283922431
"nd_hex": "0x1ff23fffffffffff"
"nd_bit": "2^61 - 2^52 + 2^49 + 2^46 - 1"
"r2": 1572242344101627534
"r2_hex": "0x15d1ba14f501468e"
"r2_bit": "2^61 - 2^59 - 2^57 - 2^54 + 2^52 + 2^49 - 2^46 - 2^43 + 2^41 + 2^36 + 2^34 + 2^32 - 2^28 + 2^26 + 2^24 + 2^16 + 2^14 + 2^11 - 2^9 + 2^7 + 2^4 - 2"
"znprimroot": 3
- "n": 2297891341121617921
"n_hex": "0x1fe3c00000000001"
"n_bit": "2^61 - 2^53 + 2^50 - 2^46 + 1"
"n_fac": "2^46 * 3 * 5 * 7 * 311 + 1"
"nd": 2297891341121617919
"nd_hex": "0x1fe3bfffffffffff"
"nd_bit": "2^61 - 2^53 + 2^50 - 2^46 - 1"
"r2": 1241277131186370711
"r2_hex": "0x1139e6f9682df897"
"r2_bit": "2^60 + 2^56 + 2^54 - 2^51 + 2^49 - 2^45 + 2^43 - 2^40 - 2^35 + 2^33 - 2^31 - 2^29 + 2^27 + 2^22 - 2^20 - 2^17 - 2^11 + 2^7 + 2^5 - 2^3 - 1"
"znprimroot": 29
- "n": 2295780278796288001
"n_hex": "0x1fdc400000000001"
"n_bit": "2^61 - 2^53 - 2^50 + 2^46 + 1"
"n_fac": "2^46 * 3^2 * 5^3 * 29 + 1"
"nd": 2295780278796287999
"nd_hex": "0x1fdc3fffffffffff"
"nd_bit": "2^61 - 2^53 - 2^50 + 2^46 - 1"
"r2": 332448209865525572
"r2_hex": "0x49d17e2af3fc944"
"r2_bit": "2^58 + 2^55 + 2^53 - 2^50 + 2^48 + 2^45 - 2^43 - 2^37 + 2^34 - 2^32 - 2^30 - 2^28 - 2^24 + 2^22 - 2^14 + 2^11 + 2^8 + 2^6 + 2^2"
"znprimroot": 17
- "n": 2290502622982963201
"n_hex": "0x1fc9800000000001"
"n_bit": "2^61 - 2^54 + 2^51 + 2^49 - 2^47 + 1"
"n_fac": "2^47 * 3 * 5^2 * 7 * 31 + 1"
"nd": 2290502622982963199
"nd_hex": "0x1fc97fffffffffff"
"nd_bit": "2^61 - 2^54 + 2^51 + 2^49 - 2^47 - 1"
"r2": 2290399882454597632
"r2_hex": "0x1fc9228edb4d8000"
"r2_bit": "2^61 - 2^54 + 2^51 + 2^48 + 2^45 + 2^41 + 2^39 + 2^36 - 2^32 - 2^29 - 2^26 - 2^24 + 2^22 + 2^20 - 2^17 - 2^15"
"znprimroot": 22
- "n": 2172283132764487681
"n_hex": "0x1e25800000000001"
"n_bit": "2^61 - 2^57 + 2^53 + 2^51 - 2^49 - 2^47 + 1"
"n_fac": "2^47 * 3^2 * 5 * 7^3 + 1"
"nd": 2172283132764487679
"nd_hex": "0x1e257fffffffffff"
"nd_bit": "2^61 - 2^57 + 2^53 + 2^51 - 2^49 - 2^47 - 1"
"r2": 80452870158168481
"r2_hex": "0x11dd3758af031a1"
"r2_bit": "2^56 + 2^53 - 2^49 - 2^46 + 2^44 + 2^42 - 2^39 - 2^35 - 2^33 - 2^31 + 2^28 - 2^26 - 2^24 - 2^20 + 2^14 - 2^12 + 2^9 - 2^7 + 2^5 + 1"
"znprimroot": 23
- "n": 2300494984656191489
"n_hex": "0x1fed000000000001"
"n_bit": "2^61 - 2^52 - 2^50 + 2^48 + 1"
"n_fac": "2^48 * 11 * 743 + 1"
"nd": 2300494984656191487
"nd_hex": "0x1fecffffffffffff"
"nd_bit": "2^61 - 2^52 - 2^50 + 2^48 - 1"
"r2": 2182826011689975830
"r2_hex": "0x1e4af4b149438016"
"r2_bit": "2^61 - 2^57 + 2^54 + 2^52 - 2^50 - 2^48 - 2^44 + 2^42 + 2^40 - 2^38 - 2^36 + 2^32 + 2^30 + 2^27 + 2^24 + 2^22 + 2^18 - 2^15 + 2^5 - 2^3 - 2"
"znprimroot": 3
- "n": 2292613685308293121
"n_hex": "0x1fd1000000000001"
"n_bit": "2^61 - 2^54 + 2^52 + 2^48 + 1"
"n_fac": "2^48 * 3^2 * 5 * 181 + 1"
"nd": 2292613685308293119
"nd_hex": "0x1fd0ffffffffffff"
"nd_bit": "2^61 - 2^54 + 2^52 + 2^48 - 1"
"r2": 835904342190555769
"r2_hex": "0xb99ba9206798279"
"r2_bit": "2^60 - 2^58 - 2^55 + 2^53 - 2^51 + 2^49 - 2^46 - 2^43 + 2^41 + 2^39 + 2^36 + 2^33 + 2^27 - 2^25 + 2^23 - 2^19 + 2^17 - 2^15 + 2^9 + 2^7 - 2^3 + 1"
"znprimroot": 7
- "n": 1980176461159464961
"n_hex": "0x1b7b000000000001"
"n_bit": "2^61 - 2^58 - 2^55 - 2^50 - 2^48 + 1"
"n_fac": "2^48 * 3 * 5 * 7 * 67 + 1"
"nd": 1980176461159464959
"nd_hex": "0x1b7affffffffffff"
"nd_bit": "2^61 - 2^58 - 2^55 - 2^50 - 2^48 - 1"
"r2": 951305439977334325
"r2_hex": "0xd33b741e6bee635"
"r2_bit": "2^60 - 2^58 + 2^56 + 2^54 - 2^52 + 2^50 - 2^46 - 2^43 - 2^40 + 2^38 + 2^33 - 2^29 + 2^27 - 2^24 - 2^22 - 2^16 - 2^13 + 2^11 - 2^9 + 2^6 - 2^4 + 2^2 + 1"
"znprimroot": 19
- "n": 2299650559726059521
"n_hex": "0x1fea000000000001"
"n_bit": "2^61 - 2^53 + 2^51 + 2^49 + 1"
"n_fac": "2^49 * 5 * 19 * 43 + 1"
"nd": 2299650559726059519
"nd_hex": "0x1fe9ffffffffffff"
"nd_bit": "2^61 - 2^53 + 2^51 + 2^49 - 1"
"r2": 790928009662362216
"r2_hex": "0xaf9f0d592d4f268"
"r2_bit": "2^60 - 2^58 - 2^56 - 2^51 + 2^49 - 2^44 + 2^40 - 2^37 - 2^35 - 2^33 - 2^31 + 2^28 + 2^26 - 2^24 - 2^22 + 2^20 + 2^18 + 2^16 - 2^12 + 2^9 + 2^7 - 2^5 + 2^3"
"znprimroot": 3
- "n": 1967510087207485441
"n_hex": "0x1b4e000000000001"
"n_bit": "2^61 - 2^58 - 2^56 + 2^54 + 2^52 - 2^49 + 1"
"n_fac": "2^49 * 3 * 5 * 233 + 1"
"nd": 1967510087207485439
"nd_hex": "0x1b4dffffffffffff"
"nd_bit": "2^61 - 2^58 - 2^56 + 2^54 + 2^52 - 2^49 - 1"
"r2": 397809752364043461
"r2_hex": "0x5854ddcb1d84cc5"
"r2_bit": "2^59 - 2^57 - 2^55 + 2^50 + 2^48 + 2^46 + 2^44 - 2^41 - 2^37 - 2^34 + 2^32 - 2^30 - 2^28 + 2^25 - 2^21 - 2^19 + 2^14 + 2^12 - 2^10 + 2^8 - 2^6 + 2^2 + 1"
"znprimroot": 14
- "n": 1950621588604846081
"n_hex": "0x1b12000000000001"
"n_bit": "2^61 - 2^58 - 2^56 + 2^52 + 2^49 + 1"
"n_fac": "2^49 * 3^2 * 5 * 7 * 11 + 1"
"nd": 1950621588604846079
"nd_hex": "0x1b11ffffffffffff"
"nd_bit": "2^61 - 2^58 - 2^56 + 2^52 + 2^49 - 1"
"r2": 1885933358762369024
"r2_hex": "0x1a2c2e65cf172000"
"r2_bit": "2^61 - 2^59 + 2^57 + 2^54 - 2^52 - 2^50 + 2^46 - 2^44 - 2^41 + 2^39 - 2^37 + 2^35 - 2^33 - 2^30 + 2^28 - 2^24 + 2^21 - 2^19 - 2^16 + 2^13"
"znprimroot": 26
- "n": 2158350121417310209
"n_hex": "0x1df4000000000001"
"n_bit": "2^61 - 2^57 - 2^52 + 2^50 + 1"
"n_fac": "2^50 * 3^3 * 71 + 1"
"nd": 2158350121417310207
"nd_hex": "0x1df3ffffffffffff"
"nd_bit": "2^61 - 2^57 - 2^52 + 2^50 - 1"
"r2": 2097605560246154639
"r2_hex": "0x1d1c3124b95b358f"
"r2_bit": "2^61 - 2^58 + 2^56 + 2^53 - 2^50 + 2^46 - 2^44 + 2^40 + 2^37 + 2^34 + 2^32 - 2^30 - 2^27 + 2^25 - 2^23 - 2^21 - 2^18 - 2^16 + 2^14 - 2^11 - 2^9 - 2^7 + 2^4 - 1"
"znprimroot": 19
- "n": 1773292353277132801
"n_hex": "0x189c000000000001"
"n_bit": "2^61 - 2^59 + 2^55 + 2^53 - 2^50 + 1"
"n_fac": "2^50 * 3^2 * 5^2 * 7 + 1"
"nd": 1773292353277132799
"nd_hex": "0x189bffffffffffff"
"nd_bit": "2^61 - 2^59 + 2^55 + 2^53 - 2^50 - 1"
"r2": 1613358092795867136
"r2_hex": "0x1663cca330997000"
"r2_bit": "2^61 - 2^59 - 2^57 + 2^55 - 2^53 + 2^50 - 2^46 + 2^44 - 2^42 + 2^39 + 2^37 + 2^34 - 2^32 + 2^30 - 2^28 + 2^23 + 2^21 - 2^19 + 2^17 - 2^15 - 2^12"
"znprimroot": 17
- "n": 2276569611635785729
"n_hex": "0x1f98000000000001"
"n_bit": "2^61 - 2^55 + 2^53 - 2^51 + 1"
"n_fac": "2^51 * 3 * 337 + 1"
"nd": 2276569611635785727
"nd_hex": "0x1f97ffffffffffff"
"nd_bit": "2^61 - 2^55 + 2^53 - 2^51 - 1"
"r2": 1276394080740828588
"r2_hex": "0x11b6a9a75ff7e5ac"
"r2_bit": "2^60 + 2^57 - 2^54 - 2^51 - 2^49 + 2^47 + 2^45 + 2^43 + 2^41 - 2^39 + 2^37 + 2^35 - 2^31 - 2^29 - 2^19 - 2^13 + 2^11 - 2^9 - 2^6 - 2^4 - 2^2"
"znprimroot": 11
- "n": 1587518868648099841
"n_hex": "0x1608000000000001"
"n_bit": "2^61 - 2^59 - 2^57 + 2^51 + 1"
"n_fac": "2^51 * 3 * 5 * 47 + 1"
"nd": 1587518868648099839
"nd_hex": "0x1607ffffffffffff"
"nd_bit": "2^61 - 2^59 - 2^57 + 2^51 - 1"
"r2": 46518031895761636
"r2_hex": "0xa543e74ecc12e4"
"r2_bit": "2^55 + 2^53 + 2^50 + 2^48 + 2^46 + 2^42 - 2^37 + 2^35 - 2^32 + 2^30 + 2^28 - 2^24 - 2^22 + 2^20 - 2^18 + 2^12 + 2^10 - 2^8 - 2^5 + 2^2"
"znprimroot": 7
- "n": 303992974847508481
"n_hex": "0x438000000000001"
"n_bit": "2^58 + 2^54 - 2^51 + 1"
"n_fac": "2^51 * 3^3 * 5 + 1"
"nd": 303992974847508479
"nd_hex": "0x437ffffffffffff"
"nd_bit": "2^58 + 2^54 - 2^51 - 1"
"r2": 294468695635550934
"r2_hex": "0x41629b7f0d462d6"
"r2_bit": "2^58 + 2^53 - 2^51 - 2^49 + 2^45 + 2^43 + 2^41 - 2^38 - 2^35 - 2^28 + 2^24 - 2^22 + 2^20 + 2^18 + 2^15 - 2^13 + 2^10 - 2^8 - 2^5 - 2^3 - 2"
"znprimroot": 11
- "n": 2287828610704211969
"n_hex": "0x1fc0000000000001"
"n_bit": "2^61 - 2^54 + 1"
"n_fac": "2^54 * 127 + 1"
"nd": 2287828610704211967
"nd_hex": "0x1fbfffffffffffff"
"nd_bit": "2^61 - 2^54 - 1"
"r2": 540290109626904545
"r2_hex": "0x77f7efdfbf7efe1"
"r2_bit": "2^59 - 2^55 - 2^47 - 2^40 - 2^33 - 2^26 - 2^19 - 2^12 - 2^5 + 1"
"znprimroot": 3
- "n": 2053641430080946177
"n_hex": "0x1c80000000000001"
"n_bit": "2^61 - 2^58 + 2^55 + 1"
"n_fac": "2^55 * 3 * 19 + 1"
"nd": 2053641430080946175
"nd_hex": "0x1c7fffffffffffff"
"nd_bit": "2^61 - 2^58 + 2^55 - 1"
"r2": 941805395758882674
"r2_hex": "0xd11f7047dc11f72"
"r2_bit": "2^60 - 2^58 + 2^56 + 2^52 + 2^49 - 2^43 - 2^40 + 2^34 + 2^31 - 2^25 - 2^22 + 2^16 + 2^13 - 2^7 - 2^4 + 2"
"znprimroot": 7
- "n": 1945555039024054273
"n_hex": "0x1b00000000000001"
"n_bit": "2^61 - 2^58 - 2^56 + 1"
"n_fac": "2^56 * 3^3 + 1"
"nd": 1945555039024054271
"nd_hex": "0x1affffffffffffff"
"nd_bit": "2^61 - 2^58 - 2^56 - 1"
"r2": 581798351861788522
"r2_hex": "0x812f684bda12f6a"
"r2_bit": "2^59 + 2^52 + 2^50 - 2^48 - 2^43 - 2^41 + 2^39 + 2^34 + 2^32 - 2^30 - 2^25 - 2^23 + 2^21 + 2^16 + 2^14 - 2^12 - 2^7 - 2^5 + 2^3 + 2"
"znprimroot": 5
- "r": 62
"primes":
- "n": 4611686018427387847
"n_hex": "0x3fffffffffffffc7"
"n_bit": "2^62 - 2^6 + 2^3 - 1"
"n_fac": "2 * 3^2 * 1289 * 198762435067123 + 1"
"nd": 161813544506224137
"nd_hex": "0x23ee08fb823ee09"
"nd_bit": "2^57 + 2^54 - 2^48 - 2^45 + 2^39 + 2^36 - 2^30 - 2^27 + 2^21 + 2^18 - 2^12 - 2^9 + 2^3 + 1"
"r2": 3249
"r2_hex": "0xcb1"
"r2_bit": "2^12 - 2^10 + 2^8 - 2^6 - 2^4 + 1"
"znprimroot": 6
- "n": 4611686018427387751
"n_hex": "0x3fffffffffffff67"
"n_bit": "2^62 - 2^7 - 2^5 + 2^3 - 1"
"n_fac": "2 * 3 * 5^3 * 6148914691236517 + 1"
"nd": 1416661718079001513
"nd_hex": "0x13a8fe53a8fe53a9"
"nd_bit": "2^60 + 2^58 - 2^55 + 2^53 + 2^51 + 2^48 - 2^41 + 2^38 + 2^36 + 2^34 - 2^31 + 2^29 + 2^27 + 2^24 - 2^17 + 2^14 + 2^12 + 2^10 - 2^7 + 2^5 + 2^3 + 1"
"r2": 23409
"r2_hex": "0x5b71"
"r2_bit": "2^15 - 2^13 - 2^10 - 2^7 - 2^4 + 1"
"znprimroot": 3
- "n": 4611686018427387631
"n_hex": "0x3ffffffffffffeef"
"n_bit": "2^62 - 2^8 - 2^4 - 1"
"n_fac": "2 * 3^2 * 5 * 51240955760304307c + 1"
"nd": 1148698348912316401
"nd_hex": "0xff0ff0ff0ff0ff1"
"nd_bit": "2^60 - 2^52 + 2^48 - 2^40 + 2^36 - 2^28 + 2^24 - 2^16 + 2^12 - 2^4 + 1"
"r2": 74529
"r2_hex": "0x12321"
"r2_bit": "2^16 + 2^13 + 2^10 - 2^8 + 2^5 + 1"
"znprimroot": 3
- "n": 4611686018427387271
"n_hex": "0x3ffffffffffffd87"
"n_bit": "2^62 - 2^9 - 2^7 + 2^3 - 1"
"n_fac": "2 * 3^3 * 5 * 7 * 23 * 1171 * 90596870471 + 1"
"nd": 3096313677459146697
"nd_hex": "0x2af850e27a22c7c9"
"nd_bit": "2^62 - 2^60 - 2^58 - 2^56 - 2^51 + 2^46 + 2^44 + 2^40 - 2^37 + 2^33 + 2^31 - 2^27 + 2^25 + 2^21 + 2^18 - 2^16 - 2^14 + 2^11 - 2^6 + 2^3 + 1"
"r2": 400689
"r2_hex": "0x61d31"
"r2_bit": "2^19 - 2^17 + 2^13 - 2^10 + 2^8 + 2^6 - 2^4 + 1"
"znprimroot": 7
- "n": 4611686018427387421
"n_hex": "0x3ffffffffffffe1d"
"n_bit": "2^62 - 2^9 + 2^5 - 2^2 + 1"
"n_fac": "2^2 * 3 * 5 * 19 * 37 * 89 * 191 * 4211 * 1527371 + 1"
"nd": 4458917951564368843
"nd_hex": "0x3de14240a99b4bcb"
"nd_bit": "2^62 - 2^57 - 2^53 + 2^48 + 2^46 + 2^41 + 2^38 + 2^31 + 2^29 + 2^27 + 2^25 - 2^23 + 2^21 - 2^18 - 2^16 + 2^14 + 2^12 - 2^10 - 2^6 + 2^4 - 2^2 - 1"
"r2": 233289
"r2_hex": "0x38f49"
"r2_bit": "2^18 - 2^15 + 2^12 - 2^8 + 2^6 + 2^3 + 1"
"znprimroot": 2
- "n": 4611686018427387817
"n_hex": "0x3fffffffffffffa9"
"n_bit": "2^62 - 2^7 + 2^5 + 2^3 + 1"
"n_fac": "2^3 * 3 * 7 * 67 * 97 * 4273 * 4759 * 207709 + 1"
"nd": 2809417919271856999
"nd_hex": "0x26fd0eb66fd0eb67"
"nd_bit": "2^61 + 2^59 - 2^56 - 2^50 + 2^48 + 2^44 - 2^40 - 2^38 - 2^35 - 2^33 + 2^31 - 2^28 - 2^22 + 2^20 + 2^16 - 2^12 - 2^10 - 2^7 - 2^5 + 2^3 - 1"
"r2": 7569
"r2_hex": "0x1d91"
"r2_bit": "2^13 - 2^9 - 2^7 + 2^4 + 1"
"znprimroot": 5
- "n": 4611686018427387241
"n_hex": "0x3ffffffffffffd69"
"n_bit": "2^62 - 2^9 - 2^7 - 2^5 + 2^3 + 1"
"n_fac": "2^3 * 3 * 5 * 11 * 3493701529111657c + 1"
"nd": 2100647326644149543
"nd_hex": "0x1d26ff9d26ff9d27"
"nd_bit": "2^61 - 2^58 + 2^56 + 2^53 + 2^51 - 2^48 - 2^39 + 2^37 - 2^34 + 2^32 + 2^29 + 2^27 - 2^24 - 2^15 + 2^13 - 2^10 + 2^8 + 2^5 + 2^3 - 1"
"r2": 439569
"r2_hex": "0x6b511"
"r2_bit": "2^19 - 2^16 - 2^14 - 2^12 + 2^10 + 2^8 + 2^4 + 1"
"znprimroot": 21
- "n": 4611686018427385801
"n_hex": "0x3ffffffffffff7c9"
"n_bit": "2^62 - 2^11 - 2^6 + 2^3 + 1"
"n_fac": "2^3 * 3 * 5^2 * 7 * 17 * 64589440033997 + 1"
"nd": 3063492804442729863
"nd_hex": "0x2a83b6797cc62d87"
"nd_bit": "2^61 + 2^59 + 2^57 + 2^55 + 2^50 - 2^46 - 2^43 - 2^41 + 2^39 - 2^35 + 2^33 - 2^31 - 2^26 + 2^24 - 2^22 + 2^19 - 2^17 + 2^14 - 2^12 - 2^9 - 2^7 + 2^3 - 1"
"r2": 4422609
"r2_hex": "0x437bd1"
"r2_bit": "2^22 + 2^18 - 2^15 - 2^10 - 2^6 + 2^4 + 1"
"znprimroot": 13
- "n": 4611686018427381961
"n_hex": "0x3fffffffffffe8c9"
"n_bit": "2^62 - 2^13 + 2^11 + 2^8 - 2^6 + 2^3 + 1"
"n_fac": "2^3 * 3^2 * 5 * 11 * 131 * 8889825773821c + 1"
"nd": 3100064890394988167
"nd_hex": "0x2b05a497cca74e87"
"nd_bit": "2^62 - 2^60 - 2^58 - 2^56 + 2^51 - 2^49 - 2^47 + 2^45 + 2^42 + 2^39 + 2^37 - 2^35 - 2^30 + 2^28 - 2^26 + 2^23 + 2^21 + 2^19 - 2^16 + 2^14 + 2^12 - 2^9 + 2^7 + 2^3 - 1"
"r2": 35319249
"r2_hex": "0x21aedd1"
"r2_bit": "2^25 + 2^21 - 2^18 - 2^16 - 2^12 - 2^9 - 2^6 + 2^4 + 1"
"znprimroot": 17
- "n": 4611686018427379081
"n_hex": "0x3fffffffffffdd89"
"n_bit": "2^62 - 2^13 - 2^9 - 2^7 + 2^3 + 1"
"n_fac": "2^3 * 3^2 * 5 * 7 * 269 * 6803100870991 + 1"
"nd": 1277452185088579399
"nd_hex": "0x11ba6bfe7dc05747"
"nd_bit": "2^60 + 2^57 - 2^54 - 2^51 + 2^49 + 2^47 - 2^44 - 2^42 - 2^33 + 2^31 - 2^25 - 2^22 + 2^15 - 2^13 - 2^11 - 2^8 + 2^6 + 2^3 - 1"
"r2": 77845329
"r2_hex": "0x4a3d351"
"r2_bit": "2^26 + 2^23 + 2^21 + 2^18 - 2^14 + 2^12 + 2^10 - 2^8 + 2^6 + 2^4 + 1"
"znprimroot": 37
- "n": 4611686018427387761
"n_hex": "0x3fffffffffffff71"
"n_bit": "2^62 - 2^7 - 2^4 + 1"
"n_fac": "2^4 * 5 * 7 * 1901 * 8069 * 536870909 + 1"
"nd": 3450702125676437103
"nd_hex": "0x2fe35b4cfaa11e6f"
"nd_bit": "2^62 - 2^60 - 2^53 + 2^50 - 2^47 - 2^45 - 2^42 - 2^40 + 2^38 + 2^36 - 2^34 + 2^32 - 2^27 + 2^25 + 2^23 + 2^21 + 2^16 + 2^13 - 2^9 + 2^7 - 2^4 - 1"
"r2": 20449
"r2_hex": "0x4fe1"
"r2_bit": "2^14 + 2^12 - 2^5 + 1"
"znprimroot": 3
- "n": 4611686018427387409
"n_hex": "0x3ffffffffffffe11"
"n_bit": "2^62 - 2^9 + 2^4 + 1"
"n_fac": "2^4 * 3 * 23 * 41 * 101884190933797 + 1"
"nd": 3456435379467799823
"nd_hex": "0x2ff7b9aa26454d0f"
"nd_bit": "2^62 - 2^60 - 2^51 - 2^46 - 2^43 + 2^41 - 2^39 + 2^37 + 2^35 + 2^33 + 2^29 + 2^27 - 2^25 + 2^22 + 2^18 + 2^16 + 2^14 + 2^12 - 2^10 + 2^8 + 2^4 - 1"
"r2": 245025
"r2_hex": "0x3bd21"
"r2_bit": "2^18 - 2^14 - 2^10 + 2^8 + 2^5 + 1"
"znprimroot": 7
- "n": 4611686018427382801
"n_hex": "0x3fffffffffffec11"
"n_bit": "2^62 - 2^12 - 2^10 + 2^4 + 1"
"n_fac": "2^4 * 3 * 5^2 * 733 * 5242935446143c + 1"
"nd": 3857079350705093391
"nd_hex": "0x3587193bd9457b0f"
"nd_bit": "2^62 - 2^59 - 2^57 - 2^55 + 2^51 - 2^48 + 2^45 - 2^43 + 2^40 + 2^38 - 2^34 - 2^29 - 2^27 + 2^24 + 2^22 + 2^19 - 2^17 - 2^15 - 2^10 - 2^8 + 2^4 - 1"
"r2": 26040609
"r2_hex": "0x18d5921"
"r2_bit": "2^25 - 2^23 + 2^20 - 2^17 - 2^15 - 2^13 - 2^11 + 2^8 + 2^5 + 1"
"znprimroot": 17
- "n": 4611686018427376561
"n_hex": "0x3fffffffffffd3b1"
"n_bit": "2^62 - 2^14 + 2^12 + 2^10 - 2^6 - 2^4 + 1"
"n_fac": "2^4 * 3^2 * 5 * 7^2 * 59 * 67 * 401 * 2293 * 35963 + 1"
"nd": 696042181393607343
"nd_hex": "0x9a8d6ad1aa76aaf"
"nd_bit": "2^59 + 2^57 - 2^55 + 2^53 + 2^51 + 2^48 - 2^45 - 2^43 - 2^40 - 2^38 - 2^36 - 2^34 + 2^32 + 2^29 - 2^27 + 2^25 + 2^23 + 2^21 + 2^19 - 2^15 - 2^12 - 2^10 - 2^8 - 2^6 - 2^4 - 1"
"r2": 128663649
"r2_hex": "0x7ab4061"
"r2_bit": "2^27 - 2^22 - 2^20 - 2^18 - 2^16 + 2^14 + 2^7 - 2^5 + 1"
"znprimroot": 43
- "n": 4611686018427387617
"n_hex": "0x3ffffffffffffee1"
"n_bit": "2^62 - 2^8 - 2^5 + 1"
"n_fac": "2^5 * 144115188075855863c + 1"
"nd": 3454747365720865503
"nd_hex": "0x2ff1ba6cd2823adf"
"nd_bit": "2^62 - 2^60 - 2^52 + 2^49 - 2^46 - 2^43 + 2^41 + 2^39 - 2^36 - 2^34 + 2^32 - 2^30 + 2^28 + 2^25 + 2^23 + 2^17 + 2^14 - 2^10 - 2^8 - 2^5 - 1"
"r2": 82369
"r2_hex": "0x141c1"
"r2_bit": "2^16 + 2^14 + 2^9 - 2^6 + 1"
"znprimroot": 3
- "n": 4611686018427338401
"n_hex": "0x3fffffffffff3ea1"
"n_bit": "2^62 - 2^16 + 2^14 - 2^9 + 2^7 + 2^5 + 1"
"n_fac": "2^5 * 3^4 * 5^2 * 11 * 19 * 340516718237 + 1"
"nd": 2776812014448925343
"nd_hex": "0x268937d0a143da9f"
"nd_bit": "2^61 + 2^59 - 2^57 + 2^55 + 2^51 + 2^48 + 2^46 - 2^43 - 2^38 + 2^36 + 2^31 + 2^29 + 2^24 + 2^22 + 2^18 - 2^13 - 2^11 + 2^9 + 2^7 + 2^5 - 1"
"r2": 2450547009
"r2_hex": "0x92106141"
"r2_bit": "2^31 + 2^28 + 2^25 + 2^20 + 2^15 - 2^13 + 2^8 + 2^6 + 1"
"znprimroot": 34
- "n": 4611686018427387329
"n_hex": "0x3ffffffffffffdc1"
"n_bit": "2^62 - 2^9 - 2^6 + 1"
"n_fac": "2^6 * 11 * 13 * 503899259006489c + 1"
"nd": 2454218994154401215
"nd_hex": "0x220f232c1396edbf"
"nd_bit": "2^61 + 2^57 + 2^52 - 2^48 + 2^45 + 2^42 - 2^40 + 2^38 - 2^36 - 2^34 + 2^28 + 2^26 - 2^23 + 2^21 - 2^19 - 2^16 - 2^12 - 2^9 - 2^6 - 1"
"r2": 330625
"r2_hex": "0x50b81"
"r2_bit": "2^18 + 2^16 + 2^12 - 2^10 - 2^7 + 1"
"znprimroot": 3
- "n": 4611686018427387073
"n_hex": "0x3ffffffffffffcc1"
"n_bit": "2^62 - 2^10 + 2^8 - 2^6 + 1"
"n_fac": "2^6 * 3^2 * 8006399337547547 + 1"
"nd": 4189919306754124991
"nd_hex": "0x3a2595690ca16cbf"
"nd_bit": "2^62 - 2^59 + 2^57 + 2^53 + 2^51 - 2^49 - 2^47 + 2^45 - 2^43 - 2^41 - 2^39 - 2^37 + 2^35 + 2^32 + 2^28 - 2^26 + 2^23 + 2^21 + 2^17 - 2^15 - 2^12 - 2^10 + 2^8 - 2^6 - 1"
"r2": 690561
"r2_hex": "0xa8981"
"r2_bit": "2^19 + 2^17 + 2^15 + 2^11 + 2^9 - 2^7 + 1"
"znprimroot": 5
- "n": 4611686018427364801
"n_hex": "0x3fffffffffffa5c1"
"n_bit": "2^62 - 2^15 + 2^13 + 2^11 - 2^9 - 2^6 + 1"
"n_fac": "2^6 * 3 * 5^2 * 7^2 * 11^2 * 277 * 1811 * 323027 + 1"
"nd": 1017233776994588095
"nd_hex": "0xe1df0bb0b4a95bf"
"nd_bit": "2^60 - 2^57 + 2^53 - 2^49 - 2^44 + 2^40 - 2^38 - 2^34 - 2^32 + 2^28 - 2^26 - 2^24 + 2^22 + 2^19 + 2^17 + 2^15 + 2^13 - 2^11 - 2^9 - 2^6 - 1"
"r2": 533748609
"r2_hex": "0x1fd05b81"
"r2_bit": "2^29 - 2^22 + 2^20 + 2^15 - 2^13 - 2^10 - 2^7 + 1"
"znprimroot": 13
- "n": 4611686018427334081
"n_hex": "0x3fffffffffff2dc1"
"n_bit": "2^62 - 2^16 + 2^14 - 2^12 - 2^9 - 2^6 + 1"
"n_fac": "2^6 * 3^3 * 5 * 13 * 59 * 695906070191c + 1"
"nd": 430468583255842239
"nd_hex": "0x5f954e54fee1dbf"
"nd_bit": "2^59 - 2^57 - 2^51 + 2^48 + 2^46 + 2^44 + 2^42 + 2^40 - 2^37 + 2^34 + 2^32 + 2^30 + 2^28 - 2^20 - 2^17 + 2^13 - 2^9 - 2^6 - 1"
"r2": 2896915329
"r2_hex": "0xacab6b81"
"r2_bit": "2^32 - 2^30 - 2^28 - 2^26 + 2^24 - 2^22 - 2^20 - 2^18 - 2^15 - 2^12 - 2^10 - 2^7 + 1"
"znprimroot": 19
- "n": 4611686018427230401
"n_hex": "0x3ffffffffffd98c1"
"n_bit": "2^62 - 2^17 - 2^15 + 2^13 - 2^11 + 2^8 - 2^6 + 1"
"n_fac": "2^6 * 3^3 * 5^2 * 7 * 101 * 150992915371c + 1"
"nd": 4175267790808484031
"nd_hex": "0x39f187ef294508bf"
"nd_bit": "2^62 - 2^59 + 2^57 - 2^52 + 2^49 - 2^47 + 2^43 - 2^36 - 2^32 + 2^29 + 2^27 + 2^24 + 2^22 + 2^18 + 2^16 + 2^11 + 2^8 - 2^6 - 1"
"r2": 24807195009
"r2_hex": "0x5c69fc181"
"r2_bit": "2^35 - 2^33 - 2^30 + 2^27 - 2^25 + 2^23 + 2^21 - 2^14 + 2^9 - 2^7 + 1"
"znprimroot": 22
- "n": 4611686018427382913
"n_hex": "0x3fffffffffffec81"
"n_bit": "2^62 - 2^12 - 2^10 + 2^7 + 1"
"n_fac": "2^7 * 593 * 60756824652553c + 1"
"nd": 3258025425961725055
"nd_hex": "0x2d36d4dcf7a3ac7f"
"nd_bit": "2^62 - 2^60 - 2^58 + 2^56 + 2^54 - 2^51 - 2^48 - 2^46 + 2^44 + 2^42 + 2^40 - 2^37 - 2^34 + 2^32 - 2^27 - 2^23 + 2^21 + 2^18 - 2^14 - 2^12 - 2^10 + 2^7 - 1"
"r2": 24910081
"r2_hex": "0x17c1901"
"r2_bit": "2^25 - 2^23 - 2^18 + 2^13 - 2^11 + 2^8 + 1"
"znprimroot": 3
- "n": 4611686018427370369
"n_hex": "0x3fffffffffffbb81"
"n_bit": "2^62 - 2^14 - 2^10 - 2^7 + 1"
"n_fac": "2^7 * 3^3 * 4877 * 273610803689 + 1"
"nd": 3127320128036502399
"nd_hex": "0x2b667916528b7b7f"
"nd_bit": "2^62 - 2^60 - 2^58 - 2^55 - 2^53 + 2^51 - 2^49 + 2^47 - 2^43 + 2^40 + 2^37 - 2^35 - 2^33 + 2^30 + 2^28 + 2^25 + 2^23 + 2^20 - 2^18 - 2^15 - 2^10 - 2^7 - 1"
"r2": 307476225
"r2_hex": "0x1253b701"
"r2_bit": "2^28 + 2^25 + 2^22 + 2^20 + 2^18 - 2^14 - 2^11 - 2^8 + 1"
"znprimroot": 17
- "n": 4611686018427285121
"n_hex": "0x3ffffffffffe6e81"
"n_bit": "2^62 - 2^17 + 2^15 - 2^12 - 2^9 + 2^7 + 1"
"n_fac": "2^7 * 3^2 * 5 * 53 * 8677 * 1740971977 + 1"
"nd": 26741434546400895
"nd_hex": "0x5f01316aec2e7f"
"nd_bit": "2^55 - 2^53 - 2^48 + 2^40 + 2^38 - 2^36 + 2^33 - 2^31 - 2^28 - 2^26 - 2^24 - 2^20 - 2^18 + 2^14 - 2^12 - 2^9 + 2^7 - 1"
"r2": 10564345089
"r2_hex": "0x275af1d01"
"r2_bit": "2^33 + 2^31 - 2^27 - 2^25 - 2^22 - 2^20 - 2^16 + 2^13 - 2^10 + 2^8 + 1"
"znprimroot": 17
- "n": 4611686018427089281
"n_hex": "0x3ffffffffffb7181"
"n_bit": "2^62 - 2^18 - 2^15 - 2^12 + 2^9 - 2^7 + 1"
"n_fac": "2^7 * 3^2 * 5 * 7 * 114377133393529 + 1"
"nd": 247384154365833599
"nd_hex": "0x36ee293e409317f"
"nd_bit": "2^58 - 2^55 - 2^52 - 2^48 - 2^45 + 2^41 + 2^39 + 2^36 + 2^34 - 2^29 + 2^26 + 2^19 + 2^16 + 2^14 - 2^12 + 2^9 - 2^7 - 1"
"r2": 89175696129
"r2_hex": "0x14c3492301"
"r2_bit": "2^36 + 2^34 + 2^32 - 2^30 + 2^26 - 2^24 + 2^22 + 2^19 + 2^16 + 2^13 + 2^10 - 2^8 + 1"
"znprimroot": 23
- "n": 4611686018427318529
"n_hex": "0x3ffffffffffef101"
"n_bit": "2^62 - 2^16 - 2^12 + 2^8 + 1"
"n_fac": "2^8 * 3^3 * 41 * 16273169385259c + 1"
"nd": 2920302392440123647
"nd_hex": "0x2886ff8db21df0ff"
"nd_bit": "2^61 + 2^59 + 2^55 + 2^51 - 2^48 - 2^39 + 2^36 - 2^33 - 2^30 - 2^28 + 2^25 + 2^21 - 2^17 - 2^12 + 2^8 - 1"
"r2": 4812890625
"r2_hex": "0x11edee201"
"r2_bit": "2^32 + 2^29 - 2^24 - 2^21 - 2^16 - 2^13 + 2^9 + 1"
"znprimroot": 7
- "n": 4611686018427379201
"n_hex": "0x3fffffffffffde01"
"n_bit": "2^62 - 2^13 - 2^9 + 1"
"n_fac": "2^9 * 3 * 5^2 * 120095990063213c + 1"
"nd": 3630318385872231935
"nd_hex": "0x32617b56737bddff"
"nd_bit": "2^62 - 2^60 + 2^57 + 2^55 - 2^53 + 2^49 - 2^47 - 2^42 - 2^39 - 2^37 - 2^35 - 2^33 + 2^31 - 2^28 + 2^26 - 2^23 - 2^18 - 2^13 - 2^9 - 1"
"r2": 75742209
"r2_hex": "0x483bc01"
"r2_bit": "2^26 + 2^23 + 2^18 - 2^14 - 2^10 + 1"
"znprimroot": 19
- "n": 4611686018427136513
"n_hex": "0x3ffffffffffc2a01"
"n_bit": "2^62 - 2^18 + 2^13 + 2^11 + 2^9 + 1"
"n_fac": "2^9 * 3^2 * 17 * 733 * 3671 * 4373 * 5003 + 1"
"nd": 3377474675802647039
"nd_hex": "0x2edf3352b11829ff"
"nd_bit": "2^62 - 2^60 - 2^56 - 2^53 - 2^48 + 2^46 - 2^44 + 2^42 - 2^40 + 2^38 + 2^36 + 2^34 - 2^32 - 2^30 - 2^28 + 2^24 + 2^21 - 2^19 + 2^13 + 2^11 + 2^9 - 1"
"r2": 63197434881
"r2_hex": "0xeb6dc5401"
"r2_bit": "2^36 - 2^32 - 2^30 - 2^27 - 2^24 - 2^21 - 2^18 + 2^14 + 2^12 + 2^10 + 1"
"znprimroot": 5
- "n": 4611686018427366401
"n_hex": "0x3fffffffffffac01"
"n_bit": "2^62 - 2^14 - 2^12 - 2^10 + 1"
"n_fac": "2^10 * 5^2 * 180143985094819 + 1"
"nd": 2806945384791780351
"nd_hex": "0x26f445f4a46fabff"
"nd_bit": "2^61 + 2^59 - 2^56 - 2^52 + 2^50 + 2^46 + 2^43 - 2^41 - 2^36 + 2^34 + 2^31 + 2^29 + 2^26 + 2^23 - 2^20 - 2^14 - 2^12 - 2^10 - 1"
"r2": 462379009
"r2_hex": "0x1b8f5801"
"r2_bit": "2^29 - 2^26 - 2^23 + 2^20 - 2^15 - 2^13 - 2^11 + 1"
"znprimroot": 6
- "n": 4611686018427048961
"n_hex": "0x3ffffffffffad401"
"n_bit": "2^62 - 2^18 - 2^16 - 2^14 + 2^12 + 2^10 + 1"
"n_fac": "2^10 * 3^3 * 5 * 7 * 4765713891397 + 1"
"nd": 1833378638665012223
"nd_hex": "0x19717828806ad3ff"
"nd_bit": "2^61 - 2^59 + 2^57 - 2^55 - 2^52 + 2^49 - 2^47 - 2^43 + 2^37 + 2^35 + 2^31 + 2^23 - 2^20 - 2^18 - 2^16 - 2^14 + 2^12 + 2^10 - 1"
"r2": 114882357249
"r2_hex": "0x1abf85a801"
"r2_bit": "2^37 - 2^34 - 2^32 - 2^30 - 2^23 + 2^19 - 2^17 - 2^15 + 2^13 + 2^11 + 1"
"znprimroot": 23
- "n": 4611686018427365377
"n_hex": "0x3fffffffffffa801"
"n_bit": "2^62 - 2^15 + 2^13 + 2^11 + 1"
"n_fac": "2^11 * 3 * 750599937895079c + 1"
"nd": 3381329869328590847
"nd_hex": "0x2eece599e1bfa7ff"
"nd_bit": "2^62 - 2^60 - 2^56 - 2^52 - 2^50 + 2^48 - 2^45 + 2^43 - 2^41 - 2^39 + 2^37 - 2^35 + 2^33 - 2^29 + 2^25 - 2^22 - 2^15 + 2^13 + 2^11 - 1"
"r2": 507465729
"r2_hex": "0x1e3f5001"
"r2_bit": "2^29 - 2^25 + 2^22 - 2^16 + 2^14 + 2^12 + 1"
"znprimroot": 7
- "n": 4611686018427156481
"n_hex": "0x3ffffffffffc7801"
"n_bit": "2^62 - 2^18 + 2^15 - 2^11 + 1"
"n_fac": "2^11 * 3 * 5 * 7 * 293 * 73193558059 + 1"
"nd": 2943075218865551359
"nd_hex": "0x28d7e75187bc77ff"
"nd_bit": "2^61 + 2^59 + 2^56 - 2^53 - 2^51 - 2^45 + 2^43 - 2^40 + 2^38 + 2^36 + 2^33 - 2^31 + 2^27 - 2^22 - 2^18 + 2^15 - 2^11 - 1"
"r2": 53556604929
"r2_hex": "0xc7838f001"
"r2_bit": "2^36 - 2^34 + 2^31 - 2^27 + 2^22 - 2^19 + 2^16 - 2^12 + 1"
"znprimroot": 13
- "n": 4611686018426800129
"n_hex": "0x3ffffffffff70801"
"n_bit": "2^62 - 2^19 - 2^16 + 2^11 + 1"
"n_fac": "2^11 * 3^3 * 71 * 1174647790133 + 1"
"nd": 1474507702997026815
"nd_hex": "0x147680f18fb707ff"
"nd_bit": "2^60 + 2^58 + 2^55 - 2^51 - 2^49 + 2^47 + 2^40 - 2^36 + 2^33 - 2^31 + 2^28 - 2^22 - 2^19 - 2^16 + 2^11 - 1"
"r2": 345479450625
"r2_hex": "0x50702e1001"
"r2_bit": "2^38 + 2^36 + 2^31 - 2^28 + 2^22 - 2^20 - 2^17 + 2^12 + 1"
"znprimroot": 13
- "n": 4611686018425436161
"n_hex": "0x3fffffffffe23801"
"n_bit": "2^62 - 2^21 + 2^17 + 2^14 - 2^11 + 1"
"n_fac": "2^11 * 3^2 * 5 * 7^3 * 145889200757 + 1"
"nd": 2831709420761790463
"nd_hex": "0x274c40b713a237ff"
"nd_bit": "2^61 + 2^59 - 2^56 + 2^54 + 2^52 - 2^50 + 2^46 + 2^40 - 2^38 - 2^35 - 2^32 + 2^28 + 2^26 - 2^23 + 2^21 + 2^17 + 2^14 - 2^11 - 1"
"r2": 3809300738049
"r2_hex": "0x376ec047001"
"r2_bit": "2^42 - 2^39 - 2^35 - 2^32 - 2^28 - 2^26 + 2^18 + 2^15 - 2^12 + 1"
"znprimroot": 17
- "n": 4611686018405437441
"n_hex": "0x3ffffffffeb11001"
"n_bit": "2^62 - 2^24 - 2^22 - 2^20 + 2^16 + 2^12 + 1"
"n_fac": "2^12 * 3^2 * 5 * 7 * 17 * 210252083443 + 1"
"nd": 503432121418846207
"nd_hex": "0x6fc8cd8ddb10fff"
"nd_bit": "2^59 - 2^56 - 2^50 + 2^47 + 2^44 - 2^42 + 2^40 - 2^37 - 2^35 + 2^32 - 2^29 - 2^25 - 2^22 - 2^20 + 2^16 + 2^12 - 1"
"r2": 481822825914369
"r2_hex": "0x1b6371e622001"
"r2_bit": "2^49 - 2^46 - 2^43 - 2^41 + 2^38 - 2^35 - 2^32 + 2^29 - 2^25 + 2^23 - 2^21 + 2^17 + 2^13 + 1"
"znprimroot": 26
- "n": 4611686018426265601
"n_hex": "0x3fffffffffeee001"
"n_bit": "2^62 - 2^20 - 2^16 - 2^13 + 1"
"n_fac": "2^13 * 3^2 * 5^2 * 2129 * 1175199527 + 1"
"nd": 3625910462151843839
"nd_hex": "0x3251d25abbeedfff"
"nd_bit": "2^62 - 2^60 + 2^57 + 2^54 + 2^52 + 2^49 - 2^46 + 2^44 + 2^41 + 2^39 - 2^37 - 2^34 - 2^32 - 2^30 - 2^26 - 2^20 - 2^16 - 2^13 - 1"
"r2": 1259564023809
"r2_hex": "0x12543ddc001"
"r2_bit": "2^40 + 2^37 + 2^34 + 2^32 + 2^30 + 2^26 - 2^21 - 2^17 - 2^14 + 1"
"znprimroot": 41
- "n": 4611686018424422401
"n_hex": "0x3fffffffffd2c001"
"n_bit": "2^62 - 2^22 + 2^20 + 2^18 - 2^16 - 2^14 + 1"
"n_fac": "2^14 * 3^4 * 5^2 * 138999988499c + 1"
"nd": 2671694510115962879
"nd_hex": "0x2513c4006fd2bfff"
"nd_bit": "2^61 + 2^58 + 2^56 + 2^52 + 2^50 - 2^46 + 2^42 + 2^31 - 2^28 - 2^22 + 2^20 + 2^18 - 2^16 - 2^14 - 1"
"r2": 8794208043009
"r2_hex": "0x7ff8fa58001"
"r2_bit": "2^43 - 2^31 + 2^28 - 2^23 + 2^21 + 2^19 - 2^17 - 2^15 + 1"
"znprimroot": 22
- "n": 4611686018420736001
"n_hex": "0x3fffffffff9a8001"
"n_bit": "2^62 - 2^23 + 2^21 - 2^19 + 2^17 + 2^15 + 1"
"n_fac": "2^15 * 3^2 * 5^3 * 401 * 311970049 + 1"
"nd": 4274329195378278399
"nd_hex": "0x3b5177c1bf9a7fff"
"nd_bit": "2^62 - 2^58 - 2^56 + 2^54 + 2^52 + 2^49 - 2^47 - 2^43 - 2^38 + 2^33 - 2^30 - 2^23 + 2^21 - 2^19 + 2^17 + 2^15 - 1"
"r2": 44247813521409
"r2_hex": "0x283e3f350001"
"r2_bit": "2^45 + 2^43 + 2^38 - 2^33 + 2^30 - 2^24 + 2^22 - 2^20 + 2^18 + 2^16 + 1"
"znprimroot": 13
- "n": 4611686018418769921
"n_hex": "0x3fffffffff7c8001"
"n_bit": "2^62 - 2^23 - 2^18 + 2^15 + 1"
"n_fac": "2^15 * 3 * 5 * 7 * 1340357031953 + 1"
"nd": 4428406723303997439
"nd_hex": "0x3d74dc73bf7c7fff"
"nd_bit": "2^62 - 2^57 - 2^55 - 2^52 + 2^50 + 2^48 - 2^45 - 2^42 + 2^39 - 2^36 + 2^34 - 2^30 - 2^23 - 2^18 + 2^15 - 1"
"r2": 74269630988289
"r2_hex": "0x438c3ef90001"
"r2_bit": "2^46 + 2^42 - 2^39 + 2^36 - 2^34 + 2^30 - 2^24 - 2^19 + 2^16 + 1"
"znprimroot": 17
- "n": 4611686018427322369
"n_hex": "0x3fffffffffff0001"
"n_bit": "2^62 - 2^16 + 1"
"n_fac": "2^16 * 3 * 47 * 499069107643c + 1"
"nd": 4611404539155644415
"nd_hex": "0x3ffefffefffeffff"
"nd_bit": "2^62 - 2^48 - 2^32 - 2^16 - 1"
"r2": 4294836225
"r2_hex": "0xfffe0001"
"r2_bit": "2^32 - 2^17 + 1"
"znprimroot": 7
- "n": 4611686018423390209
"n_hex": "0x3fffffffffc30001"
"n_bit": "2^62 - 2^22 + 2^18 - 2^16 + 1"
"n_fac": "2^16 * 3^2 * 7818749353067 + 1"
"nd": 674116587644715007
"nd_hex": "0x95af176ffc2ffff"
"nd_bit": "2^59 + 2^57 - 2^55 - 2^53 - 2^50 - 2^48 - 2^44 + 2^41 - 2^39 - 2^35 - 2^32 - 2^22 + 2^18 - 2^16 - 1"
"r2": 15981565313025
"r2_hex": "0xe88ff860001"
"r2_bit": "2^44 - 2^41 + 2^39 + 2^35 + 2^32 - 2^23 + 2^19 - 2^17 + 1"
"znprimroot": 11
- "n": 4611686018405498881
"n_hex": "0x3ffffffffeb20001"
"n_bit": "2^62 - 2^24 - 2^22 - 2^20 + 2^17 + 1"
"n_fac": "2^17 * 3 * 5 * 3823 * 613556057 + 1"
"nd": 3910897146977714175
"nd_hex": "0x36464c3bfeb1ffff"
"nd_bit": "2^62 - 2^59 - 2^57 + 2^54 + 2^51 - 2^49 + 2^46 + 2^44 - 2^42 + 2^38 - 2^34 - 2^24 - 2^22 - 2^20 + 2^17 - 1"
"r2": 479129327894529
"r2_hex": "0x1b3c3fd640001"
"r2_bit": "2^49 - 2^46 - 2^44 + 2^42 - 2^38 + 2^34 - 2^25 - 2^23 - 2^21 + 2^18 + 1"
"znprimroot": 23
- "n": 4611686018401566721
"n_hex": "0x3ffffffffe760001"
"n_bit": "2^62 - 2^25 + 2^23 - 2^19 - 2^17 + 1"
"n_fac": "2^17 * 3^2 * 5 * 7 * 11 * 1171 * 8671409 + 1"
"nd": 4185429120071892991
"nd_hex": "0x3a15a19bfe75ffff"
"nd_bit": "2^62 - 2^59 + 2^57 + 2^53 - 2^51 - 2^49 - 2^47 + 2^45 + 2^41 - 2^39 + 2^37 - 2^34 - 2^25 + 2^23 - 2^19 - 2^17 - 1"
"r2": 666733491519489
"r2_hex": "0x25e63fcec0001"
"r2_bit": "2^49 + 2^47 - 2^45 - 2^41 + 2^39 - 2^37 + 2^34 - 2^26 + 2^24 - 2^20 - 2^18 + 1"
"znprimroot": 13
- "n": 4611686018416115713
"n_hex": "0x3fffffffff540001"
"n_bit": "2^62 - 2^24 + 2^22 + 2^20 + 2^18 + 1"
"n_fac": "2^18 * 3 * 5864062014791 + 1"
"nd": 1963442375209779199
"nd_hex": "0x1b3f8c6fff53ffff"
"nd_bit": "2^61 - 2^58 - 2^56 + 2^54 - 2^47 + 2^44 - 2^42 + 2^39 - 2^36 - 2^24 + 2^22 + 2^20 + 2^18 - 1"
"r2": 127062289940481
"r2_hex": "0x738ffea80001"
"r2_bit": "2^47 - 2^44 + 2^42 - 2^39 + 2^36 - 2^25 + 2^23 + 2^21 + 2^19 + 1"
"znprimroot": 10
- "n": 4611686018376794113
"n_hex": "0x3ffffffffcfc0001"
"n_bit": "2^62 - 2^26 + 2^24 - 2^18 + 1"
"n_fac": "2^18 * 3^2 * 7 * 279241048321 + 1"
"nd": 3438190383471525887
"nd_hex": "0x2fb6e7effcfbffff"
"nd_bit": "2^62 - 2^60 - 2^54 - 2^51 - 2^48 - 2^45 + 2^43 - 2^36 - 2^26 + 2^24 - 2^18 - 1"
"r2": 2559731687751681
"r2_hex": "0x9180ff9f80001"
"r2_bit": "2^51 + 2^48 + 2^45 - 2^43 + 2^36 - 2^27 + 2^25 - 2^19 + 1"
"znprimroot": 10
- "n": 4611686018425815041
"n_hex": "0x3fffffffffe80001"
"n_bit": "2^62 - 2^21 + 2^19 + 1"
"n_fac": "2^19 * 5 * 211 * 8337528931 + 1"
"nd": 720573466476543999
"nd_hex": "0x9fffdbfffe7ffff"
"nd_bit": "2^59 + 2^57 - 2^41 - 2^38 - 2^21 + 2^19 - 1"
"r2": 2473898016769
"r2_hex": "0x23fffd00001"
"r2_bit": "2^41 + 2^38 - 2^22 + 2^20 + 1"
"znprimroot": 3
- "n": 4611686018320957441
"n_hex": "0x3ffffffff9a80001"
"n_bit": "2^62 - 2^27 + 2^25 - 2^23 + 2^21 + 2^19 + 1"
"n_fac": "2^19 * 3 * 5 * 1709 * 343128263 + 1"
"nd": 1862170001212440575
"nd_hex": "0x19d7c1bff9a7ffff"
"nd_bit": "2^61 - 2^59 + 2^57 - 2^53 - 2^51 - 2^46 + 2^41 - 2^38 - 2^27 + 2^25 - 2^23 + 2^21 + 2^19 - 1"
"r2": 11327443454394369
"r2_hex": "0x283e3ff3500001"
"r2_bit": "2^53 + 2^51 + 2^46 - 2^41 + 2^38 - 2^28 + 2^26 - 2^24 + 2^22 + 2^20 + 1"
"znprimroot": 7
- "n": 4611686018261188609
"n_hex": "0x3ffffffff6180001"
"n_bit": "2^62 - 2^27 - 2^25 + 2^21 - 2^19 + 1"
"n_fac": "2^19 * 3^4 * 7 * 29 * 534944537 + 1"
"nd": 3863487871891013631
"nd_hex": "0x359dddbff617ffff"
"nd_bit": "2^62 - 2^59 - 2^57 - 2^55 + 2^53 - 2^49 - 2^45 - 2^41 - 2^38 - 2^27 - 2^25 + 2^21 - 2^19 - 1"
"r2": 27622205658497025
"r2_hex": "0x62223fec300001"
"r2_bit": "2^55 - 2^53 + 2^49 + 2^45 + 2^41 + 2^38 - 2^28 - 2^26 + 2^22 - 2^20 + 1"
"znprimroot": 11
- "n": 4611686018195128321
"n_hex": "0x3ffffffff2280001"
"n_bit": "2^62 - 2^28 + 2^25 + 2^21 + 2^19 + 1"
"n_fac": "2^19 * 3^2 * 5 * 7^2 * 3989157833 + 1"
"nd": 4125395939607707647
"nd_hex": "0x394059bff227ffff"
"nd_bit": "2^62 - 2^59 + 2^56 + 2^54 + 2^47 - 2^45 - 2^43 + 2^41 - 2^38 - 2^28 + 2^25 + 2^21 + 2^19 - 1"
"r2": 53944513895333889
"r2_hex": "0xbfa63fe4500001"
"r2_bit": "2^56 - 2^54 - 2^47 + 2^45 + 2^43 - 2^41 + 2^38 - 2^29 + 2^26 + 2^22 + 2^20 + 1"
"znprimroot": 13
- "n": 4611686018405367809
"n_hex": "0x3ffffffffeb00001"
"n_bit": "2^62 - 2^24 - 2^22 - 2^20 + 1"
"n_fac": "2^20 * 17 * 311 * 831860509 + 1"
"nd": 3458279629170671615
"nd_hex": "0x2ffe46fffeafffff"
"nd_bit": "2^62 - 2^60 - 2^49 + 2^46 + 2^43 - 2^40 - 2^24 - 2^22 - 2^20 - 1"
"r2": 484884583809025
"r2_hex": "0x1b8fffd600001"
"r2_bit": "2^49 - 2^46 - 2^43 + 2^40 - 2^25 - 2^23 - 2^21 + 1"
"znprimroot": 3
- "n": 4611686018325676033
"n_hex": "0x3ffffffff9f00001"
"n_bit": "2^62 - 2^27 + 2^25 - 2^20 + 1"
"n_fac": "2^20 * 3 * 31 * 47 * 4969 * 202493 + 1"
"nd": 3448419208813084671
"nd_hex": "0x2fdb3efff9efffff"
"nd_bit": "2^62 - 2^60 - 2^53 - 2^50 - 2^48 + 2^46 - 2^40 - 2^27 + 2^25 - 2^20 - 1"
"r2": 10345304702320641
"r2_hex": "0x24c0fff3e00001"
"r2_bit": "2^53 + 2^50 + 2^48 - 2^46 + 2^40 - 2^28 + 2^26 - 2^21 + 1"
"znprimroot": 5
- "n": 4611686018187264001
"n_hex": "0x3ffffffff1b00001"
"n_bit": "2^62 - 2^28 + 2^25 - 2^22 - 2^20 + 1"
"n_fac": "2^20 * 3 * 5^3 * 11728124029 + 1"
"nd": 3401105024308215807
"nd_hex": "0x2f3326fff1afffff"
"nd_bit": "2^62 - 2^60 - 2^56 + 2^54 - 2^52 + 2^50 - 2^48 + 2^45 + 2^43 - 2^40 - 2^28 + 2^25 - 2^22 - 2^20 - 1"
"r2": 57659488791953409
"r2_hex": "0xccd8ffe3600001"
"r2_bit": "2^56 - 2^54 + 2^52 - 2^50 + 2^48 - 2^45 - 2^43 + 2^40 - 2^29 + 2^26 - 2^23 - 2^21 + 1"
"znprimroot": 7
- "n": 4611686018171535361
"n_hex": "0x3ffffffff0c00001"
"n_bit": "2^62 - 2^28 + 2^24 - 2^22 + 1"
"n_fac": "2^22 * 3^2 * 5 * 24433591727c + 1"
"nd": 4546225493900263423
"nd_hex": "0x3f176ffff0bfffff"
"nd_bit": "2^62 - 2^56 + 2^53 - 2^51 - 2^47 - 2^44 - 2^28 + 2^24 - 2^22 - 1"
"r2": 65460523759566849
"r2_hex": "0xe88fffe1800001"
"r2_bit": "2^56 - 2^53 + 2^51 + 2^47 + 2^44 - 2^29 + 2^25 - 2^23 + 1"
"znprimroot": 17
- "n": 4611686016221184001
"n_hex": "0x3fffffff7c800001"
"n_bit": "2^62 - 2^31 - 2^26 + 2^23 + 1"
"n_fac": "2^23 * 3 * 5^3 * 1466015503c + 1"
"nd": 4356036368623730687
"nd_hex": "0x3c73bfff7c7fffff"
"nd_bit": "2^62 - 2^58 + 2^55 - 2^52 + 2^50 - 2^46 - 2^31 - 2^26 + 2^23 - 1"
"r2": 255649645391249408
"r2_hex": "0x38c3fff7c800000"
"r2_bit": "2^58 - 2^55 + 2^52 - 2^50 + 2^46 - 2^31 - 2^26 + 2^23"
"znprimroot": 7
- "n": 4611686015717867521
"n_hex": "0x3fffffff5e800001"
"n_bit": "2^62 - 2^31 - 2^29 - 2^25 + 2^23 + 1"
"n_fac": "2^23 * 3^2 * 5 * 7 * 293 * 5956507 + 1"
"nd": 1881871322833747967
"nd_hex": "0x1a1dbfff5e7fffff"
"nd_bit": "2^61 - 2^59 + 2^57 + 2^53 - 2^49 - 2^46 - 2^31 - 2^29 - 2^25 + 2^23 - 1"
"r2": 2729814690174599168
"r2_hex": "0x25e23fff5e800000"
"r2_bit": "2^61 + 2^59 - 2^57 - 2^53 + 2^49 + 2^46 - 2^31 - 2^29 - 2^25 + 2^23"
"znprimroot": 11
- "n": 4611686018309947393
"n_hex": "0x3ffffffff9000001"
"n_bit": "2^62 - 2^27 + 2^24 + 1"
"n_fac": "2^24 * 3 * 113 * 810849283 + 1"
"nd": 4597893744451125247
"nd_hex": "0x3fcefffff8ffffff"
"nd_bit": "2^62 - 2^54 + 2^52 - 2^48 - 2^27 + 2^24 - 1"
"r2": 13792273623941121
"r2_hex": "0x30fffff2000001"
"r2_bit": "2^54 - 2^52 + 2^48 - 2^28 + 2^25 + 1"
"znprimroot": 5
- "n": 4611686005022392321
"n_hex": "0x3ffffffce1000001"
"n_bit": "2^62 - 2^34 + 2^32 - 2^29 + 2^24 + 1"
"n_fac": "2^24 * 3 * 5 * 1291 * 14194573 + 1"
"nd": 161848098203631615
"nd_hex": "0x23efffce0ffffff"
"nd_bit": "2^57 + 2^54 - 2^48 - 2^34 + 2^32 - 2^29 + 2^24 - 1"
"r2": 4449838389398601691
"r2_hex": "0x3dc100705bffffdb"
"r2_bit": "2^62 - 2^57 - 2^54 + 2^48 + 2^39 - 2^36 + 2^31 - 2^29 - 2^26 - 2^5 - 2^2 - 1"
"znprimroot": 19
- "n": 4611686018326724609
"n_hex": "0x3ffffffffa000001"
"n_bit": "2^62 - 2^27 + 2^25 + 1"
"n_fac": "2^25 * 137438953469c + 1"
"nd": 4601552919165140991
"nd_hex": "0x3fdbfffff9ffffff"
"nd_bit": "2^62 - 2^53 - 2^50 - 2^27 + 2^25 - 1"
"r2": 10133098960257025
"r2_hex": "0x23fffff4000001"
"r2_bit": "2^53 + 2^50 - 2^28 + 2^26 + 1"
"znprimroot": 3
- "n": 4611686018058289153
"n_hex": "0x3fffffffea000001"
"n_bit": "2^62 - 2^29 + 2^27 + 2^25 + 1"
"n_fac": "2^25 * 3^2 * 1487 * 10269667 + 1"
"nd": 4475452129330331647
"nd_hex": "0x3e1bffffe9ffffff"
"nd_bit": "2^62 - 2^57 + 2^53 - 2^50 - 2^29 + 2^27 + 2^25 - 1"
"r2": 136233887989760001
"r2_hex": "0x1e3ffffd4000001"
"r2_bit": "2^57 - 2^53 + 2^50 - 2^30 + 2^28 + 2^26 + 1"
"znprimroot": 5
- "n": 4611686000744202241
"n_hex": "0x3ffffffbe2000001"
"n_bit": "2^62 - 2^34 - 2^29 + 2^25 + 1"
"n_fac": "2^25 * 3 * 5 * 7 * 1308942409 + 1"
"nd": 899594007884070911
"nd_hex": "0xc7bfffbe1ffffff"
"nd_bit": "2^60 - 2^58 + 2^55 - 2^50 - 2^34 - 2^29 + 2^25 - 1"
"r2": 3712093142267199422
"r2_hex": "0x3384010b9dffffbe"
"r2_bit": "2^62 - 2^60 + 2^58 - 2^55 + 2^50 + 2^40 + 2^36 - 2^34 - 2^31 + 2^29 - 2^25 - 2^6 - 2"
"znprimroot": 17
- "n": 4611685965512048641
"n_hex": "0x3ffffff3ae000001"
"n_bit": "2^62 - 2^36 + 2^34 - 2^30 - 2^28 - 2^25 + 1"
"n_fac": "2^25 * 3^2 * 5 * 7 * 436314133c + 1"
"nd": 3871969726716444671
"nd_hex": "0x35bbfff3adffffff"
"nd_bit": "2^62 - 2^59 - 2^57 - 2^54 - 2^50 - 2^36 + 2^34 - 2^30 - 2^28 - 2^25 - 1"
"r2": 739748252575858082
"r2_hex": "0xa441d1dc9fffda2"
"r2_bit": "2^59 + 2^57 + 2^54 + 2^50 + 2^45 - 2^42 + 2^40 + 2^37 - 2^33 - 2^30 + 2^27 + 2^25 - 2^9 - 2^7 + 2^5 + 2"
"znprimroot": 17
- "n": 4611686017554972673
"n_hex": "0x3fffffffcc000001"
"n_bit": "2^62 - 2^30 + 2^28 - 2^26 + 1"
"n_fac": "2^26 * 3 * 22906492241c + 1"
"nd": 3850577680529358847
"nd_hex": "0x356fffffcbffffff"
"nd_bit": "2^62 - 2^59 - 2^57 - 2^55 - 2^52 - 2^30 + 2^28 - 2^26 - 1"
"r2": 761108335280783361
"r2_hex": "0xa8fffff98000001"
"r2_bit": "2^59 + 2^57 + 2^55 + 2^52 - 2^31 + 2^29 - 2^27 + 1"
"znprimroot": 5
- "n": 4611686007488643073
"n_hex": "0x3ffffffd74000001"
"n_bit": "2^62 - 2^33 - 2^31 - 2^28 + 2^26 + 1"
"n_fac": "2^26 * 3^3 * 11 * 231378709 + 1"
"nd": 247697968566632447
"nd_hex": "0x36ffffd73ffffff"
"nd_bit": "2^58 - 2^55 - 2^52 - 2^33 - 2^31 - 2^28 + 2^26 - 1"
"r2": 4363988290513141736
"r2_hex": "0x3c90003a93ffffe8"
"r2_bit": "2^62 - 2^58 + 2^55 + 2^52 + 2^38 - 2^35 + 2^33 + 2^31 + 2^28 + 2^26 - 2^5 + 2^3"
"znprimroot": 5
- "n": 4611686009971671041
"n_hex": "0x3ffffffe08000001"
"n_bit": "2^62 - 2^33 + 2^27 + 1"
"n_fac": "2^27 * 5 * 31 * 67 * 3308593 + 1"
"nd": 2287828602248495103
"nd_hex": "0x1fbffffe07ffffff"
"nd_bit": "2^61 - 2^54 - 2^33 + 2^27 - 1"
"r2": 2323857517647495154
"r2_hex": "0x2040001997fffff2"
"r2_bit": "2^61 + 2^54 + 2^37 - 2^35 + 2^33 - 2^31 + 2^29 - 2^27 - 2^4 + 2"
"znprimroot": 6
- "n": 4611686004066091009
"n_hex": "0x3ffffffca8000001"
"n_bit": "2^62 - 2^34 + 2^31 + 2^29 + 2^27 + 1"
"n_fac": "2^27 * 3 * 269 * 42577123 + 1"
"nd": 1279022279811923967
"nd_hex": "0x11bffffca7ffffff"
"nd_bit": "2^60 + 2^57 - 2^54 - 2^34 + 2^31 + 2^29 + 2^27 - 1"
"r2": 3332664327428636629
"r2_hex": "0x2e40008c6fffffd5"
"r2_bit": "2^62 - 2^60 - 2^57 + 2^54 + 2^39 + 2^36 - 2^34 + 2^31 - 2^28 - 2^6 + 2^4 + 2^2 + 1"
"znprimroot": 13
- "n": 4611686003260784641
"n_hex": "0x3ffffffc78000001"
"n_bit": "2^62 - 2^34 + 2^31 - 2^27 + 1"
"n_fac": "2^27 * 3^2 * 5 * 59 * 179 * 197 * 367 + 1"
"nd": 558446338627338239
"nd_hex": "0x7bffffc77ffffff"
"nd_bit": "2^59 - 2^54 - 2^34 + 2^31 - 2^27 - 1"
"r2": 4053240377463799760
"r2_hex": "0x384000a5f7ffffd0"
"r2_bit": "2^62 - 2^59 + 2^54 + 2^39 + 2^37 + 2^35 - 2^33 - 2^27 - 2^6 + 2^4"
"znprimroot": 11
- "n": 4611685940849541121
"n_hex": "0x3fffffedf0000001"
"n_bit": "2^62 - 2^36 - 2^33 - 2^28 + 1"
"n_fac": "2^28 * 3 * 5 * 7 * 61 * 307 * 8737 + 1"
"nd": 4539628346811613183
"nd_hex": "0x3effffedefffffff"
"nd_bit": "2^62 - 2^56 - 2^36 - 2^33 - 2^28 - 1"
"r2": 72158677972286184
"r2_hex": "0x1005bef6ffffae8"
"r2_bit": "2^56 + 2^47 - 2^45 - 2^42 - 2^36 - 2^31 - 2^28 - 2^10 - 2^8 - 2^5 + 2^3"
"znprimroot": 11
- "n": 4611685828106649601
"n_hex": "0x3fffffd3b0000001"
"n_bit": "2^62 - 2^38 + 2^36 + 2^34 - 2^30 - 2^28 + 1"
"n_fac": "2^28 * 3^3 * 5^2 * 7 * 11 * 43 * 7687 + 1"
"nd": 2810245977158451199
"nd_hex": "0x26ffffd3afffffff"
"nd_bit": "2^61 + 2^59 - 2^56 - 2^38 + 2^36 + 2^34 - 2^30 - 2^28 - 1"
"r2": 1802934249385353555
"r2_hex": "0x19054f25bfffe153"
"r2_bit": "2^61 - 2^59 + 2^56 + 2^50 + 2^48 + 2^46 + 2^44 - 2^40 + 2^37 + 2^35 - 2^33 - 2^30 - 2^13 + 2^8 + 2^6 + 2^4 + 2^2 - 1"
"znprimroot": 31
- "n": 4611685989973229569
"n_hex": "0x3ffffff960000001"
"n_bit": "2^62 - 2^35 + 2^33 - 2^31 - 2^29 + 1"
"n_fac": "2^29 * 3^2 * 17 * 61 * 839 * 1097 + 1"
"nd": 2017612604607823871
"nd_hex": "0x1bfffff95fffffff"
"nd_bit": "2^61 - 2^58 - 2^35 + 2^33 - 2^31 - 2^29 - 1"
"r2": 2594078307934797650
"r2_hex": "0x2400047a1fffff52"
"r2_bit": "2^61 + 2^58 + 2^42 + 2^39 - 2^35 + 2^33 + 2^29 - 2^8 + 2^6 + 2^4 + 2"
"znprimroot": 7
- "n": 4611685590541271041
"n_hex": "0x3fffff9c60000001"
"n_bit": "2^62 - 2^39 + 2^37 - 2^34 + 2^31 - 2^29 + 1"
"n_fac": "2^29 * 3 * 5 * 572662253 + 1"
"nd": 2017612205175865343
"nd_hex": "0x1bffff9c5fffffff"
"nd_bit": "2^61 - 2^58 - 2^39 + 2^37 - 2^34 + 2^31 - 2^29 - 1"
"r2": 2611059608432633069
"r2_hex": "0x243c58e13fff64ed"
"r2_bit": "2^61 + 2^58 + 2^54 - 2^50 + 2^47 - 2^45 - 2^43 + 2^40 - 2^37 + 2^32 + 2^30 - 2^15 - 2^13 + 2^10 + 2^8 - 2^4 - 2^2 + 1"
"znprimroot": 13
- "n": 4611685574435143681
"n_hex": "0x3fffff98a0000001"
"n_bit": "2^62 - 2^39 + 2^37 - 2^35 + 2^31 + 2^29 + 1"
"n_fac": "2^29 * 3^4 * 5 * 7 * 3029959 + 1"
"nd": 2017612189069737983
"nd_hex": "0x1bffff989fffffff"
"nd_bit": "2^61 - 2^58 - 2^39 + 2^37 - 2^35 + 2^31 + 2^29 - 1"
"r2": 2613050945860229384
"r2_hex": "0x24436bfd9fff5908"
"r2_bit": "2^61 + 2^58 + 2^54 + 2^50 - 2^47 - 2^44 - 2^42 - 2^33 - 2^31 + 2^29 - 2^15 - 2^13 - 2^11 + 2^8 + 2^3"
"znprimroot": 19
- "n": 4611685944339202049
"n_hex": "0x3fffffeec0000001"
"n_bit": "2^62 - 2^36 - 2^32 - 2^30 + 1"
"n_fac": "2^30 * 17 * 252645131 + 1"
"nd": 3458764439732355071
"nd_hex": "0x2fffffeebfffffff"
"nd_bit": "2^62 - 2^60 - 2^36 - 2^32 - 2^30 - 1"
"r2": 1153009521371642715
"r2_hex": "0x1000500cfffffb5b"
"r2_bit": "2^60 + 2^46 + 2^44 + 2^36 - 2^34 + 2^32 - 2^10 - 2^7 - 2^5 - 2^2 - 1"
"znprimroot": 3
- "n": 4611685405320806401
"n_hex": "0x3fffff7140000001"
"n_bit": "2^62 - 2^39 - 2^36 + 2^32 + 2^30 + 1"
"n_fac": "2^30 * 3^2 * 5^2 * 7 * 643 * 4241 + 1"
"nd": 3458763900713959423
"nd_hex": "0x2fffff713fffffff"
"nd_bit": "2^62 - 2^60 - 2^39 - 2^36 + 2^32 + 2^30 - 1"
"r2": 1202894595851993499
"r2_hex": "0x10b18a42fffec19b"
"r2_bit": "2^60 + 2^56 - 2^54 - 2^52 + 2^49 - 2^47 + 2^43 + 2^41 + 2^38 + 2^34 - 2^32 - 2^16 - 2^14 + 2^9 - 2^7 + 2^5 - 2^2 - 1"
"znprimroot": 11
- "n": 4611685917495656449
"n_hex": "0x3fffffe880000001"
"n_bit": "2^62 - 2^37 + 2^35 + 2^31 + 1"
"n_fac": "2^31 * 3^2 * 238609289 + 1"
"nd": 4611685917495656447
"nd_hex": "0x3fffffe87fffffff"
"nd_bit": "2^62 - 2^37 + 2^35 + 2^31 - 1"
"r2": 222756331321184
"r2_hex": "0xca987ffff760"
"r2_bit": "2^48 - 2^46 + 2^43 + 2^41 + 2^39 + 2^37 - 2^35 + 2^31 - 2^11 - 2^7 - 2^5"
"znprimroot": 11
- "n": 4611684873818603521
"n_hex": "0x3ffffef580000001"
"n_bit": "2^62 - 2^40 - 2^35 - 2^33 - 2^31 + 1"
"n_fac": "2^31 * 3^2 * 5 * 239 * 199673 + 1"
"nd": 4611684873818603519
"nd_hex": "0x3ffffef57fffffff"
"nd_bit": "2^62 - 2^40 - 2^35 - 2^33 - 2^31 - 1"
"r2": 325168475729013320
"r2_hex": "0x4833b017ffbaa48"
"r2_bit": "2^58 + 2^55 + 2^50 - 2^48 + 2^46 - 2^42 - 2^40 + 2^33 - 2^31 - 2^18 - 2^15 + 2^13 + 2^11 + 2^9 + 2^6 + 2^3"
"znprimroot": 7
- "n": 4611678302518640641
"n_hex": "0x3ffff8fb80000001"
"n_bit": "2^62 - 2^43 + 2^40 - 2^34 - 2^31 + 1"
"n_fac": "2^31 * 3^2 * 5 * 7 * 47 * 73 * 1987 + 1"
"nd": 4611678302518640639
"nd_hex": "0x3ffff8fb7fffffff"
"nd_bit": "2^62 - 2^43 + 2^40 - 2^34 - 2^31 - 1"
"r2": 2764413858486092699
"r2_hex": "0x265d2bc1ff3b039b"
"r2_bit": "2^61 + 2^59 - 2^57 + 2^55 - 2^53 - 2^50 + 2^48 + 2^46 - 2^44 - 2^42 - 2^38 + 2^33 - 2^24 + 2^22 - 2^18 - 2^16 + 2^10 - 2^7 + 2^5 - 2^2 - 1"
"znprimroot": 11
- "n": 4611685318347718657
"n_hex": "0x3fffff5d00000001"
"n_bit": "2^62 - 2^39 - 2^37 - 2^34 + 2^32 + 1"
"n_fac": "2^32 * 3^2 * 19 * 41 * 153151 + 1"
"nd": 4611685318347718655
"nd_hex": "0x3fffff5cffffffff"
"nd_bit": "2^62 - 2^39 - 2^37 - 2^34 + 2^32 - 1"
"r2": 74400266769555677
"r2_hex": "0x10852a5fffe60dd"
"r2_bit": "2^56 + 2^51 + 2^46 + 2^44 + 2^41 + 2^39 + 2^37 + 2^35 - 2^33 - 2^17 + 2^15 - 2^13 + 2^8 - 2^5 - 2^2 + 1"
"znprimroot": 5
- "n": 4611669959544668161
"n_hex": "0x3ffff16500000001"
"n_bit": "2^62 - 2^44 + 2^41 - 2^39 - 2^37 + 2^34 + 2^32 + 1"
"n_fac": "2^32 * 3 * 5 * 7 * 10226077 + 1"
"nd": 4611669959544668159
"nd_hex": "0x3ffff164ffffffff"
"nd_bit": "2^62 - 2^44 + 2^41 - 2^39 - 2^37 + 2^34 + 2^32 - 1"
"r2": 3356489917833852891
"r2_hex": "0x2e94a5cbfcaab7db"
"r2_bit": "2^62 - 2^60 - 2^57 + 2^55 + 2^52 + 2^50 + 2^47 + 2^45 + 2^43 - 2^41 - 2^38 + 2^36 - 2^34 - 2^26 + 2^24 - 2^22 - 2^20 - 2^18 - 2^16 - 2^14 - 2^11 - 2^5 - 2^2 - 1"
"znprimroot": 19
- "n": 4611638391535042561
"n_hex": "0x3fffd4af00000001"
"n_bit": "2^62 - 2^46 + 2^44 + 2^42 + 2^40 - 2^38 - 2^36 - 2^32 + 1"
"n_fac": "2^32 * 3^5 * 5 * 7 * 11 * 23 * 499 + 1"
"nd": 4611638391535042559
"nd_hex": "0x3fffd4aeffffffff"
"nd_bit": "2^62 - 2^46 + 2^44 + 2^42 + 2^40 - 2^38 - 2^36 - 2^32 - 1"
"r2": 3427240591542365606
"r2_hex": "0x2f900128e2aeada6"
"r2_bit": "2^62 - 2^60 - 2^55 + 2^52 + 2^40 + 2^37 + 2^35 + 2^32 - 2^29 + 2^26 - 2^24 - 2^22 - 2^20 - 2^16 - 2^14 - 2^12 - 2^9 - 2^7 + 2^5 + 2^3 - 2"
"znprimroot": 19
- "n": 4611685941117976577
"n_hex": "0x3fffffee00000001"
"n_bit": "2^62 - 2^36 - 2^33 + 1"
"n_fac": "2^33 * 311 * 1726273 + 1"
"nd": 4611685941117976575
"nd_hex": "0x3fffffedffffffff"
"nd_bit": "2^62 - 2^36 - 2^33 - 1"
"r2": 100038378257137
"r2_hex": "0x5afbfffffaf1"
"r2_bit": "2^47 - 2^45 - 2^42 - 2^40 - 2^34 - 2^10 - 2^8 - 2^4 + 1"
"znprimroot": 3
- "n": 4611681491531857921
"n_hex": "0x3ffffbe200000001"
"n_bit": "2^62 - 2^42 - 2^37 + 2^33 + 1"
"n_fac": "2^33 * 3^2 * 5 * 479 * 24907 + 1"
"nd": 4611681491531857919
"nd_hex": "0x3ffffbe1ffffffff"
"nd_bit": "2^62 - 2^42 - 2^37 + 2^33 - 1"
"r2": 1669267678427886061
"r2_hex": "0x172a6e1bffbc31ed"
"r2_bit": "2^61 - 2^59 - 2^56 + 2^53 + 2^51 + 2^49 + 2^47 - 2^44 - 2^41 + 2^37 - 2^34 - 2^22 - 2^18 + 2^14 - 2^12 + 2^9 - 2^4 - 2^2 + 1"
"znprimroot": 7
- "n": 4611668606629969921
"n_hex": "0x3ffff02a00000001"
"n_bit": "2^62 - 2^44 + 2^37 + 2^35 + 2^33 + 1"
"n_fac": "2^33 * 3 * 5 * 7 * 5113037 + 1"
"nd": 4611668606629969919
"nd_hex": "0x3ffff029ffffffff"
"nd_bit": "2^62 - 2^44 + 2^37 + 2^35 + 2^33 - 1"
"r2": 951862626442601337
"r2_hex": "0xd35b203fc14e379"
"r2_bit": "2^60 - 2^58 + 2^56 + 2^54 - 2^51 - 2^49 - 2^46 - 2^44 + 2^41 + 2^34 - 2^26 + 2^20 + 2^18 + 2^16 - 2^13 + 2^10 - 2^7 - 2^3 + 1"
"znprimroot": 23
- "n": 4611685692009873409
"n_hex": "0x3fffffb400000001"
"n_bit": "2^62 - 2^38 - 2^36 + 2^34 + 1"
"n_fac": "2^34 * 3 * 277 * 323027 + 1"
"nd": 4611685692009873407
"nd_hex": "0x3fffffb3ffffffff"
"nd_bit": "2^62 - 2^38 - 2^36 + 2^34 - 1"
"r2": 7540897419863489
"r2_hex": "0x1aca67ffffa5c1"
"r2_bit": "2^53 - 2^50 - 2^48 - 2^46 + 2^43 + 2^41 + 2^39 - 2^37 + 2^35 - 2^15 + 2^13 + 2^11 - 2^9 - 2^6 + 1"
"znprimroot": 19
- "n": 4611671054761328641
"n_hex": "0x3ffff26400000001"
"n_bit": "2^62 - 2^44 + 2^41 + 2^39 - 2^37 + 2^34 + 1"
"n_fac": "2^34 * 3^2 * 5 * 29^2 * 41 * 173 + 1"
"nd": 4611671054761328639
"nd_hex": "0x3ffff263ffffffff"
"nd_bit": "2^62 - 2^44 + 2^41 + 2^39 - 2^37 + 2^34 - 1"
"r2": 2498851778521146148
"r2_hex": "0x22adb473fd1b2324"
"r2_bit": "2^61 + 2^58 - 2^56 - 2^54 - 2^52 - 2^49 - 2^46 - 2^44 + 2^42 + 2^39 - 2^36 + 2^34 - 2^26 + 2^24 + 2^21 - 2^18 - 2^16 + 2^13 + 2^10 - 2^8 + 2^5 + 2^2"
"znprimroot": 14
- "n": 4611665900800573441
"n_hex": "0x3fffedb400000001"
"n_bit": "2^62 - 2^44 - 2^41 - 2^38 - 2^36 + 2^34 + 1"
"n_fac": "2^34 * 3 * 5 * 7 * 569 * 4493 + 1"
"nd": 4611665900800573439
"nd_hex": "0x3fffedb3ffffffff"
"nd_bit": "2^62 - 2^44 - 2^41 - 2^38 - 2^36 + 2^34 - 1"
"r2": 3854927143155065923
"r2_hex": "0x357f73cffac4e443"
"r2_bit": "2^62 - 2^59 - 2^57 - 2^55 - 2^47 - 2^44 + 2^42 - 2^38 + 2^36 - 2^26 - 2^24 - 2^22 + 2^18 + 2^16 - 2^13 + 2^10 + 2^6 + 2^2 - 1"
"znprimroot": 11
- "n": 4611604568667586561
"n_hex": "0x3fffb5ec00000001"
"n_bit": "2^62 - 2^46 - 2^43 - 2^41 - 2^36 - 2^34 + 1"
"n_fac": "2^34 * 3^2 * 5 * 7 * 83 * 10267 + 1"
"nd": 4611604568667586559
"nd_hex": "0x3fffb5ebffffffff"
"nd_bit": "2^62 - 2^46 - 2^43 - 2^41 - 2^36 - 2^34 - 1"
"r2": 1144864024261908098
"r2_hex": "0xfe35fc3aa415682"
"r2_bit": "2^60 - 2^53 + 2^50 - 2^47 - 2^45 - 2^38 + 2^34 - 2^31 + 2^29 + 2^27 + 2^25 + 2^22 + 2^17 - 2^15 - 2^13 - 2^11 - 2^9 + 2^7 + 2"
"znprimroot": 17
- "n": 4611680074192650241
"n_hex": "0x3ffffa9800000001"
"n_bit": "2^62 - 2^43 + 2^41 + 2^39 + 2^37 - 2^35 + 1"
"n_fac": "2^35 * 3 * 5 * 8947837 + 1"
"nd": 4611680074192650239
"nd_hex": "0x3ffffa97ffffffff"
"nd_bit": "2^62 - 2^43 + 2^41 + 2^39 + 2^37 - 2^35 - 1"
"r2": 4038547818456749816
"r2_hex": "0x380bcdd7ff8b16f8"
"r2_bit": "2^62 - 2^59 + 2^52 - 2^50 - 2^46 + 2^44 - 2^41 - 2^37 - 2^35 - 2^23 + 2^20 - 2^18 - 2^16 + 2^13 - 2^11 - 2^8 - 2^3"
"znprimroot": 11
- "n": 4611685125074190337
"n_hex": "0x3fffff3000000001"
"n_bit": "2^62 - 2^40 + 2^38 - 2^36 + 1"
"n_fac": "2^36 * 3^3 * 2485513 + 1"
"nd": 4611685125074190335
"nd_hex": "0x3fffff2fffffffff"
"nd_bit": "2^62 - 2^40 + 2^38 - 2^36 - 1"
"r2": 154598344251759617
"r2_hex": "0x2253e5ffffd5c01"
"r2_bit": "2^57 + 2^53 + 2^50 + 2^48 + 2^46 - 2^41 + 2^39 - 2^37 - 2^17 - 2^15 - 2^13 - 2^10 + 1"
"znprimroot": 5
- "n": 4611653788992798721
"n_hex": "0x3fffe2b000000001"
"n_bit": "2^62 - 2^45 + 2^42 - 2^40 - 2^38 - 2^36 + 1"
"n_fac": "2^36 * 3 * 5 * 263 * 17011 + 1"
"nd": 4611653788992798719
"nd_hex": "0x3fffe2afffffffff"
"nd_bit": "2^62 - 2^45 + 2^42 - 2^40 - 2^38 - 2^36 - 1"
"r2": 616781217858262491
"r2_hex": "0x88f3f3ff29315db"
"r2_bit": "2^59 + 2^55 + 2^52 - 2^48 + 2^46 - 2^40 + 2^38 - 2^28 + 2^25 + 2^23 + 2^20 + 2^18 - 2^16 + 2^13 - 2^11 - 2^9 - 2^5 - 2^2 - 1"
"znprimroot": 11
- "n": 4611649665824194561
"n_hex": "0x3fffdef000000001"
"n_bit": "2^62 - 2^45 - 2^40 - 2^36 + 1"
"n_fac": "2^36 * 3 * 5 * 7 * 31 * 53 * 389 + 1"
"nd": 4611649665824194559
"nd_hex": "0x3fffdeefffffffff"
"nd_bit": "2^62 - 2^45 - 2^40 - 2^36 - 1"
"r2": 3994584017539920687
"r2_hex": "0x376f9cffeeeb732f"
"r2_bit": "2^62 - 2^59 - 2^55 - 2^52 - 2^47 + 2^45 - 2^42 + 2^40 - 2^28 - 2^24 - 2^20 - 2^18 - 2^15 - 2^12 + 2^10 - 2^8 + 2^6 - 2^4 - 1"
"znprimroot": 11
- "n": 4611645542655590401
"n_hex": "0x3fffdb3000000001"
"n_bit": "2^62 - 2^45 - 2^42 - 2^40 + 2^38 - 2^36 + 1"
"n_fac": "2^36 * 3^2 * 5^2 * 13 * 22943 + 1"
"nd": 4611645542655590399
"nd_hex": "0x3fffdb2fffffffff"
"nd_bit": "2^62 - 2^45 - 2^42 - 2^40 + 2^38 - 2^36 - 1"
"r2": 4401475818796306388
"r2_hex": "0x3d152eefead34fd4"
"r2_bit": "2^62 - 2^58 + 2^56 + 2^52 + 2^50 + 2^48 + 2^46 - 2^44 - 2^40 - 2^36 - 2^28 - 2^26 - 2^24 - 2^22 + 2^20 + 2^18 - 2^16 + 2^14 + 2^12 - 2^6 + 2^4 + 2^2"
"znprimroot": 19
- "n": 4611317750751559681
"n_hex": "0x3ffeb11000000001"
"n_bit": "2^62 - 2^48 - 2^46 - 2^44 + 2^40 + 2^36 + 1"
"n_fac": "2^36 * 3^3 * 5 * 7 * 17 * 4177 + 1"
"nd": 4611317750751559679
"nd_hex": "0x3ffeb10fffffffff"
"nd_bit": "2^62 - 2^48 - 2^46 - 2^44 + 2^40 + 2^36 - 1"
"r2": 2733905602643207642
"r2_hex": "0x25f0c8a926ffa5da"
"r2_bit": "2^61 + 2^59 - 2^57 - 2^52 + 2^48 - 2^46 + 2^43 + 2^39 + 2^37 + 2^35 + 2^32 + 2^29 + 2^27 - 2^24 - 2^15 + 2^13 + 2^11 - 2^9 - 2^5 - 2^3 + 2"
"znprimroot": 13
- "n": 4611685606110527489
"n_hex": "0x3fffffa000000001"
"n_bit": "2^62 - 2^39 + 2^37 + 1"
"n_fac": "2^37 * 479 * 70051 + 1"
"nd": 4611685606110527487
"nd_hex": "0x3fffff9fffffffff"
"nd_bit": "2^62 - 2^39 + 2^37 - 1"
"r2": 15198824108617729
"r2_hex": "0x35ff3fffff7001"
"r2_bit": "2^54 - 2^51 - 2^49 - 2^40 + 2^38 - 2^15 - 2^12 + 1"
"znprimroot": 3
- "n": 4611682857331458049
"n_hex": "0x3ffffd2000000001"
"n_bit": "2^62 - 2^42 + 2^40 + 2^37 + 1"
"n_fac": "2^37 * 3 * 7 * 1597829 + 1"
"nd": 4611682857331458047
"nd_hex": "0x3ffffd1fffffffff"
"nd_bit": "2^62 - 2^42 + 2^40 + 2^37 - 1"
"r2": 2237722903751618560
"r2_hex": "0x1f0dfd1fffdef000"
"r2_bit": "2^61 - 2^56 + 2^52 - 2^49 - 2^42 + 2^40 + 2^37 - 2^21 - 2^16 - 2^12"
"znprimroot": 13
- "n": 4611527001558220801
"n_hex": "0x3fff6f6000000001"
"n_bit": "2^62 - 2^47 - 2^44 - 2^39 - 2^37 + 1"
"n_fac": "2^37 * 3 * 5^2 * 7 * 79 * 809 + 1"
"nd": 4611527001558220799
"nd_hex": "0x3fff6f5fffffffff"
"nd_bit": "2^62 - 2^47 - 2^44 - 2^39 - 2^37 - 1"
"r2": 375742837585317234
"r2_hex": "0x536e81eb92b8d72"
"r2_bit": "2^58 + 2^56 + 2^54 - 2^51 - 2^48 - 2^45 + 2^43 + 2^37 - 2^32 - 2^30 - 2^27 + 2^24 + 2^22 - 2^20 - 2^18 - 2^15 + 2^12 - 2^9 - 2^7 - 2^4 + 2"
"znprimroot": 19
- "n": 4611296104116387841
"n_hex": "0x3ffe9d6000000001"
"n_bit": "2^62 - 2^49 + 2^47 + 2^45 - 2^41 - 2^39 - 2^37 + 1"
"n_fac": "2^37 * 3^2 * 5 * 7 * 11 * 23 * 421 + 1"
"nd": 4611296104116387839
"nd_hex": "0x3ffe9d5fffffffff"
"nd_bit": "2^62 - 2^49 + 2^47 + 2^45 - 2^41 - 2^39 - 2^37 - 1"
"r2": 2756699505919911702
"r2_hex": "0x2641c39852d9e716"
"r2_bit": "2^61 + 2^59 - 2^57 + 2^54 + 2^49 - 2^46 + 2^42 - 2^39 + 2^37 - 2^35 + 2^30 + 2^28 + 2^26 - 2^24 - 2^21 - 2^19 + 2^17 - 2^13 + 2^11 - 2^8 + 2^5 - 2^3 - 2"
"znprimroot": 43
- "n": 4611672549409947649
"n_hex": "0x3ffff3c000000001"
"n_bit": "2^62 - 2^44 + 2^42 - 2^38 + 1"
"n_fac": "2^38 * 3 * 11 * 29 * 47 * 373 + 1"
"nd": 4611672549409947647
"nd_hex": "0x3ffff3bfffffffff"
"nd_bit": "2^62 - 2^44 + 2^42 - 2^38 - 1"
"r2": 4113294989703233423
"r2_hex": "0x39155bfffda7bf8f"
"r2_bit": "2^62 - 2^59 + 2^56 + 2^53 - 2^51 - 2^49 - 2^47 - 2^45 - 2^42 - 2^25 - 2^23 + 2^21 + 2^19 - 2^14 - 2^7 + 2^4 - 1"
"znprimroot": 14
- "n": 4611656056735531009
"n_hex": "0x3fffe4c000000001"
"n_bit": "2^62 - 2^45 + 2^42 + 2^40 - 2^38 + 1"
"n_fac": "2^38 * 3^2 * 31 * 60133 + 1"
"nd": 4611656056735531007
"nd_hex": "0x3fffe4bfffffffff"
"nd_bit": "2^62 - 2^45 + 2^42 + 2^40 - 2^38 - 1"
"r2": 3158806196696496913
"r2_hex": "0x2bd6557ff465bb11"
"r2_bit": "2^62 - 2^60 - 2^58 - 2^53 - 2^51 - 2^49 + 2^47 - 2^45 - 2^43 - 2^41 - 2^39 - 2^28 + 2^26 + 2^23 - 2^21 + 2^19 - 2^17 - 2^14 - 2^10 - 2^8 + 2^4 + 1"
"znprimroot": 11
- "n": 4611627194555301889
"n_hex": "0x3fffca8000000001"
"n_bit": "2^62 - 2^46 + 2^43 + 2^41 + 2^39 + 1"
"n_fac": "2^39 * 3 * 11 * 254197 + 1"
"nd": 4611627194555301887
"nd_hex": "0x3fffca7fffffffff"
"nd_bit": "2^62 - 2^46 + 2^43 + 2^41 + 2^39 - 1"
"r2": 3553216959942679199
"r2_hex": "0x314f8fffd346da9f"
"r2_bit": "2^62 - 2^60 + 2^56 + 2^54 + 2^52 - 2^47 + 2^44 - 2^30 + 2^28 + 2^26 - 2^24 + 2^22 + 2^19 - 2^16 - 2^13 - 2^11 + 2^9 + 2^7 + 2^5 - 1"
"znprimroot": 7
- "n": 4611564522392518657
"n_hex": "0x3fff918000000001"
"n_bit": "2^62 - 2^47 + 2^44 + 2^41 - 2^39 + 1"
"n_fac": "2^39 * 3^3 * 7 * 44383 + 1"
"nd": 4611564522392518655
"nd_hex": "0x3fff917fffffffff"
"nd_bit": "2^62 - 2^47 + 2^44 + 2^41 - 2^39 - 1"
"r2": 1202168077458192024
"r2_hex": "0x10aef57f4135b698"
"r2_bit": "2^60 + 2^56 - 2^54 - 2^52 - 2^48 - 2^43 - 2^41 - 2^39 - 2^32 + 2^30 + 2^24 + 2^22 - 2^19 - 2^17 - 2^14 - 2^11 - 2^9 + 2^7 + 2^5 - 2^3"
"znprimroot": 5
- "n": 4611079637764669441
"n_hex": "0x3ffdd88000000001"
"n_bit": "2^62 - 2^49 - 2^45 - 2^43 + 2^39 + 1"
"n_fac": "2^39 * 3^2 * 5 * 7 * 26627 + 1"
"nd": 4611079637764669439
"nd_hex": "0x3ffdd87fffffffff"
"nd_bit": "2^62 - 2^49 - 2^45 - 2^43 + 2^39 - 1"
"r2": 2460616783267037819
"r2_hex": "0x2225dded6eff027b"
"r2_bit": "2^61 + 2^57 + 2^53 + 2^51 - 2^49 - 2^45 - 2^41 - 2^36 - 2^33 - 2^31 - 2^28 - 2^24 - 2^16 + 2^9 + 2^7 - 2^2 - 1"
"znprimroot": 19
- "n": 4611368259566960641
"n_hex": "0x3ffedf0000000001"
"n_bit": "2^62 - 2^48 - 2^45 - 2^40 + 1"
"n_fac": "2^40 * 3 * 5 * 7 * 59 * 677 + 1"
"nd": 4611368259566960639
"nd_hex": "0x3ffedeffffffffff"
"nd_bit": "2^62 - 2^48 - 2^45 - 2^40 - 1"
"r2": 75677164420528803
"r2_hex": "0x10cdbfae6e4faa3"
"r2_bit": "2^56 + 2^52 - 2^50 + 2^48 - 2^45 - 2^42 - 2^34 - 2^32 - 2^29 + 2^27 - 2^24 - 2^21 + 2^18 + 2^16 - 2^11 + 2^9 + 2^7 + 2^5 + 2^2 - 1"
"znprimroot": 11
- "n": 4608943836427714561
"n_hex": "0x3ff6420000000001"
"n_bit": "2^62 - 2^51 - 2^49 + 2^46 + 2^41 + 1"
"n_fac": "2^41 * 3 * 5 * 7 * 19961 + 1"
"nd": 4608943836427714559
"nd_hex": "0x3ff641ffffffffff"
"nd_bit": "2^62 - 2^51 - 2^49 + 2^46 + 2^41 - 1"
"r2": 1208227506991993182
"r2_hex": "0x10c47c84221d115e"
"r2_bit": "2^60 + 2^56 - 2^54 + 2^50 + 2^47 - 2^42 + 2^39 + 2^34 + 2^29 + 2^25 + 2^21 - 2^18 + 2^16 + 2^12 + 2^9 - 2^7 - 2^5 - 2"
"znprimroot": 11
- "n": 4611549678985543681
"n_hex": "0x3fff840000000001"
"n_bit": "2^62 - 2^47 + 2^42 + 1"
"n_fac": "2^42 * 3^5 * 5 * 863 + 1"
"nd": 4611549678985543679
"nd_hex": "0x3fff83ffffffffff"
"nd_bit": "2^62 - 2^47 + 2^42 - 1"
"r2": 2411831528053943938
"r2_hex": "0x21788bff0fbe2e82"
"r2_bit": "2^61 + 2^57 - 2^55 - 2^51 + 2^47 + 2^44 - 2^42 - 2^32 + 2^28 - 2^22 - 2^17 + 2^14 - 2^12 - 2^9 + 2^7 + 2"
"znprimroot": 19
- "n": 4605942169683886081
"n_hex": "0x3feb980000000001"
"n_bit": "2^62 - 2^52 - 2^50 - 2^47 + 2^45 - 2^43 + 1"
"n_fac": "2^43 * 3 * 5 * 7 * 4987 + 1"
"nd": 4605942169683886079
"nd_hex": "0x3feb97ffffffffff"
"nd_bit": "2^62 - 2^52 - 2^50 - 2^47 + 2^45 - 2^43 - 1"
"r2": 1949171866471952627
"r2_hex": "0x1b0cd97c433ef0f3"
"r2_bit": "2^61 - 2^58 - 2^56 + 2^52 - 2^50 + 2^48 - 2^45 - 2^43 + 2^41 - 2^39 - 2^34 + 2^30 + 2^26 - 2^24 + 2^22 - 2^16 - 2^12 + 2^8 - 2^4 + 2^2 - 1"
"znprimroot": 11
- "n": 4604622755730554881
"n_hex": "0x3fe6e80000000001"
"n_bit": "2^62 - 2^53 + 2^51 - 2^48 - 2^45 + 2^43 + 1"
"n_fac": "2^43 * 3^2 * 5 * 11633 + 1"
"nd": 4604622755730554879
"nd_hex": "0x3fe6e7ffffffffff"
"nd_bit": "2^62 - 2^53 + 2^51 - 2^48 - 2^45 + 2^43 - 1"
"r2": 4071709421378805560
"r2_hex": "0x38819e2559e51f38"
"r2_bit": "2^62 - 2^59 + 2^55 + 2^49 - 2^47 + 2^45 - 2^41 + 2^37 + 2^35 - 2^33 - 2^31 - 2^29 - 2^27 + 2^25 - 2^21 + 2^18 + 2^16 + 2^13 - 2^8 + 2^6 - 2^3"
"znprimroot": 23
- "n": 4602247810614558721
"n_hex": "0x3fde780000000001"
"n_bit": "2^62 - 2^53 - 2^49 + 2^47 - 2^43 + 1"
"n_fac": "2^43 * 3^2 * 5 * 7 * 11 * 151 + 1"
"nd": 4602247810614558719
"nd_hex": "0x3fde77ffffffffff"
"nd_bit": "2^62 - 2^53 - 2^49 + 2^47 - 2^43 - 1"
"r2": 18857059917234173
"r2_hex": "0x42fe6565dffffd"
"r2_bit": "2^54 + 2^50 - 2^48 - 2^41 + 2^39 - 2^37 + 2^35 - 2^33 - 2^31 - 2^29 + 2^27 - 2^25 - 2^21 - 2^2 + 1"
"znprimroot": 13
- "n": 4610085129497346049
"n_hex": "0x3ffa500000000001"
"n_bit": "2^62 - 2^51 + 2^49 + 2^46 + 2^44 + 1"
"n_fac": "2^44 * 3^2 * 11 * 2647 + 1"
"nd": 4610085129497346047
"nd_hex": "0x3ffa4fffffffffff"
"nd_bit": "2^62 - 2^51 + 2^49 + 2^46 + 2^44 - 1"
"r2": 4562779185302427475
"r2_hex": "0x3f523f7e907f5753"
"r2_bit": "2^62 - 2^56 + 2^54 + 2^52 + 2^49 + 2^46 - 2^39 - 2^33 + 2^31 + 2^28 + 2^23 - 2^15 - 2^13 - 2^11 - 2^8 + 2^6 + 2^4 + 2^2 - 1"
"znprimroot": 7
- "n": 4593935502708572161
"n_hex": "0x3fc0f00000000001"
"n_bit": "2^62 - 2^54 + 2^48 - 2^44 + 1"
"n_fac": "2^44 * 3^2 * 5 * 7 * 829 + 1"
"nd": 4593935502708572159
"nd_hex": "0x3fc0efffffffffff"
"nd_bit": "2^62 - 2^54 + 2^48 - 2^44 - 1"
"r2": 988577085074218521
"r2_hex": "0xdb8219f04f09e19"
"r2_bit": "2^60 - 2^57 - 2^54 - 2^51 + 2^45 + 2^41 - 2^39 + 2^37 - 2^32 + 2^26 + 2^24 - 2^20 + 2^15 + 2^13 - 2^9 + 2^5 - 2^3 + 1"
"znprimroot": 23
- "n": 4609610140474146817
"n_hex": "0x3ff8a00000000001"
"n_bit": "2^62 - 2^51 + 2^47 + 2^45 + 1"
"n_fac": "2^45 * 3^2 * 14557 + 1"
"nd": 4609610140474146815
"nd_hex": "0x3ff89fffffffffff"
"nd_bit": "2^62 - 2^51 + 2^47 + 2^45 - 1"
"r2": 132397857325646870
"r2_hex": "0x1d65f2656eb0416"
"r2_bit": "2^57 - 2^53 - 2^51 - 2^49 + 2^47 - 2^45 - 2^40 + 2^37 + 2^35 - 2^33 + 2^31 - 2^29 - 2^27 - 2^24 - 2^20 - 2^18 - 2^16 + 2^10 + 2^5 - 2^3 - 2"
"znprimroot": 10
- "n": 4611615649683210241
"n_hex": "0x3fffc00000000001"
"n_bit": "2^62 - 2^46 + 1"
"n_fac": "2^46 * 3 * 5 * 17 * 257 + 1"
"nd": 4611615649683210239
"nd_hex": "0x3fffbfffffffffff"
"nd_bit": "2^62 - 2^46 - 1"
"r2": 1152780766044733441
"r2_hex": "0xfff7fffbfffc001"
"r2_bit": "2^60 - 2^47 - 2^30 - 2^14 + 1"
"znprimroot": 11
- "n": 4573616527827271681
"n_hex": "0x3f78c00000000001"
"n_bit": "2^62 - 2^55 - 2^51 + 2^48 - 2^46 + 1"
"n_fac": "2^46 * 3 * 5 * 7 * 619 + 1"
"nd": 4573616527827271679
"nd_hex": "0x3f78bfffffffffff"
"nd_bit": "2^62 - 2^55 - 2^51 + 2^48 - 2^46 - 1"
"r2": 1014189305135335226
"r2_hex": "0xe131fccb397873a"
"r2_bit": "2^60 - 2^57 + 2^52 + 2^50 - 2^48 + 2^45 - 2^38 + 2^36 - 2^34 + 2^32 - 2^30 - 2^28 + 2^26 - 2^23 + 2^21 - 2^19 - 2^15 + 2^11 - 2^8 + 2^6 - 2^3 + 2"
"znprimroot": 58
- "n": 4605071356474687489
"n_hex": "0x3fe8800000000001"
"n_bit": "2^62 - 2^53 + 2^51 + 2^47 + 1"
"n_fac": "2^47 * 3 * 13 * 839 + 1"
"nd": 4605071356474687487
"nd_hex": "0x3fe87fffffffffff"
"nd_bit": "2^62 - 2^53 + 2^51 + 2^47 - 1"
"r2": 1967219111020182905
"r2_hex": "0x1b4cf75bd3b7bd79"
"r2_bit": "2^61 - 2^58 - 2^56 + 2^54 + 2^52 - 2^50 + 2^48 - 2^43 - 2^39 - 2^37 - 2^34 - 2^30 + 2^28 + 2^26 - 2^22 - 2^19 - 2^14 - 2^9 - 2^7 - 2^3 + 1"
"znprimroot": 14
- "n": 4604226931544555521
"n_hex": "0x3fe5800000000001"
"n_bit": "2^62 - 2^53 + 2^51 - 2^49 - 2^47 + 1"
"n_fac": "2^47 * 3^2 * 5 * 727 + 1"
"nd": 4604226931544555519
"nd_hex": "0x3fe57fffffffffff"
"nd_bit": "2^62 - 2^53 + 2^51 - 2^49 - 2^47 - 1"
"r2": 4391138290066235266
"r2_hex": "0x3cf0750273039f82"
"r2_bit": "2^62 - 2^58 + 2^56 - 2^52 + 2^47 - 2^44 + 2^42 + 2^40 + 2^33 + 2^31 - 2^28 + 2^26 - 2^24 + 2^18 - 2^15 + 2^13 - 2^7 + 2"
"znprimroot": 7
- "n": 4566227809688616961
"n_hex": "0x3f5e800000000001"
"n_bit": "2^62 - 2^55 - 2^53 - 2^49 + 2^47 + 1"
"n_fac": "2^47 * 3^2 * 5 * 7 * 103 + 1"
"nd": 4566227809688616959
"nd_hex": "0x3f5e7fffffffffff"
"nd_bit": "2^62 - 2^55 - 2^53 - 2^49 + 2^47 - 1"
"r2": 4523694750156500473
"r2_hex": "0x3ec764685f60adf9"
"r2_bit": "2^62 - 2^56 - 2^54 + 2^51 - 2^47 - 2^45 + 2^42 + 2^39 - 2^37 + 2^35 + 2^31 - 2^29 - 2^23 - 2^21 + 2^16 - 2^14 - 2^12 - 2^9 - 2^3 + 1"
"znprimroot": 13
- "n": 4395231761336893441
"n_hex": "0x3cff000000000001"
"n_bit": "2^62 - 2^58 + 2^56 - 2^48 + 1"
"n_fac": "2^48 * 3^2 * 5 * 347 + 1"
"nd": 4395231761336893439
"nd_hex": "0x3cfeffffffffffff"
"nd_bit": "2^62 - 2^58 + 2^56 - 2^48 - 1"
"r2": 852905393536919555
"r2_hex": "0xbd620efc0c86803"
"r2_bit": "2^60 - 2^58 - 2^53 - 2^51 - 2^49 + 2^45 + 2^40 - 2^36 - 2^30 + 2^24 - 2^22 + 2^19 + 2^15 - 2^13 + 2^11 + 2^2 - 1"
"znprimroot": 7
- "n": 4595360469778169857
"n_hex": "0x3fc6000000000001"
"n_bit": "2^62 - 2^54 + 2^51 - 2^49 + 1"
"n_fac": "2^49 * 3^2 * 907 + 1"
"nd": 4595360469778169855
"nd_hex": "0x3fc5ffffffffffff"
"nd_bit": "2^62 - 2^54 + 2^51 - 2^49 - 1"
"r2": 670978346081679671
"r2_hex": "0x94fcb40322d7937"
"r2_bit": "2^59 + 2^56 + 2^54 + 2^52 - 2^46 + 2^44 - 2^42 - 2^40 + 2^38 + 2^30 - 2^28 + 2^25 + 2^22 - 2^20 - 2^17 - 2^15 - 2^11 + 2^8 + 2^6 - 2^3 - 1"
"znprimroot": 5
- "n": 1950621588604846081
"n_hex": "0x1b12000000000001"
"n_bit": "2^61 - 2^58 - 2^56 + 2^52 + 2^49 + 1"
"n_fac": "2^49 * 3^2 * 5 * 7 * 11 + 1"
"nd": 1950621588604846079
"nd_hex": "0x1b11ffffffffffff"
"nd_bit": "2^61 - 2^58 - 2^56 + 2^52 + 2^49 - 1"
"r2": 1691868669234937853
"r2_hex": "0x177ab9973c5c7ffd"
"r2_bit": "2^61 - 2^59 - 2^55 - 2^50 - 2^48 - 2^46 - 2^43 + 2^41 - 2^39 + 2^37 - 2^35 - 2^32 + 2^30 - 2^26 + 2^23 - 2^21 - 2^18 + 2^15 - 2^2 + 1"
"znprimroot": 26
- "n": 4601552919265804289
"n_hex": "0x3fdc000000000001"
"n_bit": "2^62 - 2^53 - 2^50 + 1"
"n_fac": "2^50 * 61 * 67 + 1"
"nd": 4601552919265804287
"nd_hex": "0x3fdbffffffffffff"
"nd_bit": "2^62 - 2^53 - 2^50 - 1"
"r2": 569683038721811285
"r2_hex": "0x7e7ebb495942355"
"r2_bit": "2^59 - 2^53 + 2^51 - 2^44 - 2^42 - 2^38 - 2^36 + 2^34 + 2^31 + 2^29 - 2^27 - 2^25 - 2^23 + 2^20 + 2^18 + 2^13 + 2^10 - 2^8 + 2^6 + 2^4 + 2^2 + 1"
"znprimroot": 3
- "n": 4488962928581541889
"n_hex": "0x3e4c000000000001"
"n_bit": "2^62 - 2^57 + 2^54 + 2^52 - 2^50 + 1"
"n_fac": "2^50 * 3^2 * 443 + 1"
"nd": 4488962928581541887
"nd_hex": "0x3e4bffffffffffff"
"nd_bit": "2^62 - 2^57 + 2^54 + 2^52 - 2^50 - 1"
"r2": 1235134789226611203
"r2_hex": "0x1124148bf9944203"
"r2_bit": "2^60 + 2^56 + 2^53 + 2^50 + 2^44 + 2^42 + 2^39 + 2^36 - 2^34 - 2^27 + 2^25 - 2^23 + 2^20 + 2^18 + 2^14 + 2^9 + 2^2 - 1"
"znprimroot": 7
- "n": 4374121138083594241
"n_hex": "0x3cb4000000000001"
"n_bit": "2^62 - 2^58 + 2^56 - 2^54 - 2^52 + 2^50 + 1"
"n_fac": "2^50 * 3 * 5 * 7 * 37 + 1"
"nd": 4374121138083594239
"nd_hex": "0x3cb3ffffffffffff"
"nd_bit": "2^62 - 2^58 + 2^56 - 2^54 - 2^52 + 2^50 - 1"
"r2": 3890592482878579350
"r2_hex": "0x35fe293ffbc86296"
"r2_bit": "2^62 - 2^59 - 2^57 - 2^49 + 2^45 + 2^43 + 2^40 + 2^38 - 2^26 - 2^22 + 2^19 + 2^15 - 2^13 + 2^9 + 2^7 + 2^5 - 2^3 - 2"
"znprimroot": 17
- "n": 1773292353277132801
"n_hex": "0x189c000000000001"
"n_bit": "2^61 - 2^59 + 2^55 + 2^53 - 2^50 + 1"
"n_fac": "2^50 * 3^2 * 5^2 * 7 + 1"
"nd": 1773292353277132799
"nd_hex": "0x189bffffffffffff"
"nd_bit": "2^61 - 2^59 + 2^55 + 2^53 - 2^50 - 1"
"r2": 1133555311352070141
"r2_hex": "0xfbb328cc265bffd"
"r2_bit": "2^60 - 2^54 - 2^50 - 2^48 + 2^46 - 2^44 + 2^41 + 2^39 + 2^36 - 2^34 + 2^32 - 2^30 + 2^25 + 2^23 - 2^21 + 2^19 - 2^17 - 2^14 - 2^2 + 1"
"znprimroot": 17
- "n": 4546383823830515713
"n_hex": "0x3f18000000000001"
"n_bit": "2^62 - 2^56 + 2^53 - 2^51 + 1"
"n_fac": "2^51 * 3 * 673 + 1"
"nd": 4546383823830515711
"nd_hex": "0x3f17ffffffffffff"
"nd_bit": "2^62 - 2^56 + 2^53 - 2^51 - 1"
"r2": 1379415314692816662
"r2_hex": "0x1324aaeb95ffbf16"
"r2_bit": "2^60 + 2^58 - 2^56 + 2^53 + 2^50 + 2^48 - 2^46 - 2^44 - 2^42 - 2^40 - 2^36 - 2^34 - 2^31 + 2^29 - 2^27 - 2^25 - 2^14 - 2^8 + 2^5 - 2^3 - 2"
"znprimroot": 10
- "n": 4276167846188285953
"n_hex": "0x3b58000000000001"
"n_bit": "2^62 - 2^58 - 2^55 - 2^53 - 2^51 + 1"
"n_fac": "2^51 * 3^2 * 211 + 1"
"nd": 4276167846188285951
"nd_hex": "0x3b57ffffffffffff"
"nd_bit": "2^62 - 2^58 - 2^55 - 2^53 - 2^51 - 1"
"r2": 2833460219586886241
"r2_hex": "0x2752790eb1ad3a61"
"r2_bit": "2^61 + 2^59 - 2^56 + 2^54 + 2^52 + 2^49 + 2^47 - 2^43 + 2^40 + 2^36 - 2^32 - 2^30 - 2^28 + 2^25 - 2^22 - 2^20 - 2^18 + 2^16 + 2^14 - 2^11 + 2^9 + 2^7 - 2^5 + 1"
"znprimroot": 5
- "n": 3681692695375380481
"n_hex": "0x3318000000000001"
"n_bit": "2^62 - 2^60 + 2^58 - 2^56 + 2^53 - 2^51 + 1"
"n_fac": "2^51 * 3 * 5 * 109 + 1"
"nd": 3681692695375380479
"nd_hex": "0x3317ffffffffffff"
"nd_bit": "2^62 - 2^60 + 2^58 - 2^56 + 2^53 - 2^51 - 1"
"r2": 1591293904299054744
"r2_hex": "0x1615695ffafd5698"
"r2_bit": "2^61 - 2^59 - 2^57 + 2^53 - 2^51 - 2^49 - 2^47 - 2^45 + 2^43 + 2^41 - 2^39 - 2^37 - 2^26 - 2^24 - 2^17 - 2^15 - 2^13 - 2^11 - 2^9 + 2^7 + 2^5 - 2^3"
"znprimroot": 7
- "n": 3445253714938429441
"n_hex": "0x2fd0000000000001"
"n_bit": "2^62 - 2^60 - 2^54 + 2^52 + 1"
"n_fac": "2^52 * 3^2 * 5 * 17 + 1"
"nd": 3445253714938429439
"nd_hex": "0x2fcfffffffffffff"
"nd_bit": "2^62 - 2^60 - 2^54 + 2^52 - 1"
"r2": 721982947321686615
"r2_hex": "0xa04ffaa54ffaa57"
"r2_bit": "2^59 + 2^57 + 2^50 + 2^48 - 2^39 + 2^37 + 2^35 + 2^33 + 2^30 + 2^28 + 2^26 + 2^24 - 2^15 + 2^13 + 2^11 + 2^9 + 2^7 - 2^5 - 2^3 - 1"
"znprimroot": 13
- "n": 4512606826625236993
"n_hex": "0x3ea0000000000001"
"n_bit": "2^62 - 2^57 + 2^55 + 2^53 + 1"
"n_fac": "2^53 * 3 * 167 + 1"
"nd": 4512606826625236991
"nd_hex": "0x3e9fffffffffffff"
"nd_bit": "2^62 - 2^57 + 2^55 + 2^53 - 1"
"r2": 2141538031191582325
"r2_hex": "0x1db8457e3629e675"
"r2_bit": "2^61 - 2^57 - 2^54 - 2^51 + 2^46 + 2^43 - 2^41 - 2^39 - 2^33 + 2^30 - 2^27 - 2^25 + 2^21 + 2^19 + 2^17 - 2^13 + 2^11 - 2^9 + 2^7 - 2^4 + 2^2 + 1"
"znprimroot": 7
- "n": 4134304457926115329
"n_hex": "0x3960000000000001"
"n_bit": "2^62 - 2^59 + 2^57 - 2^55 - 2^53 + 1"
"n_fac": "2^53 * 3^3 * 17 + 1"
"nd": 4134304457926115327
"nd_hex": "0x395fffffffffffff"
"nd_bit": "2^62 - 2^59 + 2^57 - 2^55 - 2^53 - 1"
"r2": 1061770218031091187
"r2_hex": "0xebc2a6346d50df3"
"r2_bit": "2^60 - 2^56 - 2^54 - 2^50 + 2^45 + 2^43 + 2^41 + 2^39 - 2^37 + 2^34 - 2^32 + 2^30 + 2^27 - 2^24 - 2^22 + 2^20 + 2^18 + 2^16 + 2^12 - 2^9 - 2^4 + 2^2 - 1"
"znprimroot": 7
- "n": 3377699720527872001
"n_hex": "0x2ee0000000000001"
"n_bit": "2^62 - 2^60 - 2^56 - 2^53 + 1"
"n_fac": "2^53 * 3 * 5^3 + 1"
"nd": 3377699720527871999
"nd_hex": "0x2edfffffffffffff"
"nd_bit": "2^62 - 2^60 - 2^56 - 2^53 - 1"
"r2": 1341616324194167600
"r2_hex": "0x129e60f04c756b30"
"r2_bit": "2^60 + 2^57 + 2^55 + 2^53 - 2^49 + 2^47 - 2^45 + 2^40 - 2^36 + 2^30 + 2^28 - 2^26 + 2^23 - 2^19 - 2^17 - 2^15 - 2^12 - 2^10 - 2^8 + 2^6 - 2^4"
"znprimroot": 26
- "n": 3188548536178311169
"n_hex": "0x2c40000000000001"
"n_bit": "2^62 - 2^60 - 2^58 + 2^54 + 1"
"n_fac": "2^54 * 3 * 59 + 1"
"nd": 3188548536178311167
"nd_hex": "0x2c3fffffffffffff"
"nd_bit": "2^62 - 2^60 - 2^58 + 2^54 - 1"
"r2": 157447878498127851
"r2_hex": "0x22f5e02e4850feb"
"r2_bit": "2^57 + 2^54 - 2^52 - 2^47 - 2^45 - 2^41 + 2^34 - 2^32 - 2^29 + 2^26 + 2^23 + 2^18 + 2^16 + 2^12 - 2^4 - 2^2 - 1"
"znprimroot": 7
- "n": 2485986994308513793
"n_hex": "0x2280000000000001"
"n_bit": "2^61 + 2^57 + 2^55 + 1"
"n_fac": "2^55 * 3 * 23 + 1"
"nd": 2485986994308513791
"nd_hex": "0x227fffffffffffff"
"nd_bit": "2^61 + 2^57 + 2^55 - 1"
"r2": 1677166609056699500
"r2_hex": "0x17467e2519f8946c"
"r2_bit": "2^61 - 2^59 - 2^56 + 2^54 + 2^51 - 2^49 + 2^47 - 2^41 + 2^37 + 2^34 + 2^32 + 2^29 - 2^27 + 2^25 - 2^19 + 2^15 + 2^12 + 2^10 + 2^7 - 2^4 - 2^2"
"znprimroot": 5
- "n": 1945555039024054273
"n_hex": "0x1b00000000000001"
"n_bit": "2^61 - 2^58 - 2^56 + 1"
"n_fac": "2^56 * 3^3 + 1"
"nd": 1945555039024054271
"nd_hex": "0x1affffffffffffff"
"nd_bit": "2^61 - 2^58 - 2^56 - 1"
"r2": 381638368423099815
"r2_hex": "0x54bda12f684bda7"
"r2_bit": "2^58 + 2^56 + 2^54 + 2^52 - 2^50 - 2^45 - 2^43 + 2^41 + 2^36 + 2^34 - 2^32 - 2^27 - 2^25 + 2^23 + 2^18 + 2^16 - 2^14 - 2^9 - 2^7 + 2^5 + 2^3 - 1"
"znprimroot": 5
- "n": 4179340454199820289
"n_hex": "0x3a00000000000001"
"n_bit": "2^62 - 2^59 + 2^57 + 1"
"n_fac": "2^57 * 29 + 1"
"nd": 4179340454199820287
"nd_hex": "0x39ffffffffffffff"
"nd_bit": "2^62 - 2^59 + 2^57 - 1"
"r2": 1684656853714315195
"r2_hex": "0x17611a7b9611a7bb"
"r2_bit": "2^61 - 2^59 - 2^55 - 2^53 + 2^48 + 2^45 - 2^43 + 2^41 + 2^39 - 2^34 - 2^31 + 2^29 - 2^27 - 2^25 + 2^20 + 2^17 - 2^15 + 2^13 + 2^11 - 2^6 - 2^2 - 1"
"znprimroot": 3
- "r": 63
"primes":
- "n": 9223372036854775783
"n_hex": "0x7fffffffffffffe7"
"n_bit": "2^63 - 2^5 + 2^3 - 1"
"n_fac": "2 * 3^4 * 17 * 23 * 145612264166821c + 1"
"nd": 1106804644422573097
"nd_hex": "0xf5c28f5c28f5c29"
"nd_bit": "2^60 - 2^55 - 2^53 - 2^50 + 2^45 + 2^43 + 2^40 - 2^35 - 2^33 - 2^30 + 2^25 + 2^23 + 2^20 - 2^15 - 2^13 - 2^10 + 2^5 + 2^3 + 1"
"r2": 625
"r2_hex": "0x271"
"r2_bit": "2^9 + 2^7 - 2^4 + 1"
"znprimroot": 3
- "n": 9223372036854775351
"n_hex": "0x7ffffffffffffe37"
"n_bit": "2^63 - 2^9 + 2^6 - 2^3 - 1"
"n_fac": "2 * 3^3 * 5^2 * 53 * 128908064805797 + 1"
"nd": 686202733595322489
"nd_hex": "0x985e1c023d9e879"
"nd_bit": "2^59 + 2^57 - 2^55 + 2^51 - 2^49 - 2^45 + 2^41 - 2^38 + 2^29 + 2^26 - 2^21 - 2^19 + 2^17 - 2^13 + 2^11 + 2^7 - 2^3 + 1"
"r2": 208849
"r2_hex": "0x32fd1"
"r2_bit": "2^18 - 2^16 + 2^14 - 2^12 - 2^6 + 2^4 + 1"
"znprimroot": 3
- "n": 9223372036854765091
"n_hex": "0x7fffffffffffd623"
"n_bit": "2^63 - 2^13 - 2^11 - 2^9 + 2^5 + 2^2 - 1"
"n_fac": "2 * 3^4 * 5 * 7 * 1626697008263627c + 1"
"nd": 7174211934237324917
"nd_hex": "0x638febbe5b957675"
"nd_bit": "2^63 - 2^61 + 2^58 - 2^55 + 2^52 - 2^44 - 2^42 - 2^38 - 2^33 + 2^31 - 2^29 - 2^26 - 2^23 + 2^21 - 2^19 - 2^17 - 2^15 - 2^11 - 2^9 + 2^7 - 2^4 + 2^2 + 1"
"r2": 114854089
"r2_hex": "0x6d888c9"
"r2_bit": "2^27 - 2^24 - 2^21 - 2^19 + 2^15 + 2^11 + 2^8 - 2^6 + 2^3 + 1"
"znprimroot": 3
- "n": 9223372036854775549
"n_hex": "0x7ffffffffffffefd"
"n_bit": "2^63 - 2^8 - 2^2 + 1"
"n_fac": "2^2 * 3^2 * 7 * 107 * 342062455008707 + 1"
"nd": 213668850274628011
"nd_hex": "0x2f71aaff02f71ab"
"nd_bit": "2^58 - 2^56 - 2^51 - 2^48 + 2^45 - 2^42 - 2^40 - 2^38 - 2^36 - 2^28 + 2^22 - 2^20 - 2^15 - 2^12 + 2^9 - 2^6 - 2^4 - 2^2 - 1"
"r2": 67081
"r2_hex": "0x10609"
"r2_bit": "2^16 + 2^11 - 2^9 + 2^3 + 1"
"znprimroot": 2
- "n": 9223372036854751861
"n_hex": "0x7fffffffffffa275"
"n_bit": "2^63 - 2^15 + 2^13 + 2^9 + 2^7 - 2^4 + 2^2 + 1"
"n_fac": "2^2 * 3^3 * 5 * 7 * 839 * 6869 * 423391807 + 1"
"nd": 2035173418079117859
"nd_hex": "0x1c3e6370e0ec6223"
"nd_bit": "2^61 - 2^58 + 2^54 - 2^49 + 2^47 - 2^45 + 2^42 - 2^39 - 2^36 + 2^32 - 2^29 + 2^24 - 2^20 - 2^18 + 2^15 - 2^13 + 2^9 + 2^5 + 2^2 - 1"
"r2": 573458809
"r2_hex": "0x222e4979"
"r2_bit": "2^29 + 2^25 + 2^22 - 2^20 - 2^17 + 2^14 + 2^11 + 2^9 - 2^7 - 2^3 + 1"
"znprimroot": 6
- "n": 9223372036854775433
"n_hex": "0x7ffffffffffffe89"
"n_bit": "2^63 - 2^9 + 2^7 + 2^3 + 1"
"n_fac": "2^3 * 37 * 31160040665049917 + 1"
"nd": 688678445418489927
"nd_hex": "0x98ead65b7a32847"
"nd_bit": "2^59 + 2^57 - 2^55 + 2^52 - 2^48 - 2^46 - 2^44 - 2^41 - 2^39 - 2^37 + 2^35 - 2^33 - 2^30 - 2^27 - 2^23 + 2^21 + 2^18 - 2^16 + 2^13 + 2^11 + 2^6 + 2^3 - 1"
"r2": 140625
"r2_hex": "0x22551"
"r2_bit": "2^17 + 2^13 + 2^10 + 2^8 + 2^6 + 2^4 + 1"
"znprimroot": 3
- "n": 9223372036854775417
"n_hex": "0x7ffffffffffffe79"
"n_bit": "2^63 - 2^9 + 2^7 - 2^3 + 1"
"n_fac": "2^3 * 3 * 384307168202282309c + 1"
"nd": 353837801925375031
"nd_hex": "0x4e9159b2bddf437"
"nd_bit": "2^58 + 2^56 - 2^53 + 2^51 + 2^48 + 2^45 - 2^43 - 2^41 - 2^39 + 2^37 - 2^34 - 2^32 + 2^30 - 2^28 - 2^26 - 2^21 - 2^17 - 2^12 + 2^10 + 2^6 - 2^3 - 1"
"r2": 152881
"r2_hex": "0x25531"
"r2_bit": "2^17 + 2^14 + 2^12 + 2^10 + 2^8 + 2^6 - 2^4 + 1"
"znprimroot": 10
- "n": 9223372036854774937
"n_hex": "0x7ffffffffffffc99"
"n_bit": "2^63 - 2^10 + 2^7 + 2^5 - 2^3 + 1"
"n_fac": "2^3 * 3^2 * 128102389400760763c + 1"
"nd": 5591206010860300375
"nd_hex": "0x4d97f43e4f5b6857"
"nd_bit": "2^62 + 2^60 - 2^57 - 2^55 + 2^53 - 2^51 - 2^44 + 2^42 + 2^38 - 2^33 + 2^30 + 2^28 - 2^23 - 2^21 - 2^18 - 2^15 - 2^13 + 2^11 + 2^7 - 2^5 - 2^3 - 1"
"r2": 758641
"r2_hex": "0xb9371"
"r2_bit": "2^20 - 2^18 - 2^15 + 2^12 + 2^10 - 2^7 - 2^4 + 1"
"znprimroot": 5
- "n": 9223372036854750601
"n_hex": "0x7fffffffffff9d89"
"n_bit": "2^63 - 2^15 + 2^13 - 2^9 - 2^7 + 2^3 + 1"
"n_fac": "2^3 * 3^2 * 5^2 * 7 * 732013653718631 + 1"
"nd": 1810498862949078855
"nd_hex": "0x19202f1f98541747"
"nd_bit": "2^61 - 2^59 + 2^56 + 2^53 + 2^46 - 2^44 - 2^40 + 2^37 - 2^31 + 2^29 - 2^27 + 2^22 + 2^20 + 2^18 + 2^13 - 2^11 - 2^8 + 2^6 + 2^3 - 1"
"r2": 635392849
"r2_hex": "0x25df5351"
"r2_bit": "2^29 + 2^27 - 2^25 - 2^21 - 2^16 + 2^14 + 2^12 + 2^10 - 2^8 + 2^6 + 2^4 + 1"
"znprimroot": 13
- "n": 9223372036854775057
"n_hex": "0x7ffffffffffffd11"
"n_bit": "2^63 - 2^10 + 2^8 + 2^4 + 1"
"n_fac": "2^4 * 3 * 31 * 6198502712940037c + 1"
"nd": 73688724661955599
"nd_hex": "0x105cb81316d6c0f"
"nd_bit": "2^56 + 2^51 - 2^49 - 2^46 + 2^44 - 2^42 - 2^39 + 2^32 + 2^30 - 2^28 + 2^25 - 2^23 - 2^20 - 2^17 - 2^15 - 2^12 - 2^10 + 2^4 - 1"
"r2": 564001
"r2_hex": "0x89b21"
"r2_bit": "2^19 + 2^15 + 2^13 - 2^10 - 2^8 + 2^5 + 1"
"znprimroot": 5
- "n": 9223372036854775073
"n_hex": "0x7ffffffffffffd21"
"n_bit": "2^63 - 2^10 + 2^8 + 2^5 + 1"
"n_fac": "2^5 * 7^2 * 13 * 452480967271133c + 1"
"nd": 6751257354867849503
"nd_hex": "0x5db148cb6824391f"
"nd_bit": "2^63 - 2^61 - 2^57 - 2^54 - 2^52 + 2^48 + 2^46 + 2^43 + 2^40 - 2^38 + 2^36 - 2^34 - 2^31 - 2^29 + 2^27 + 2^21 + 2^18 + 2^14 - 2^11 + 2^8 + 2^5 - 1"
"r2": 540225
"r2_hex": "0x83e41"
"r2_bit": "2^19 + 2^14 - 2^9 + 2^6 + 1"
"znprimroot": 5
- "n": 9223372036854732961
"n_hex": "0x7fffffffffff58a1"
"n_bit": "2^63 - 2^15 - 2^13 - 2^11 + 2^7 + 2^5 + 1"
"n_fac": "2^5 * 3^3 * 5 * 7 * 199 * 1532691904771c + 1"
"nd": 448823271100478623
"nd_hex": "0x63a8a6318df749f"
"nd_bit": "2^59 - 2^57 + 2^54 - 2^51 + 2^49 + 2^47 + 2^43 + 2^41 + 2^39 - 2^37 + 2^34 - 2^32 + 2^29 - 2^27 + 2^24 - 2^21 - 2^15 - 2^12 + 2^10 + 2^7 + 2^5 - 1"
"r2": 1835865409
"r2_hex": "0x6d6d1541"
"r2_bit": "2^31 - 2^28 - 2^25 - 2^23 - 2^20 - 2^18 + 2^16 + 2^12 + 2^10 + 2^8 + 2^6 + 1"
"znprimroot": 23
- "n": 9223372036854773953
"n_hex": "0x7ffffffffffff8c1"
"n_bit": "2^63 - 2^11 + 2^8 - 2^6 + 1"
"n_fac": "2^6 * 3 * 7 * 11 * 37 * 16861493866369c + 1"
"nd": 8765932561172490431
"nd_hex": "0x79a6d93871b768bf"
"nd_bit": "2^63 - 2^59 + 2^57 - 2^55 + 2^53 + 2^51 - 2^48 - 2^45 - 2^43 + 2^40 + 2^38 - 2^35 + 2^31 - 2^28 + 2^25 - 2^22 - 2^19 - 2^15 - 2^13 + 2^11 + 2^8 - 2^6 - 1"
"r2": 3441025
"r2_hex": "0x348181"
"r2_bit": "2^22 - 2^20 + 2^18 + 2^15 + 2^9 - 2^7 + 1"
"znprimroot": 31
- "n": 9223372036854772801
"n_hex": "0x7ffffffffffff441"
"n_bit": "2^63 - 2^12 + 2^10 + 2^6 + 1"
"n_fac": "2^6 * 3 * 5^2 * 1921535841011411 + 1"
"nd": 82817108412064831
"nd_hex": "0x12639b8a839e43f"
"nd_bit": "2^56 + 2^53 + 2^51 - 2^49 + 2^46 - 2^43 + 2^41 - 2^38 - 2^35 + 2^31 + 2^29 + 2^27 + 2^22 - 2^19 + 2^17 - 2^13 + 2^10 + 2^6 - 1"
"r2": 9042049
"r2_hex": "0x89f881"
"r2_bit": "2^23 + 2^19 + 2^17 - 2^11 + 2^7 + 1"
"znprimroot": 17
- "n": 9223372036854771841
"n_hex": "0x7ffffffffffff081"
"n_bit": "2^63 - 2^12 + 2^7 + 1"
"n_fac": "2^7 * 3^3 * 5 * 11 * 139 * 577 * 605010191 + 1"
"nd": 9128046033953075327
"nd_hex": "0x7ead5581632fb07f"
"nd_bit": "2^63 - 2^56 - 2^54 - 2^52 - 2^49 - 2^47 - 2^45 - 2^43 - 2^41 - 2^39 + 2^33 - 2^31 - 2^29 + 2^26 - 2^24 + 2^22 - 2^20 - 2^14 - 2^12 + 2^7 - 1"
"r2": 15737089
"r2_hex": "0xf02101"
"r2_bit": "2^24 - 2^20 + 2^13 + 2^8 + 1"
"znprimroot": 14
- "n": 9223372036854771457
"n_hex": "0x7fffffffffffef01"
"n_bit": "2^63 - 2^12 - 2^8 + 1"
"n_fac": "2^8 * 3 * 12009599006321317c + 1"
"nd": 3022874861998370559
"nd_hex": "0x29f368abcddeeeff"
"nd_bit": "2^61 + 2^59 + 2^57 - 2^52 + 2^50 - 2^47 - 2^45 + 2^43 + 2^40 - 2^38 - 2^36 - 2^34 - 2^30 + 2^28 - 2^25 - 2^21 - 2^16 - 2^12 - 2^8 - 1"
"r2": 18931201
"r2_hex": "0x120de01"
"r2_bit": "2^24 + 2^21 + 2^16 - 2^13 - 2^9 + 1"
"znprimroot": 10
- "n": 9223372036854769921
"n_hex": "0x7fffffffffffe901"
"n_bit": "2^63 - 2^13 + 2^11 + 2^8 + 1"
"n_fac": "2^8 * 3 * 5 * 7 * 343131400180609c + 1"
"nd": 6743229700462536959
"nd_hex": "0x5d94c3af76eee8ff"
"nd_bit": "2^63 - 2^61 - 2^57 - 2^55 + 2^52 + 2^50 + 2^48 - 2^46 + 2^42 - 2^38 - 2^36 - 2^31 - 2^27 - 2^24 - 2^20 - 2^16 - 2^13 + 2^11 + 2^8 - 1"
"r2": 34656769
"r2_hex": "0x210d201"
"r2_bit": "2^25 + 2^20 + 2^16 - 2^14 + 2^12 + 2^9 + 1"
"znprimroot": 22
- "n": 9223372036854759169
"n_hex": "0x7fffffffffffbf01"
"n_bit": "2^63 - 2^14 - 2^8 + 1"
"n_fac": "2^8 * 3^2 * 7 * 11 * 43 * 193 * 6264562729 + 1"
"nd": 2579816903631355647
"nd_hex": "0x23cd59ce2e7ebeff"
"nd_bit": "2^61 + 2^58 - 2^54 + 2^52 - 2^49 - 2^47 - 2^45 - 2^43 + 2^41 - 2^38 + 2^36 - 2^33 + 2^30 - 2^28 - 2^25 + 2^23 - 2^16 - 2^14 - 2^8 - 1"
"r2": 276856321
"r2_hex": "0x10807e01"
"r2_bit": "2^28 + 2^23 + 2^15 - 2^9 + 1"
"znprimroot": 37
- "n": 9223372036854754561
"n_hex": "0x7fffffffffffad01"
"n_bit": "2^63 - 2^14 - 2^12 - 2^10 + 2^8 + 1"
"n_fac": "2^8 * 3^4 * 5 * 3851 * 23100491467 + 1"
"nd": 5167119939505925375
"nd_hex": "0x47b54c355a16acff"
"nd_bit": "2^62 + 2^59 - 2^54 - 2^52 + 2^50 + 2^48 + 2^46 + 2^44 - 2^42 + 2^38 - 2^35 - 2^33 - 2^31 - 2^29 - 2^27 + 2^25 + 2^21 - 2^19 - 2^16 - 2^14 - 2^12 - 2^10 + 2^8 - 1"
"r2": 451435009
"r2_hex": "0x1ae85a01"
"r2_bit": "2^29 - 2^26 - 2^24 - 2^21 + 2^19 + 2^15 - 2^13 - 2^11 + 2^9 + 1"
"znprimroot": 7
- "n": 9223372036854747649
"n_hex": "0x7fffffffffff9201"
"n_bit": "2^63 - 2^15 + 2^12 + 2^9 + 1"
"n_fac": "2^9 * 3^3 * 667199944795627 + 1"
"nd": 7688490778120393215
"nd_hex": "0x6ab301a098bb91ff"
"nd_bit": "2^63 - 2^60 - 2^58 - 2^56 - 2^54 - 2^52 + 2^50 - 2^48 + 2^41 - 2^39 + 2^37 + 2^31 + 2^29 - 2^27 + 2^24 - 2^22 - 2^18 - 2^15 + 2^12 + 2^9 - 1"
"r2": 792929281
"r2_hex": "0x2f432401"
"r2_bit": "2^30 - 2^28 - 2^24 + 2^22 + 2^18 - 2^16 + 2^13 + 2^10 + 1"
"znprimroot": 13
- "n": 9223372036854443521
"n_hex": "0x7ffffffffffaee01"
"n_bit": "2^63 - 2^18 - 2^16 - 2^12 - 2^9 + 1"
"n_fac": "2^9 * 3^4 * 5 * 13 * 3421538178439c + 1"
"nd": 7149267336069311999
"nd_hex": "0x63374cc382b6edff"
"nd_bit": "2^63 - 2^61 + 2^58 - 2^56 + 2^54 - 2^51 - 2^48 + 2^46 + 2^44 - 2^42 + 2^40 - 2^38 + 2^34 - 2^31 + 2^26 - 2^24 - 2^22 - 2^19 - 2^16 - 2^12 - 2^9 - 1"
"r2": 110414650369
"r2_hex": "0x19b539dc01"
"r2_bit": "2^37 - 2^35 + 2^33 - 2^30 - 2^28 + 2^26 + 2^24 + 2^22 - 2^19 + 2^17 - 2^13 - 2^10 + 1"
"znprimroot": 23
- "n": 9223372036854758401
"n_hex": "0x7fffffffffffbc01"
"n_bit": "2^63 - 2^14 - 2^10 + 1"
"n_fac": "2^10 * 3 * 5^2 * 120095990063213c + 1"
"nd": 5005111292016442367
"nd_hex": "0x4575ba33adefbbff"
"nd_bit": "2^62 + 2^59 - 2^57 - 2^55 - 2^51 - 2^49 - 2^46 - 2^43 + 2^41 + 2^38 - 2^36 + 2^34 - 2^30 - 2^28 - 2^25 - 2^20 - 2^14 - 2^10 - 1"
"r2": 303003649
"r2_hex": "0x120f7801"
"r2_bit": "2^28 + 2^25 + 2^20 - 2^15 - 2^11 + 1"
"znprimroot": 7
- "n": 9223372036854420481
"n_hex": "0x7ffffffffffa9401"
"n_bit": "2^63 - 2^19 + 2^17 + 2^15 + 2^12 + 2^10 + 1"
"n_fac": "2^10 * 3^2 * 5 * 7 * 79 * 361952953777c + 1"
"nd": 8199273961082229759
"nd_hex": "0x71c9ac39da6a93ff"
"nd_bit": "2^63 - 2^60 + 2^57 - 2^54 + 2^51 + 2^49 - 2^46 - 2^44 - 2^42 + 2^38 - 2^35 + 2^33 - 2^29 - 2^27 + 2^25 + 2^23 - 2^21 + 2^19 + 2^17 + 2^15 + 2^12 + 2^10 - 1"
"r2": 126257276929
"r2_hex": "0x1d65852801"
"r2_bit": "2^37 - 2^33 - 2^31 - 2^29 + 2^27 - 2^25 - 2^23 + 2^18 + 2^16 + 2^13 + 2^11 + 1"
"znprimroot": 19
- "n": 9223372036854675457
"n_hex": "0x7ffffffffffe7801"
"n_bit": "2^63 - 2^17 + 2^15 - 2^11 + 1"
"n_fac": "2^11 * 3 * 23 * 29 * 1493 * 1507484579c + 1"
"nd": 581062052366153727
"nd_hex": "0x81058dba7be77ff"
"nd_bit": "2^59 + 2^52 + 2^47 - 2^45 - 2^43 + 2^40 - 2^37 - 2^34 - 2^31 + 2^29 + 2^27 - 2^22 - 2^17 + 2^15 - 2^11 - 1"
"r2": 10070323201
"r2_hex": "0x2583cf001"
"r2_bit": "2^33 + 2^31 - 2^29 - 2^27 + 2^22 - 2^18 + 2^16 - 2^12 + 1"
"znprimroot": 5
- "n": 9223372036854577153
"n_hex": "0x7ffffffffffcf801"
"n_bit": "2^63 - 2^18 + 2^16 - 2^11 + 1"
"n_fac": "2^11 * 3^2 * 31 * 101 * 353 * 452751077 + 1"
"nd": 2435345364824160255
"nd_hex": "0x21cc15b4cfbcf7ff"
"nd_bit": "2^61 + 2^57 - 2^54 + 2^52 - 2^50 + 2^45 - 2^43 - 2^41 - 2^38 - 2^36 + 2^34 + 2^32 - 2^30 + 2^28 - 2^22 - 2^18 + 2^16 - 2^11 - 1"
"r2": 39463809025
"r2_hex": "0x93039f001"
"r2_bit": "2^35 + 2^32 + 2^30 - 2^28 + 2^22 - 2^19 + 2^17 - 2^12 + 1"
"znprimroot": 5
- "n": 9223372036851947521
"n_hex": "0x7fffffffffd4d801"
"n_bit": "2^63 - 2^22 + 2^20 + 2^18 + 2^16 - 2^13 - 2^11 + 1"
"n_fac": "2^11 * 3 * 5 * 7 * 13 * 3299340386351c + 1"
"nd": 6478438507346188287
"nd_hex": "0x59e8097f8994d7ff"
"nd_bit": "2^63 - 2^61 - 2^59 + 2^57 - 2^53 + 2^51 + 2^43 + 2^41 - 2^39 - 2^31 + 2^27 + 2^25 - 2^23 + 2^20 + 2^18 + 2^16 - 2^13 - 2^11 - 1"
"r2": 7999207354369
"r2_hex": "0x74675e9b001"
"r2_bit": "2^43 - 2^40 + 2^38 + 2^35 - 2^33 + 2^31 - 2^27 - 2^25 - 2^21 + 2^19 + 2^17 - 2^14 - 2^12 + 1"
"znprimroot": 11
- "n": 9223372036848936961
"n_hex": "0x7fffffffffa6e801"
"n_bit": "2^63 - 2^23 + 2^21 + 2^19 - 2^16 - 2^13 + 2^11 + 1"
"n_fac": "2^11 * 3^2 * 5 * 7 * 331 * 43193781493 + 1"
"nd": 820693106816378879
"nd_hex": "0xb63b0084d66e7ff"
"nd_bit": "2^60 - 2^58 - 2^55 - 2^53 + 2^50 - 2^46 - 2^44 + 2^35 + 2^30 + 2^28 - 2^25 - 2^23 - 2^21 + 2^19 - 2^16 - 2^13 + 2^11 - 1"
"r2": 34092134289409
"r2_hex": "0x1f01b18dd001"
"r2_bit": "2^45 - 2^40 + 2^33 - 2^30 - 2^28 + 2^25 - 2^23 + 2^20 - 2^17 - 2^14 + 2^12 + 1"
"znprimroot": 26
- "n": 9223372036844851201
"n_hex": "0x7fffffffff689001"
"n_bit": "2^63 - 2^23 - 2^21 + 2^19 + 2^15 + 2^12 + 1"
"n_fac": "2^12 * 3 * 5^2 * 7^2 * 373 * 2297 * 715159 + 1"
"nd": 3322121583923335167
"nd_hex": "0x2e1a8bfaae688fff"
"nd_bit": "2^62 - 2^60 - 2^57 + 2^53 - 2^51 + 2^49 + 2^47 + 2^44 - 2^42 - 2^34 - 2^32 - 2^30 - 2^28 - 2^25 + 2^23 - 2^21 + 2^19 + 2^15 + 2^12 - 1"
"r2": 98497824104449
"r2_hex": "0x59954fd12001"
"r2_bit": "2^47 - 2^45 - 2^43 + 2^41 - 2^39 + 2^36 + 2^34 + 2^32 + 2^30 + 2^28 - 2^22 + 2^20 + 2^16 + 2^13 + 1"
"znprimroot": 22
- "n": 9223372036854374401
"n_hex": "0x7ffffffffff9e001"
"n_bit": "2^63 - 2^19 + 2^17 - 2^13 + 1"
"n_fac": "2^13 * 3^3 * 5^2 * 1667999861989c + 1"
"nd": 1371969898254295039
"nd_hex": "0x130a375a7bf9dfff"
"nd_bit": "2^60 + 2^58 - 2^56 + 2^51 + 2^49 + 2^46 - 2^43 - 2^39 - 2^37 - 2^35 + 2^33 + 2^31 - 2^26 - 2^19 + 2^17 - 2^13 - 1"
"r2": 161127579649
"r2_hex": "0x2583f3c001"
"r2_bit": "2^37 + 2^35 - 2^33 - 2^31 + 2^26 - 2^20 + 2^18 - 2^14 + 1"
"znprimroot": 11
- "n": 9223372036854497281
"n_hex": "0x7ffffffffffbc001"
"n_bit": "2^63 - 2^18 - 2^14 + 1"
"n_fac": "2^14 * 3 * 5 * 11^2 * 29 * 109 * 1223 * 80231 + 1"
"nd": 4518020744302280703
"nd_hex": "0x3eb33bedeffbbfff"
"nd_bit": "2^62 - 2^56 - 2^54 - 2^52 + 2^50 - 2^48 + 2^46 - 2^42 - 2^36 - 2^33 - 2^28 - 2^18 - 2^14 - 1"
"r2": 77577289729
"r2_hex": "0x120ff78001"
"r2_bit": "2^36 + 2^33 + 2^28 - 2^19 - 2^15 + 1"
"znprimroot": 13
- "n": 9223372036854005761
"n_hex": "0x7ffffffffff44001"
"n_bit": "2^63 - 2^20 + 2^18 + 2^14 + 1"
"n_fac": "2^14 * 3^2 * 5 * 31 * 403548353707c + 1"
"nd": 4083009448492417023
"nd_hex": "0x38a9c375eff43fff"
"nd_bit": "2^62 - 2^59 + 2^55 + 2^53 + 2^51 + 2^49 - 2^46 + 2^42 - 2^39 - 2^35 - 2^33 - 2^28 - 2^20 + 2^18 + 2^14 - 1"
"r2": 592972382209
"r2_hex": "0x8a0fe88001"
"r2_bit": "2^39 + 2^35 + 2^33 + 2^28 - 2^21 + 2^19 + 2^15 + 1"
"znprimroot": 7
- "n": 9223372036851793921
"n_hex": "0x7fffffffffd28001"
"n_bit": "2^63 - 2^22 + 2^20 + 2^17 + 2^15 + 1"
"n_fac": "2^15 * 3^2 * 5 * 11 * 568636316587 + 1"
"nd": 3263254945234943
"nd_hex": "0xb97e9bfd27fff"
"nd_bit": "2^52 - 2^50 - 2^47 + 2^45 - 2^43 - 2^37 + 2^35 + 2^33 - 2^30 - 2^22 + 2^20 + 2^17 + 2^15 - 1"
"r2": 8891650080769
"r2_hex": "0x8163fa50001"
"r2_bit": "2^43 + 2^37 - 2^35 - 2^33 + 2^30 - 2^23 + 2^21 + 2^18 + 2^16 + 1"
"znprimroot": 23
- "n": 9223372036853661697
"n_hex": "0x7fffffffffef0001"
"n_bit": "2^63 - 2^20 - 2^16 + 1"
"n_fac": "2^16 * 3 * 61 * 769057313417 + 1"
"nd": 7840484235028660223
"nd_hex": "0x6ccefedeffeeffff"
"nd_bit": "2^63 - 2^60 - 2^58 + 2^56 - 2^54 + 2^52 - 2^48 - 2^40 - 2^37 - 2^32 - 2^20 - 2^16 - 1"
"r2": 1241243320321
"r2_hex": "0x120ffde0001"
"r2_bit": "2^40 + 2^37 + 2^32 - 2^21 - 2^17 + 1"
"znprimroot": 5
- "n": 9223372036849729537
"n_hex": "0x7fffffffffb30001"
"n_bit": "2^63 - 2^22 - 2^20 + 2^18 - 2^16 + 1"
"n_fac": "2^16 * 3^3 * 17 * 23 * 73 * 182619191 + 1"
"nd": 624567508454801407
"nd_hex": "0x8aae8d6ffb2ffff"
"nd_bit": "2^59 + 2^56 - 2^54 - 2^52 - 2^50 - 2^48 - 2^45 + 2^43 + 2^40 - 2^37 - 2^35 - 2^32 - 2^22 - 2^20 + 2^18 - 2^16 - 1"
"r2": 25464851005441
"r2_hex": "0x1728ff660001"
"r2_bit": "2^45 - 2^43 - 2^40 + 2^37 + 2^35 + 2^32 - 2^23 - 2^21 + 2^19 - 2^17 + 1"
"znprimroot": 5
- "n": 9223372036844421121
"n_hex": "0x7fffffffff620001"
"n_bit": "2^63 - 2^23 - 2^21 + 2^17 + 1"
"n_fac": "2^17 * 3^3 * 5 * 7 * 1021 * 72932693 + 1"
"nd": 5802780900292952063
"nd_hex": "0x50879e7bff61ffff"
"nd_bit": "2^62 + 2^60 + 2^55 + 2^51 - 2^47 + 2^45 - 2^41 + 2^39 - 2^34 - 2^23 - 2^21 + 2^17 - 1"
"r2": 107219542867969
"r2_hex": "0x6183fec40001"
"r2_bit": "2^47 - 2^45 + 2^41 - 2^39 + 2^34 - 2^24 - 2^22 + 2^18 + 1"
"znprimroot": 11
- "n": 9223372036795269121
"n_hex": "0x7ffffffffc740001"
"n_bit": "2^63 - 2^26 + 2^23 - 2^20 + 2^18 + 1"
"n_fac": "2^18 * 3 * 5 * 19 * 123453937153 + 1"
"nd": 1239452451178020863
"nd_hex": "0x11336b6ffc73ffff"
"nd_bit": "2^60 + 2^56 + 2^54 - 2^52 + 2^50 - 2^47 - 2^44 - 2^42 - 2^39 - 2^36 - 2^26 + 2^23 - 2^20 + 2^18 - 1"
"r2": 3541045797715969
"r2_hex": "0xc948ff8e80001"
"r2_bit": "2^52 - 2^50 + 2^47 + 2^44 + 2^42 + 2^39 + 2^36 - 2^27 + 2^24 - 2^21 + 2^19 + 1"
"znprimroot": 17
- "n": 9223372036791336961
"n_hex": "0x7ffffffffc380001"
"n_bit": "2^63 - 2^26 + 2^22 - 2^19 + 1"
"n_fac": "2^19 * 3^3 * 5 * 107 * 1217873731c + 1"
"nd": 3310624838245679103
"nd_hex": "0x2df1b3bffc37ffff"
"nd_bit": "2^62 - 2^60 - 2^57 - 2^52 + 2^49 - 2^46 - 2^44 + 2^42 - 2^38 - 2^26 + 2^22 - 2^19 - 1"
"r2": 4024487308689409
"r2_hex": "0xe4c3ff8700001"
"r2_bit": "2^52 - 2^49 + 2^46 + 2^44 - 2^42 + 2^38 - 2^27 + 2^23 - 2^20 + 1"
"znprimroot": 14
- "n": 9223372036225105921
"n_hex": "0x7fffffffda780001"
"n_bit": "2^63 - 2^29 - 2^27 + 2^25 + 2^23 - 2^19 + 1"
"n_fac": "2^19 * 3^4 * 5 * 7 * 823 * 7539923 + 1"
"nd": 6376929671081623551
"nd_hex": "0x587f67bfda77ffff"
"nd_bit": "2^63 - 2^61 - 2^59 + 2^55 - 2^47 - 2^45 + 2^43 - 2^38 - 2^29 - 2^27 + 2^25 + 2^23 - 2^19 - 1"
"r2": 396484166594592769
"r2_hex": "0x580983fb4f00001"
"r2_bit": "2^59 - 2^57 - 2^55 + 2^47 + 2^45 - 2^43 + 2^38 - 2^30 - 2^28 + 2^26 + 2^24 - 2^20 + 1"
"znprimroot": 11
- "n": 9223372036836950017
"n_hex": "0x7ffffffffef00001"
"n_bit": "2^63 - 2^24 - 2^20 + 1"
"n_fac": "2^20 * 3 * 37 * 131 * 604916651 + 1"
"nd": 8070132773369675775
"nd_hex": "0x6ffedefffeefffff"
"nd_bit": "2^63 - 2^60 - 2^48 - 2^45 - 2^40 - 2^24 - 2^20 - 1"
"r2": 317758824775681
"r2_hex": "0x120fffde00001"
"r2_bit": "2^48 + 2^45 + 2^40 - 2^25 - 2^21 + 1"
"znprimroot": 10
- "n": 9223372035729653761
"n_hex": "0x7fffffffbcf00001"
"n_bit": "2^63 - 2^30 - 2^26 + 2^24 - 2^20 + 1"
"n_fac": "2^20 * 3^3 * 5 * 7 * 9308034943 + 1"
"nd": 6804550908227092479
"nd_hex": "0x5e6e9effbcefffff"
"nd_bit": "2^63 - 2^61 - 2^57 + 2^55 - 2^52 - 2^49 + 2^47 + 2^45 - 2^40 - 2^30 - 2^26 + 2^24 - 2^20 - 1"
"r2": 1265899620645470209
"r2_hex": "0x119160ff79e00001"
"r2_bit": "2^60 + 2^57 - 2^55 + 2^52 + 2^49 - 2^47 - 2^45 + 2^40 - 2^31 - 2^27 + 2^25 - 2^21 + 1"
"znprimroot": 19
- "n": 9223372036752015361
"n_hex": "0x7ffffffff9e00001"
"n_bit": "2^63 - 2^27 + 2^25 - 2^21 + 1"
"n_fac": "2^21 * 3 * 5 * 293203100737c + 1"
"nd": 9212812327078854655
"nd_hex": "0x7fda7bfff9dfffff"
"nd_bit": "2^63 - 2^53 - 2^51 + 2^49 + 2^47 - 2^42 - 2^27 + 2^25 - 2^21 - 1"
"r2": 10559709467639809
"r2_hex": "0x2583fff3c00001"
"r2_bit": "2^53 + 2^51 - 2^49 - 2^47 + 2^42 - 2^28 + 2^26 - 2^22 + 1"
"znprimroot": 11
- "n": 9223372036663934977
"n_hex": "0x7ffffffff4a00001"
"n_bit": "2^63 - 2^28 + 2^26 + 2^23 + 2^21 + 1"
"n_fac": "2^21 * 3^3 * 67 * 2431203157 + 1"
"nd": 9186951813505482751
"nd_hex": "0x7f7e9bfff49fffff"
"nd_bit": "2^63 - 2^55 - 2^49 + 2^47 + 2^45 - 2^42 - 2^28 + 2^26 + 2^23 + 2^21 - 1"
"r2": 36420222776770561
"r2_hex": "0x8163ffe9400001"
"r2_bit": "2^55 + 2^49 - 2^47 - 2^45 + 2^42 - 2^29 + 2^27 + 2^24 + 2^22 + 1"
"znprimroot": 5
- "n": 9223372036343070721
"n_hex": "0x7fffffffe1800001"
"n_bit": "2^63 - 2^29 + 2^25 - 2^23 + 1"
"n_fac": "2^23 * 3^2 * 5 * 24433591727c + 1"
"nd": 8961529939257982975
"nd_hex": "0x7c5dbfffe17fffff"
"nd_bit": "2^63 - 2^58 + 2^55 - 2^53 - 2^49 - 2^46 - 2^29 + 2^25 - 2^23 - 1"
"r2": 261842096061677569
"r2_hex": "0x3a23fffc3000001"
"r2_bit": "2^58 - 2^55 + 2^53 + 2^49 + 2^46 - 2^30 + 2^26 - 2^24 + 1"
"znprimroot": 17
- "n": 9223372034078146561
"n_hex": "0x7fffffff5a800001"
"n_bit": "2^63 - 2^31 - 2^29 - 2^27 + 2^25 + 2^23 + 1"
"n_fac": "2^23 * 3^2 * 5 * 7^2 * 11 * 45331339 + 1"
"nd": 1513702053229101055
"nd_hex": "0x1501bfff5a7fffff"
"nd_bit": "2^60 + 2^58 + 2^56 + 2^49 - 2^46 - 2^31 - 2^29 - 2^27 + 2^25 + 2^23 - 1"
"r2": 7709669975295787009
"r2_hex": "0x6afe3ffeb5000001"
"r2_bit": "2^63 - 2^60 - 2^58 - 2^56 - 2^49 + 2^46 - 2^32 - 2^30 - 2^28 + 2^26 + 2^24 + 1"
"znprimroot": 13
- "n": 9223372036737335297
"n_hex": "0x7ffffffff9000001"
"n_bit": "2^63 - 2^27 + 2^24 + 1"
"n_fac": "2^24 * 549755813881 + 1"
"nd": 9209579762878513151
"nd_hex": "0x7fcefffff8ffffff"
"nd_bit": "2^63 - 2^54 + 2^52 - 2^48 - 2^27 + 2^24 - 1"
"r2": 13792273623941121
"r2_hex": "0x30fffff2000001"
"r2_bit": "2^54 - 2^52 + 2^48 - 2^28 + 2^25 + 1"
"znprimroot": 3
- "n": 9223372036166909953
"n_hex": "0x7fffffffd7000001"
"n_bit": "2^63 - 2^29 - 2^27 - 2^24 + 1"
"n_fac": "2^24 * 3 * 23^2 * 4987 * 69463 + 1"
"nd": 8750212600316297215
"nd_hex": "0x796effffd6ffffff"
"nd_bit": "2^63 - 2^59 + 2^57 - 2^55 - 2^52 - 2^48 - 2^29 - 2^27 - 2^24 - 1"
"r2": 473159434474881025
"r2_hex": "0x690ffffae000001"
"r2_bit": "2^59 - 2^57 + 2^55 + 2^52 + 2^48 - 2^30 - 2^28 - 2^25 + 1"
"znprimroot": 5
- "n": 9223372032039714817
"n_hex": "0x7ffffffee1000001"
"n_bit": "2^63 - 2^32 - 2^29 + 2^24 + 1"
"n_fac": "2^24 * 3^2 * 653 * 4583 * 20411 + 1"
"nd": 4485303749069242367
"nd_hex": "0x3e3efffee0ffffff"
"nd_bit": "2^62 - 2^57 + 2^54 - 2^48 - 2^32 - 2^29 + 2^24 - 1"
"r2": 4738068282970472447
"r2_hex": "0x41c0ffffffffffff"
"r2_bit": "2^62 + 2^57 - 2^54 + 2^48 - 1"
"znprimroot": 5
- "n": 9223372027912519681
"n_hex": "0x7ffffffdeb000001"
"n_bit": "2^63 - 2^33 - 2^28 - 2^26 - 2^24 + 1"
"n_fac": "2^24 * 3 * 5 * 7^2 * 3461 * 216113 + 1"
"nd": 3046403663997173759
"nd_hex": "0x2a46fffdeaffffff"
"nd_bit": "2^61 + 2^59 + 2^57 + 2^54 + 2^51 - 2^48 - 2^33 - 2^28 - 2^26 - 2^24 - 1"
"r2": 6176968417568882681
"r2_hex": "0x55b9000c7dfffff9"
"r2_bit": "2^63 - 2^61 - 2^59 - 2^57 - 2^54 - 2^51 + 2^48 + 2^36 - 2^34 + 2^31 - 2^25 - 2^3 + 1"
"znprimroot": 31
- "n": 9223371904599982081
"n_hex": "0x7fffffe135000001"
"n_bit": "2^63 - 2^37 + 2^32 + 2^30 - 2^28 + 2^26 + 2^24 + 1"
"n_fac": "2^24 * 3^2 * 5 * 7^2 * 249322361 + 1"
"nd": 5406289745426776063
"nd_hex": "0x4b06ffe134ffffff"
"nd_bit": "2^62 + 2^60 - 2^58 - 2^56 + 2^51 - 2^48 - 2^37 + 2^32 + 2^30 - 2^28 + 2^26 + 2^24 - 1"
"r2": 3817332649752524953
"r2_hex": "0x34f9e3d1e1fff899"
"r2_bit": "2^62 - 2^60 + 2^58 + 2^56 - 2^51 + 2^49 - 2^45 + 2^42 - 2^38 + 2^36 + 2^33 - 2^29 + 2^25 - 2^11 + 2^7 + 2^5 - 2^3 + 1"
"znprimroot": 11
- "n": 9223372036083023873
"n_hex": "0x7fffffffd2000001"
"n_bit": "2^63 - 2^30 + 2^28 + 2^25 + 1"
"n_fac": "2^25 * 19 * 6599 * 2192341 + 1"
"nd": 8627770985363275775
"nd_hex": "0x77bbffffd1ffffff"
"nd_bit": "2^63 - 2^59 - 2^54 - 2^50 - 2^30 + 2^28 + 2^25 - 1"
"r2": 595601049176244225
"r2_hex": "0x843ffffa4000001"
"r2_bit": "2^59 + 2^54 + 2^50 - 2^31 + 2^29 + 2^26 + 1"
"znprimroot": 3
- "n": 9223372036015915009
"n_hex": "0x7fffffffce000001"
"n_bit": "2^63 - 2^30 + 2^28 - 2^25 + 1"
"n_fac": "2^25 * 3 * 7 * 11^2 * 619 * 174761 + 1"
"nd": 8519684594239275007
"nd_hex": "0x763bffffcdffffff"
"nd_bit": "2^63 - 2^59 - 2^57 + 2^54 - 2^50 - 2^30 + 2^28 - 2^25 - 1"
"r2": 703687440098918401
"r2_hex": "0x9c3ffff9c000001"
"r2_bit": "2^59 + 2^57 - 2^54 + 2^50 - 2^31 + 2^29 - 2^26 + 1"
"znprimroot": 13
- "n": 9223372031284740097
"n_hex": "0x7ffffffeb4000001"
"n_bit": "2^63 - 2^32 - 2^30 - 2^28 + 2^26 + 1"
"n_fac": "2^26 * 3^3 * 17 * 299431271 + 1"
"nd": 5868190308893720575
"nd_hex": "0x516ffffeb3ffffff"
"nd_bit": "2^62 + 2^60 + 2^57 - 2^55 - 2^52 - 2^32 - 2^30 - 2^28 + 2^26 - 1"
"r2": 3355181727961055230
"r2_hex": "0x2e9000014bfffffe"
"r2_bit": "2^62 - 2^60 - 2^57 + 2^55 + 2^52 + 2^32 + 2^30 + 2^28 - 2^26 - 2"
"znprimroot": 5
- "n": 9223371987395543041
"n_hex": "0x7ffffff47c000001"
"n_bit": "2^63 - 2^36 + 2^34 + 2^31 - 2^26 + 1"
"n_fac": "2^26 * 3 * 5 * 7 * 1308942407 + 1"
"nd": 7201255754706190335
"nd_hex": "0x63effff47bffffff"
"nd_bit": "2^63 - 2^61 + 2^58 - 2^52 - 2^36 + 2^34 + 2^31 - 2^26 - 1"
"r2": 2022129240467570424
"r2_hex": "0x1c100bd49bfffef8"
"r2_bit": "2^61 - 2^58 + 2^52 + 2^44 - 2^42 - 2^38 + 2^36 + 2^34 + 2^31 + 2^29 - 2^26 - 2^8 - 2^3"
"znprimroot": 17
- "n": 9223371888745512961
"n_hex": "0x7fffffdd84000001"
"n_bit": "2^63 - 2^37 - 2^33 - 2^31 + 2^26 + 1"
"n_fac": "2^26 * 3^2 * 5 * 7 * 11 * 113 * 173 * 2029 + 1"
"nd": 6048334151449313279
"nd_hex": "0x53efffdd83ffffff"
"nd_bit": "2^62 + 2^60 + 2^58 - 2^52 - 2^37 - 2^33 - 2^31 + 2^26 - 1"
"r2": 3175389644904724151
"r2_hex": "0x2c11400edffff6b7"
"r2_bit": "2^62 - 2^60 - 2^58 + 2^52 + 2^48 + 2^46 + 2^36 - 2^32 - 2^29 - 2^11 - 2^8 - 2^6 - 2^3 - 1"
"znprimroot": 13
- "n": 9223372035915251713
"n_hex": "0x7fffffffc8000001"
"n_bit": "2^63 - 2^30 + 2^27 + 1"
"n_fac": "2^27 * 3 * 22906492243 + 1"
"nd": 8340666508950634495
"nd_hex": "0x73bfffffc7ffffff"
"nd_bit": "2^63 - 2^60 + 2^58 - 2^54 - 2^30 + 2^27 - 1"
"r2": 882705525085569025
"r2_hex": "0xc3fffff90000001"
"r2_bit": "2^60 - 2^58 + 2^54 - 2^31 + 2^28 + 1"
"znprimroot": 10
- "n": 9223371980349112321
"n_hex": "0x7ffffff2d8000001"
"n_bit": "2^63 - 2^36 + 2^34 - 2^32 - 2^29 - 2^27 + 1"
"n_fac": "2^27 * 3 * 5 * 7 * 181 * 3615863 + 1"
"nd": 7620090513005215743
"nd_hex": "0x69bffff2d7ffffff"
"nd_bit": "2^63 - 2^61 + 2^59 + 2^57 - 2^54 - 2^36 + 2^34 - 2^32 - 2^29 - 2^27 - 1"
"r2": 1603300905292136103
"r2_hex": "0x164011adbffffea7"
"r2_bit": "2^61 - 2^59 - 2^57 + 2^54 + 2^44 + 2^41 - 2^38 - 2^36 - 2^33 - 2^30 - 2^9 + 2^7 + 2^5 + 2^3 - 1"
"znprimroot": 11
- "n": 9223371106591703041
"n_hex": "0x7fffff2768000001"
"n_bit": "2^63 - 2^40 + 2^37 + 2^35 - 2^31 - 2^29 + 2^27 + 1"
"n_fac": "2^27 * 3^2 * 5 * 7 * 23 * 9485089 + 1"
"nd": 2720173244668706815
"nd_hex": "0x25bfff2767ffffff"
"nd_bit": "2^61 + 2^59 - 2^57 - 2^54 - 2^40 + 2^37 + 2^35 - 2^31 - 2^29 + 2^27 - 1"
"r2": 6590477934199214464
"r2_hex": "0x5b7614c367fe9180"
"r2_bit": "2^63 - 2^61 - 2^58 - 2^55 - 2^51 - 2^49 + 2^44 + 2^42 + 2^40 - 2^38 + 2^34 - 2^31 - 2^29 + 2^27 - 2^17 + 2^15 + 2^12 + 2^9 - 2^7"
"znprimroot": 11
- "n": 9223372032291373057
"n_hex": "0x7ffffffef0000001"
"n_bit": "2^63 - 2^32 - 2^28 + 1"
"n_fac": "2^28 * 3 * 11453246117 + 1"
"nd": 6845471429039751167
"nd_hex": "0x5efffffeefffffff"
"nd_bit": "2^63 - 2^61 - 2^56 - 2^32 - 2^28 - 1"
"r2": 2377900603251621887
"r2_hex": "0x20ffffffffffffff"
"r2_bit": "2^61 + 2^56 - 1"
"znprimroot": 5
- "n": 9223372030680760321
"n_hex": "0x7ffffffe90000001"
"n_bit": "2^63 - 2^33 + 2^31 + 2^28 + 1"
"n_fac": "2^28 * 3^2 * 5 * 6367 * 119923 + 1"
"nd": 7998392932035985407
"nd_hex": "0x6efffffe8fffffff"
"nd_bit": "2^63 - 2^60 - 2^56 - 2^33 + 2^31 + 2^28 - 1"
"r2": 1224979110992805885
"r2_hex": "0x11000002dffffffd"
"r2_bit": "2^60 + 2^56 + 2^34 - 2^32 - 2^29 - 2^2 + 1"
"znprimroot": 7
- "n": 9223370895198781441
"n_hex": "0x7ffffef630000001"
"n_bit": "2^63 - 2^40 - 2^35 - 2^33 + 2^30 - 2^28 + 1"
"n_fac": "2^28 * 3^3 * 5 * 7 * 36359507 + 1"
"nd": 3963166530430042111
"nd_hex": "0x36fffef62fffffff"
"nd_bit": "2^62 - 2^59 - 2^56 - 2^40 - 2^35 - 2^33 + 2^30 - 2^28 - 1"
"r2": 5421531773332740097
"r2_hex": "0x4b3d266c5ffdd801"
"r2_bit": "2^62 + 2^60 - 2^58 - 2^56 + 2^54 - 2^50 + 2^48 + 2^45 + 2^43 - 2^41 + 2^39 - 2^36 - 2^34 + 2^31 - 2^29 - 2^17 - 2^13 - 2^11 + 1"
"znprimroot": 22
- "n": 9223372034170421249
"n_hex": "0x7fffffff60000001"
"n_bit": "2^63 - 2^31 - 2^29 + 1"
"n_fac": "2^29 * 11 * 19 * 82200331 + 1"
"nd": 2017612630377627647
"nd_hex": "0x1bffffff5fffffff"
"nd_bit": "2^61 - 2^58 - 2^31 - 2^29 - 1"
"r2": 7205759398424084481
"r2_hex": "0x63fffffec0000001"
"r2_bit": "2^63 - 2^61 + 2^58 - 2^32 - 2^30 + 1"
"znprimroot": 3
- "n": 9223372020211777537
"n_hex": "0x7ffffffc20000001"
"n_bit": "2^63 - 2^34 + 2^29 + 1"
"n_fac": "2^29 * 3 * 5726623051c + 1"
"nd": 8935141644060065791
"nd_hex": "0x7bfffffc1fffffff"
"nd_bit": "2^63 - 2^58 - 2^34 + 2^29 - 1"
"r2": 288230842155663331
"r2_hex": "0x400006c7fffffe3"
"r2_bit": "2^58 + 2^39 - 2^36 - 2^34 + 2^31 - 2^5 + 2^2 - 1"
"znprimroot": 5
- "n": 9223371975114620929
"n_hex": "0x7ffffff1a0000001"
"n_bit": "2^63 - 2^36 + 2^33 - 2^31 + 2^29 + 1"
"n_fac": "2^29 * 3^4 * 11^2 * 53 * 33073 + 1"
"nd": 6629298589749215231
"nd_hex": "0x5bfffff19fffffff"
"nd_bit": "2^63 - 2^61 - 2^58 - 2^36 + 2^33 - 2^31 + 2^29 - 1"
"r2": 2594098760569060964
"r2_hex": "0x240017141ffffe64"
"r2_bit": "2^61 + 2^58 + 2^45 - 2^43 - 2^40 + 2^36 + 2^34 + 2^29 - 2^9 + 2^7 - 2^5 + 2^2"
"znprimroot": 13
- "n": 9223369288612577281
"n_hex": "0x7ffffd8020000001"
"n_bit": "2^63 - 2^41 - 2^39 + 2^29 + 1"
"n_fac": "2^29 * 3^2 * 5 * 7 * 13 * 4195327 + 1"
"nd": 8935138912460865535
"nd_hex": "0x7bfffd801fffffff"
"nd_bit": "2^63 - 2^58 - 2^41 - 2^39 + 2^29 - 1"
"r2": 2538705451197104449
"r2_hex": "0x233b4b283ff38141"
"r2_bit": "2^61 + 2^58 - 2^56 + 2^54 - 2^50 - 2^48 + 2^46 + 2^44 - 2^42 - 2^40 + 2^37 + 2^35 + 2^30 - 2^20 + 2^18 - 2^15 + 2^8 + 2^6 + 1"
"znprimroot": 17
- "n": 9223371941291753473
"n_hex": "0x7fffffe9c0000001"
"n_bit": "2^63 - 2^37 + 2^35 + 2^33 - 2^30 + 1"
"n_fac": "2^30 * 3^2 * 71 * 419 * 32083 + 1"
"nd": 8070450436684906495
"nd_hex": "0x6fffffe9bfffffff"
"nd_bit": "2^63 - 2^60 - 2^37 + 2^35 + 2^33 - 2^30 - 1"
"r2": 1153015920872913955
"r2_hex": "0x100055defffffc23"
"r2_bit": "2^60 + 2^47 - 2^45 - 2^43 - 2^41 - 2^37 - 2^32 - 2^10 + 2^5 + 2^2 - 1"
"znprimroot": 10
- "n": 9223371777009254401
"n_hex": "0x7fffffc380000001"
"n_bit": "2^63 - 2^38 + 2^34 - 2^31 + 1"
"n_fac": "2^31 * 3^2 * 5^2 * 2621 * 7283 + 1"
"nd": 4611685758581866495
"nd_hex": "0x3fffffc37fffffff"
"nd_bit": "2^62 - 2^38 + 2^34 - 2^31 - 1"
"r2": 4613587567953044329
"r2_hex": "0x4006c172ffffe369"
"r2_bit": "2^62 + 2^51 - 2^48 - 2^46 + 2^41 - 2^39 - 2^36 + 2^34 - 2^32 - 2^13 + 2^10 - 2^7 - 2^5 + 2^3 + 1"
"znprimroot": 7
- "n": 9223372006790004737
"n_hex": "0x7ffffff900000001"
"n_bit": "2^63 - 2^35 + 2^32 + 1"
"n_fac": "2^32 * 2699 * 795659 + 1"
"nd": 9223372006790004735
"nd_hex": "0x7ffffff8ffffffff"
"nd_bit": "2^63 - 2^35 + 2^32 - 1"
"r2": 2886218022815
"r2_hex": "0x29fffffff9f"
"r2_bit": "2^41 + 2^39 + 2^37 - 2^7 + 2^5 - 1"
"znprimroot": 3
- "n": 9223371938070528001
"n_hex": "0x7fffffe900000001"
"n_bit": "2^63 - 2^37 + 2^35 + 2^32 + 1"
"n_fac": "2^32 * 3 * 5^3 * 7 * 199 * 4111 + 1"
"nd": 9223371938070527999
"nd_hex": "0x7fffffe8ffffffff"
"nd_bit": "2^63 - 2^37 + 2^35 + 2^32 - 1"
"r2": 104316165684191
"r2_hex": "0x5edffffffbdf"
"r2_bit": "2^47 - 2^45 - 2^40 - 2^37 - 2^10 - 2^5 - 1"
"znprimroot": 19
- "n": 9223367428354867201
"n_hex": "0x7ffffbcf00000001"
"n_bit": "2^63 - 2^42 - 2^38 + 2^36 - 2^32 + 1"
"n_fac": "2^32 * 3^2 * 5^2 * 7^2 * 109 * 1787 + 1"
"nd": 9223367428354867199
"nd_hex": "0x7ffffbceffffffff"
"nd_bit": "2^63 - 2^42 - 2^38 + 2^36 - 2^32 - 1"
"r2": 1388422537198492990
"r2_hex": "0x1344aaf0ffdcdd3e"
"r2_bit": "2^60 + 2^58 - 2^56 + 2^54 + 2^50 + 2^48 - 2^46 - 2^44 - 2^42 - 2^40 - 2^36 + 2^32 - 2^21 - 2^18 + 2^16 - 2^13 - 2^10 + 2^8 + 2^6 - 2"
"znprimroot": 13
- "n": 9223371564408373249
"n_hex": "0x7fffff9200000001"
"n_bit": "2^63 - 2^39 + 2^36 + 2^33 + 1"
"n_fac": "2^33 * 3^2 * 119304641 + 1"
"nd": 9223371564408373247
"nd_hex": "0x7fffff91ffffffff"
"nd_bit": "2^63 - 2^39 + 2^36 + 2^33 - 1"
"r2": 11432258049122681
"r2_hex": "0x289d93ffffa179"
"r2_bit": "2^53 + 2^51 + 2^47 + 2^45 - 2^41 - 2^39 + 2^36 + 2^34 - 2^15 + 2^13 + 2^9 - 2^7 - 2^3 + 1"
"znprimroot": 13
- "n": 9223361565724508161
"n_hex": "0x7ffff67a00000001"
"n_bit": "2^63 - 2^43 - 2^41 + 2^39 - 2^35 + 2^33 + 1"
"n_fac": "2^33 * 3 * 5 * 7 * 61 * 167641 + 1"
"nd": 9223361565724508159
"nd_hex": "0x7ffff679ffffffff"
"nd_bit": "2^63 - 2^43 - 2^41 + 2^39 - 2^35 + 2^33 - 1"
"r2": 4573808332464888748
"r2_hex": "0x3f796e71ff4a9bac"
"r2_bit": "2^62 - 2^55 - 2^51 + 2^49 - 2^47 - 2^44 - 2^41 + 2^39 - 2^36 + 2^33 - 2^24 + 2^22 + 2^19 + 2^17 + 2^15 + 2^13 - 2^10 - 2^6 - 2^4 - 2^2"
"znprimroot": 13
- "n": 9223371229400924161
"n_hex": "0x7fffff4400000001"
"n_bit": "2^63 - 2^40 + 2^38 + 2^34 + 1"
"n_fac": "2^34 * 3 * 5 * 31 * 1154561 + 1"
"nd": 9223371229400924159
"nd_hex": "0x7fffff43ffffffff"
"nd_bit": "2^63 - 2^40 + 2^38 + 2^34 - 1"
"r2": 57075682957519841
"r2_hex": "0xcac607fffeebe1"
"r2_bit": "2^56 - 2^54 + 2^52 - 2^50 - 2^48 - 2^46 + 2^43 - 2^41 + 2^35 - 2^16 - 2^12 - 2^10 - 2^5 + 1"
"znprimroot": 7
- "n": 9223370714004848641
"n_hex": "0x7ffffecc00000001"
"n_bit": "2^63 - 2^40 - 2^38 + 2^36 - 2^34 + 1"
"n_fac": "2^34 * 3^5 * 5 * 73 * 6053 + 1"
"nd": 9223370714004848639
"nd_hex": "0x7ffffecbffffffff"
"nd_bit": "2^63 - 2^40 - 2^38 + 2^36 - 2^34 - 1"
"r2": 250979025281686241
"r2_hex": "0x37ba817fffd1ae1"
"r2_bit": "2^58 - 2^55 - 2^50 - 2^47 + 2^45 + 2^43 + 2^37 - 2^35 - 2^18 + 2^16 + 2^13 - 2^10 - 2^8 - 2^5 + 1"
"znprimroot": 13
- "n": 9223360663781376001
"n_hex": "0x7ffff5a800000001"
"n_bit": "2^63 - 2^43 - 2^41 - 2^39 + 2^37 + 2^35 + 1"
"n_fac": "2^35 * 3^2 * 5^3 * 7 * 89 * 383 + 1"
"nd": 9223360663781375999
"nd_hex": "0x7ffff5a7ffffffff"
"nd_bit": "2^63 - 2^43 - 2^41 - 2^39 + 2^37 + 2^35 - 1"
"r2": 2696643698370413424
"r2_hex": "0x256c6727ff2a0370"
"r2_bit": "2^61 + 2^59 - 2^57 - 2^55 - 2^52 - 2^50 + 2^47 - 2^45 + 2^43 - 2^40 + 2^37 + 2^35 - 2^24 + 2^21 + 2^19 + 2^17 + 2^10 - 2^7 - 2^4"
"znprimroot": 11
- "n": 9223371280940531713
"n_hex": "0x7fffff5000000001"
"n_bit": "2^63 - 2^40 + 2^38 + 2^36 + 1"
"n_fac": "2^36 * 3 * 4889 * 9151 + 1"
"nd": 9223371280940531711
"nd_hex": "0x7fffff4fffffffff"
"nd_bit": "2^63 - 2^40 + 2^38 + 2^36 - 1"
"r2": 46828887421685249
"r2_hex": "0xa65e9fffff0e01"
"r2_bit": "2^55 + 2^53 + 2^51 - 2^49 + 2^47 - 2^45 - 2^41 + 2^39 + 2^37 - 2^16 + 2^12 - 2^9 + 1"
"znprimroot": 5
- "n": 9223320978283560961
"n_hex": "0x7fffd19000000001"
"n_bit": "2^63 - 2^46 + 2^44 + 2^41 - 2^39 + 2^36 + 1"
"n_fac": "2^36 * 3 * 5 * 7 * 41 * 31177 + 1"
"nd": 9223320978283560959
"nd_hex": "0x7fffd18fffffffff"
"nd_bit": "2^63 - 2^46 + 2^44 + 2^41 - 2^39 + 2^36 - 1"
"r2": 6384476306924836837
"r2_hex": "0x589a375fef2717e5"
"r2_bit": "2^63 - 2^61 - 2^59 + 2^55 + 2^53 - 2^51 + 2^49 + 2^46 - 2^43 - 2^39 - 2^37 - 2^28 - 2^24 + 2^21 + 2^19 - 2^16 + 2^13 - 2^11 - 2^5 + 2^2 + 1"
"znprimroot": 11
- "n": 9222873614490009601
"n_hex": "0x7ffe3ab000000001"
"n_bit": "2^63 - 2^49 + 2^46 - 2^42 - 2^40 - 2^38 - 2^36 + 1"
"n_fac": "2^36 * 3^2 * 5^2 * 7 * 85213 + 1"
"nd": 9222873614490009599
"nd_hex": "0x7ffe3aafffffffff"
"nd_bit": "2^63 - 2^49 + 2^46 - 2^42 - 2^40 - 2^38 - 2^36 - 1"
"r2": 6240576665194420260
"r2_hex": "0x569afb69ba815824"
"r2_bit": "2^63 - 2^61 - 2^59 - 2^57 + 2^55 + 2^53 - 2^50 - 2^48 - 2^42 - 2^39 - 2^37 + 2^35 + 2^33 - 2^30 - 2^27 + 2^25 + 2^23 + 2^17 - 2^15 - 2^13 - 2^11 + 2^5 + 2^2"
"znprimroot": 33
- "n": 9223365302346055681
"n_hex": "0x7ffff9e000000001"
"n_bit": "2^63 - 2^43 + 2^41 - 2^37 + 1"
"n_fac": "2^37 * 3^2 * 5 * 911 * 1637 + 1"
"nd": 9223365302346055679
"nd_hex": "0x7ffff9dfffffffff"
"nd_bit": "2^63 - 2^43 + 2^41 - 2^37 - 1"
"r2": 5445140158971443198
"r2_hex": "0x4b91061fffb4f7fe"
"r2_bit": "2^62 + 2^60 - 2^58 - 2^55 + 2^52 + 2^48 + 2^43 - 2^41 + 2^37 - 2^22 - 2^20 + 2^18 + 2^16 - 2^11 - 2"
"znprimroot": 11
- "n": 9223039572026327041
"n_hex": "0x7ffed1a000000001"
"n_bit": "2^63 - 2^48 - 2^46 + 2^44 + 2^41 - 2^39 + 2^37 + 1"
"n_fac": "2^37 * 3 * 5 * 7 * 43 * 89 * 167 + 1"
"nd": 9223039572026327039
"nd_hex": "0x7ffed19fffffffff"
"nd_bit": "2^63 - 2^48 - 2^46 + 2^44 + 2^41 - 2^39 + 2^37 - 1"
"r2": 5840453060084375692
"r2_hex": "0x510d751d35ac208c"
"r2_bit": "2^62 + 2^60 + 2^56 + 2^52 - 2^49 - 2^47 - 2^44 + 2^42 + 2^40 + 2^37 - 2^34 + 2^32 + 2^30 - 2^27 - 2^25 - 2^22 - 2^20 - 2^18 + 2^13 + 2^7 + 2^4 - 2^2"
"znprimroot": 17
- "n": 9222808674584494081
"n_hex": "0x7ffdffa000000001"
"n_bit": "2^63 - 2^49 - 2^39 + 2^37 + 1"
"n_fac": "2^37 * 3^2 * 5 * 7^2 * 13 * 2341 + 1"
"nd": 9222808674584494079
"nd_hex": "0x7ffdff9fffffffff"
"nd_bit": "2^63 - 2^49 - 2^39 + 2^37 - 1"
"r2": 6999702506559219070
"r2_hex": "0x6123f057fcdfa57e"
"r2_bit": "2^63 - 2^61 + 2^56 + 2^53 + 2^50 - 2^44 + 2^39 - 2^37 - 2^35 - 2^26 + 2^24 - 2^21 - 2^15 + 2^13 + 2^11 - 2^9 - 2^7 - 2"
"znprimroot": 19
- "n": 9222476759511859201
"n_hex": "0x7ffcd1c000000001"
"n_bit": "2^63 - 2^50 + 2^48 - 2^46 + 2^44 + 2^41 - 2^38 + 1"
"n_fac": "2^38 * 3 * 5^2 * 7 * 63907 + 1"
"nd": 9222476759511859199
"nd_hex": "0x7ffcd1bfffffffff"
"nd_bit": "2^63 - 2^50 + 2^48 - 2^46 + 2^44 + 2^41 - 2^38 - 1"
"r2": 8344521310747567863
"r2_hex": "0x73cdb1ebc3c926f7"
"r2_bit": "2^63 - 2^60 + 2^58 - 2^54 + 2^52 - 2^49 - 2^46 - 2^44 + 2^41 - 2^36 - 2^34 - 2^30 + 2^26 - 2^22 + 2^19 + 2^16 + 2^13 + 2^11 - 2^8 - 2^3 - 1"
"znprimroot": 22
- "n": 9221870653727047681
"n_hex": "0x7ffaaa8000000001"
"n_bit": "2^63 - 2^51 + 2^49 + 2^47 + 2^45 + 2^43 + 2^41 + 2^39 + 1"
"n_fac": "2^39 * 3 * 5 * 7 * 13 * 12289 + 1"
"nd": 9221870653727047679
"nd_hex": "0x7ffaaa7fffffffff"
"nd_bit": "2^63 - 2^51 + 2^49 + 2^47 + 2^45 + 2^43 + 2^41 + 2^39 - 1"
"r2": 8701084527772327224
"r2_hex": "0x78c0764716845d38"
"r2_bit": "2^63 - 2^59 + 2^56 - 2^54 + 2^47 - 2^43 - 2^41 + 2^38 + 2^35 - 2^32 + 2^29 - 2^27 - 2^25 + 2^23 + 2^18 + 2^15 - 2^13 - 2^10 + 2^8 + 2^6 - 2^3"
"znprimroot": 19
- "n": 9220600717796966401
"n_hex": "0x7ff6278000000001"
"n_bit": "2^63 - 2^51 - 2^49 + 2^45 + 2^43 - 2^39 + 1"
"n_fac": "2^39 * 3^2 * 5^2 * 7 * 23 * 463 + 1"
"nd": 9220600717796966399
"nd_hex": "0x7ff6277fffffffff"
"nd_bit": "2^63 - 2^51 - 2^49 + 2^45 + 2^43 - 2^39 - 1"
"r2": 2142326655281310376
"r2_hex": "0x1dbb12be10e4aaa8"
"r2_bit": "2^61 - 2^57 - 2^54 - 2^50 - 2^48 + 2^44 + 2^42 - 2^40 - 2^38 - 2^33 + 2^28 + 2^24 - 2^21 + 2^18 + 2^15 + 2^13 + 2^11 + 2^9 + 2^7 + 2^5 + 2^3"
"znprimroot": 11
- "n": 9223346748087336961
"n_hex": "0x7fffe90000000001"
"n_bit": "2^63 - 2^45 + 2^43 + 2^40 + 1"
"n_fac": "2^40 * 3^2 * 5 * 131 * 1423 + 1"
"nd": 9223346748087336959
"nd_hex": "0x7fffe8ffffffffff"
"nd_bit": "2^63 - 2^45 + 2^43 + 2^40 - 1"
"r2": 1013560604740157251
"r2_hex": "0xe10e3fffbddff43"
"r2_bit": "2^60 - 2^57 + 2^52 + 2^48 - 2^45 + 2^42 - 2^26 - 2^21 - 2^17 - 2^8 + 2^6 + 2^2 - 1"
"znprimroot": 7
- "n": 9221235685762007041
"n_hex": "0x7ff8690000000001"
"n_bit": "2^63 - 2^51 + 2^47 - 2^45 + 2^43 + 2^40 + 1"
"n_fac": "2^40 * 3 * 5 * 7 * 79873 + 1"
"nd": 9221235685762007039
"nd_hex": "0x7ff868ffffffffff"
"nd_bit": "2^63 - 2^51 + 2^47 - 2^45 + 2^43 + 2^40 - 1"
"r2": 5704785898957748368
"r2_hex": "0x4f2b788cc308b890"
"r2_bit": "2^62 + 2^60 - 2^56 + 2^54 - 2^52 - 2^50 - 2^47 - 2^43 + 2^39 + 2^36 - 2^34 + 2^32 - 2^30 + 2^26 - 2^24 + 2^19 + 2^16 - 2^14 - 2^11 + 2^7 + 2^4"
"znprimroot": 11
- "n": 9223369837831520257
"n_hex": "0x7ffffe0000000001"
"n_bit": "2^63 - 2^41 + 1"
"n_fac": "2^41 * 3 * 23 * 89 * 683 + 1"
"nd": 9223369837831520255
"nd_hex": "0x7ffffdffffffffff"
"nd_bit": "2^63 - 2^41 - 1"
"r2": 1152917106559811585
"r2_hex": "0xffffbfffff80001"
"r2_bit": "2^60 - 2^42 - 2^19 + 1"
"znprimroot": 7
- "n": 9222802489831587841
"n_hex": "0x7ffdfa0000000001"
"n_bit": "2^63 - 2^49 - 2^43 + 2^41 + 1"
"n_fac": "2^41 * 3^3 * 5 * 47 * 661 + 1"
"nd": 9222802489831587839
"nd_hex": "0x7ffdf9ffffffffff"
"nd_bit": "2^63 - 2^49 - 2^43 + 2^41 - 1"
"r2": 4514130714569399320
"r2_hex": "0x3ea569f7cf96dc18"
"r2_bit": "2^62 - 2^57 + 2^55 + 2^53 + 2^51 - 2^49 - 2^47 - 2^45 + 2^43 + 2^41 - 2^35 - 2^30 + 2^28 - 2^23 + 2^21 - 2^19 - 2^16 - 2^13 - 2^10 + 2^5 - 2^3"
"znprimroot": 11
- "n": 9220427544715591681
"n_hex": "0x7ff58a0000000001"
"n_bit": "2^63 - 2^51 - 2^49 - 2^47 + 2^43 + 2^41 + 1"
"n_fac": "2^41 * 3^5 * 5 * 7 * 17 * 29 + 1"
"nd": 9220427544715591679
"nd_hex": "0x7ff589ffffffffff"
"nd_bit": "2^63 - 2^51 - 2^49 - 2^47 + 2^43 + 2^41 - 1"
"r2": 4534019974780651137
"r2_hex": "0x3eec132511538681"
"r2_bit": "2^62 - 2^56 - 2^52 - 2^50 + 2^44 + 2^42 - 2^40 + 2^37 + 2^34 + 2^32 + 2^28 + 2^24 + 2^22 + 2^20 + 2^18 - 2^15 + 2^11 - 2^9 + 2^7 + 1"
"znprimroot": 59
- "n": 9223341250529198081
"n_hex": "0x7fffe40000000001"
"n_bit": "2^63 - 2^45 + 2^42 + 1"
"n_fac": "2^42 * 5 * 419429 + 1"
"nd": 9223341250529198079
"nd_hex": "0x7fffe3ffffffffff"
"nd_bit": "2^63 - 2^45 + 2^42 - 1"
"r2": 10498136919244458
"r2_hex": "0x254bfff9dffeaa"
"r2_bit": "2^53 + 2^50 + 2^48 + 2^46 + 2^44 - 2^42 - 2^27 + 2^25 - 2^21 - 2^9 + 2^7 + 2^5 + 2^3 + 2"
"znprimroot": 3
- "n": 9219404998901760001
"n_hex": "0x7ff1e80000000001"
"n_bit": "2^63 - 2^52 + 2^49 - 2^45 + 2^43 + 1"
"n_fac": "2^43 * 3 * 5^4 * 13 * 43 + 1"
"nd": 9219404998901759999
"nd_hex": "0x7ff1e7ffffffffff"
"nd_bit": "2^63 - 2^52 + 2^49 - 2^45 + 2^43 - 1"
"r2": 8068267394192978855
"r2_hex": "0x6ff83e728fbd33a7"
"r2_bit": "2^63 - 2^60 - 2^51 + 2^46 - 2^41 + 2^39 - 2^36 + 2^33 + 2^31 + 2^28 - 2^22 - 2^18 + 2^16 + 2^14 - 2^12 + 2^10 - 2^7 + 2^5 + 2^3 - 1"
"znprimroot": 7
- "n": 9218349467739095041
"n_hex": "0x7fee280000000001"
"n_bit": "2^63 - 2^52 - 2^49 + 2^45 + 2^43 + 1"
"n_fac": "2^43 * 3^3 * 5 * 7 * 1109 + 1"
"nd": 9218349467739095039
"nd_hex": "0x7fee27ffffffffff"
"nd_bit": "2^63 - 2^52 - 2^49 + 2^45 + 2^43 - 1"
"r2": 3474198920554208286
"r2_hex": "0x3036d582daaddc1e"
"r2_bit": "2^62 - 2^60 + 2^54 - 2^51 - 2^48 - 2^45 - 2^43 - 2^41 - 2^39 + 2^34 - 2^32 - 2^29 - 2^26 - 2^24 - 2^22 - 2^20 - 2^17 - 2^13 - 2^10 + 2^5 - 2"
"znprimroot": 26
- "n": 9218217526343761921
"n_hex": "0x7fedb00000000001"
"n_bit": "2^63 - 2^52 - 2^49 - 2^46 - 2^44 + 1"
"n_fac": "2^44 * 3 * 5 * 181 * 193 + 1"
"nd": 9218217526343761919
"nd_hex": "0x7fedafffffffffff"
"nd_bit": "2^63 - 2^52 - 2^49 - 2^46 - 2^44 - 1"
"r2": 4283923118008700026
"r2_hex": "0x3b738d60edfe0c7a"
"r2_bit": "2^62 - 2^58 - 2^55 - 2^52 + 2^50 - 2^47 + 2^44 - 2^41 - 2^39 - 2^37 + 2^32 - 2^28 - 2^25 - 2^17 + 2^12 - 2^10 + 2^7 - 2^3 + 2"
"znprimroot": 11
- "n": 9200801262159790081
"n_hex": "0x7fafd00000000001"
"n_bit": "2^63 - 2^54 - 2^52 - 2^46 + 2^44 + 1"
"n_fac": "2^44 * 3 * 5 * 7 * 17 * 293 + 1"
"nd": 9200801262159790079
"nd_hex": "0x7fafcfffffffffff"
"nd_bit": "2^63 - 2^54 - 2^52 - 2^46 + 2^44 - 1"
"r2": 4965743762238786932
"r2_hex": "0x44e9dda461dacd74"
"r2_bit": "2^62 + 2^58 + 2^56 - 2^53 + 2^51 + 2^49 - 2^45 - 2^41 - 2^39 + 2^37 + 2^34 + 2^31 - 2^29 + 2^25 - 2^21 - 2^18 - 2^16 - 2^14 + 2^12 - 2^9 - 2^7 - 2^4 + 2^2"
"znprimroot": 11
- "n": 9223336852482686977
"n_hex": "0x7fffe00000000001"
"n_bit": "2^63 - 2^45 + 1"
"n_fac": "2^45 * 3^3 * 7 * 19 * 73 + 1"
"nd": 9223336852482686975
"nd_hex": "0x7fffdfffffffffff"
"nd_bit": "2^63 - 2^45 - 1"
"r2": 17944029631086081
"r2_hex": "0x3fbffff7fffe01"
"r2_bit": "2^54 - 2^46 - 2^27 - 2^9 + 1"
"znprimroot": 5
- "n": 9077040233337323521
"n_hex": "0x7df8200000000001"
"n_bit": "2^63 - 2^57 - 2^51 + 2^45 + 1"
"n_fac": "2^45 * 3^4 * 5 * 7^2 * 13 + 1"
"nd": 9077040233337323519
"nd_hex": "0x7df81fffffffffff"
"nd_bit": "2^63 - 2^57 - 2^51 + 2^45 - 1"
"r2": 6638831940742772177
"r2_hex": "0x5c21de79df7d75d1"
"r2_bit": "2^63 - 2^61 - 2^58 + 2^53 + 2^49 - 2^45 - 2^41 + 2^39 - 2^35 + 2^33 - 2^29 - 2^23 - 2^17 - 2^15 - 2^11 - 2^9 - 2^6 + 2^4 + 1"
"znprimroot": 33
- "n": 9216546268669542401
"n_hex": "0x7fe7c00000000001"
"n_bit": "2^63 - 2^53 + 2^51 - 2^46 + 1"
"n_fac": "2^46 * 5^2 * 13^2 * 31 + 1"
"nd": 9216546268669542399
"nd_hex": "0x7fe7bfffffffffff"
"nd_bit": "2^63 - 2^53 + 2^51 - 2^46 - 1"
"r2": 8548530725031489845
"r2_hex": "0x76a27b670103b135"
"r2_bit": "2^63 - 2^59 - 2^57 + 2^55 + 2^53 + 2^49 + 2^47 - 2^42 - 2^39 - 2^37 + 2^35 - 2^32 + 2^24 + 2^18 - 2^14 - 2^12 + 2^8 + 2^6 - 2^4 + 2^2 + 1"
"znprimroot": 3
- "n": 9211620456577105921
"n_hex": "0x7fd6400000000001"
"n_bit": "2^63 - 2^53 - 2^51 - 2^49 + 2^46 + 1"
"n_fac": "2^46 * 3^2 * 5 * 2909 + 1"
"nd": 9211620456577105919
"nd_hex": "0x7fd63fffffffffff"
"nd_bit": "2^63 - 2^53 - 2^51 - 2^49 + 2^46 - 1"
"r2": 1834287062584997130
"r2_hex": "0x1974b25d6d79350a"
"r2_bit": "2^61 - 2^59 + 2^57 - 2^55 - 2^52 + 2^50 + 2^48 - 2^46 - 2^44 + 2^41 + 2^39 - 2^37 - 2^33 - 2^31 - 2^28 - 2^25 - 2^23 - 2^19 + 2^16 + 2^14 - 2^12 + 2^10 + 2^8 + 2^3 + 2"
"znprimroot": 11
- "n": 9125066901238579201
"n_hex": "0x7ea2c00000000001"
"n_bit": "2^63 - 2^57 + 2^55 + 2^53 + 2^50 - 2^48 - 2^46 + 1"
"n_fac": "2^46 * 3 * 5^2 * 7 * 13 * 19 + 1"
"nd": 9125066901238579199
"nd_hex": "0x7ea2bfffffffffff"
"nd_bit": "2^63 - 2^57 + 2^55 + 2^53 + 2^50 - 2^48 - 2^46 - 1"
"r2": 3470371838036982939
"r2_hex": "0x30293cccc4b6bc9b"
"r2_bit": "2^62 - 2^60 + 2^53 + 2^51 + 2^48 + 2^46 - 2^42 + 2^40 - 2^38 + 2^36 - 2^34 + 2^32 - 2^30 + 2^26 + 2^24 - 2^22 - 2^19 - 2^16 - 2^14 - 2^10 + 2^7 + 2^5 - 2^2 - 1"
"znprimroot": 34
- "n": 9211409350344572929
"n_hex": "0x7fd5800000000001"
"n_bit": "2^63 - 2^53 - 2^51 - 2^49 - 2^47 + 1"
"n_fac": "2^47 * 3 * 21817 + 1"
"nd": 9211409350344572927
"nd_hex": "0x7fd57fffffffffff"
"nd_bit": "2^63 - 2^53 - 2^51 - 2^49 - 2^47 - 1"
"r2": 4506680316395174209
"r2_hex": "0x3e8af1decefab941"
"r2_bit": "2^62 - 2^57 + 2^55 + 2^52 - 2^50 - 2^48 - 2^44 + 2^41 - 2^37 - 2^32 - 2^30 + 2^28 - 2^24 - 2^18 - 2^16 - 2^14 - 2^11 + 2^8 + 2^6 + 1"
"znprimroot": 7
- "n": 9185232177510481921
"n_hex": "0x7f78800000000001"
"n_bit": "2^63 - 2^55 - 2^51 + 2^47 + 1"
"n_fac": "2^47 * 3 * 5 * 19 * 229 + 1"
"nd": 9185232177510481919
"nd_hex": "0x7f787fffffffffff"
"nd_bit": "2^63 - 2^55 - 2^51 + 2^47 - 1"
"r2": 3792153993002606945
"r2_hex": "0x34a06ff7067fe161"
"r2_bit": "2^62 - 2^60 + 2^58 + 2^55 + 2^53 + 2^47 - 2^44 - 2^35 - 2^32 + 2^27 - 2^25 + 2^23 - 2^13 + 2^9 - 2^7 - 2^5 + 1"
"znprimroot": 7
- "n": 9138788806353223681
"n_hex": "0x7ed3800000000001"
"n_bit": "2^63 - 2^56 - 2^54 + 2^52 + 2^50 - 2^47 + 1"
"n_fac": "2^47 * 3^3 * 5 * 13 * 37 + 1"
"nd": 9138788806353223679
"nd_hex": "0x7ed37fffffffffff"
"nd_bit": "2^63 - 2^56 - 2^54 + 2^52 + 2^50 - 2^47 - 1"
"r2": 8986853891445164930
"r2_hex": "0x7cb7b7fff7ed0b82"
"r2_bit": "2^63 - 2^58 + 2^56 - 2^54 - 2^51 - 2^46 - 2^43 - 2^27 - 2^20 - 2^18 + 2^16 + 2^12 - 2^10 - 2^7 + 2"
"znprimroot": 7
- "n": 9214646312576745473
"n_hex": "0x7fe1000000000001"
"n_bit": "2^63 - 2^53 + 2^48 + 1"
"n_fac": "2^48 * 19 * 1723 + 1"
"nd": 9214646312576745471
"nd_hex": "0x7fe0ffffffffffff"
"nd_bit": "2^63 - 2^53 + 2^48 - 1"
"r2": 1433825268620011685
"r2_hex": "0x13e5f87c2e1328a5"
"r2_bit": "2^60 + 2^58 - 2^53 + 2^51 - 2^49 - 2^43 + 2^39 - 2^34 + 2^30 - 2^28 - 2^25 + 2^20 + 2^18 - 2^16 + 2^13 + 2^11 + 2^7 + 2^5 + 2^2 + 1"
"znprimroot": 3
- "n": 9203387313508319233
"n_hex": "0x7fb9000000000001"
"n_bit": "2^63 - 2^54 - 2^51 + 2^48 + 1"
"n_fac": "2^48 * 3^3 * 7 * 173 + 1"
"nd": 9203387313508319231
"nd_hex": "0x7fb8ffffffffffff"
"nd_bit": "2^63 - 2^54 - 2^51 + 2^48 - 1"
"r2": 1573964673877754007
"r2_hex": "0x15d7d8881b7f4097"
"r2_bit": "2^61 - 2^59 - 2^57 - 2^53 - 2^51 - 2^45 - 2^43 + 2^39 + 2^35 + 2^29 - 2^26 - 2^23 - 2^16 + 2^14 + 2^7 + 2^5 - 2^3 - 1"
"znprimroot": 5
- "n": 9115567120774594561
"n_hex": "0x7e81000000000001"
"n_bit": "2^63 - 2^57 + 2^55 + 2^48 + 1"
"n_fac": "2^48 * 3 * 5 * 17 * 127 + 1"
"nd": 9115567120774594559
"nd_hex": "0x7e80ffffffffffff"
"nd_bit": "2^63 - 2^57 + 2^55 + 2^48 - 1"
"r2": 4466577354491166592
"r2_hex": "0x3dfc7870603fff80"
"r2_bit": "2^62 - 2^57 - 2^50 + 2^47 - 2^43 + 2^39 - 2^36 + 2^31 - 2^29 + 2^22 - 2^7"
"znprimroot": 37
- "n": 9073345874267996161
"n_hex": "0x7deb000000000001"
"n_bit": "2^63 - 2^57 - 2^52 - 2^50 - 2^48 + 1"
"n_fac": "2^48 * 3 * 5 * 7 * 307 + 1"
"nd": 9073345874267996159
"nd_hex": "0x7deaffffffffffff"
"nd_bit": "2^63 - 2^57 - 2^52 - 2^50 - 2^48 - 1"
"r2": 1400109152995770788
"r2_hex": "0x136e2fdb471601a4"
"r2_bit": "2^60 + 2^58 - 2^55 - 2^52 - 2^49 + 2^46 - 2^44 - 2^37 - 2^34 - 2^32 + 2^30 + 2^27 - 2^24 + 2^21 - 2^19 - 2^17 + 2^9 - 2^7 + 2^5 + 2^2"
"znprimroot": 29
- "n": 8777797148721807361
"n_hex": "0x79d1000000000001"
"n_bit": "2^63 - 2^59 + 2^57 - 2^54 + 2^52 + 2^48 + 1"
"n_fac": "2^48 * 3^4 * 5 * 7 * 11 + 1"
"nd": 8777797148721807359
"nd_hex": "0x79d0ffffffffffff"
"nd_bit": "2^63 - 2^59 + 2^57 - 2^54 + 2^52 + 2^48 - 1"
"r2": 3626142035945688626
"r2_hex": "0x3252a4f835a78e32"
"r2_bit": "2^62 - 2^60 + 2^57 + 2^54 + 2^52 + 2^49 + 2^47 + 2^45 + 2^42 + 2^40 - 2^35 + 2^30 - 2^27 - 2^25 - 2^23 + 2^21 + 2^19 - 2^15 + 2^12 - 2^9 + 2^6 - 2^4 + 2"
"znprimroot": 43
- "n": 9172143591093436417
"n_hex": "0x7f4a000000000001"
"n_bit": "2^63 - 2^56 + 2^54 + 2^51 + 2^49 + 1"
"n_fac": "2^49 * 3 * 5431 + 1"
"nd": 9172143591093436415
"nd_hex": "0x7f49ffffffffffff"
"nd_bit": "2^63 - 2^56 + 2^54 + 2^51 + 2^49 - 1"
"r2": 7866376526936438877
"r2_hex": "0x6d2afbc5fd84785d"
"r2_bit": "2^63 - 2^60 - 2^58 + 2^56 + 2^54 - 2^52 - 2^50 - 2^48 - 2^42 - 2^38 + 2^35 - 2^33 - 2^25 - 2^23 + 2^18 + 2^15 - 2^11 + 2^7 - 2^5 - 2^2 + 1"
"znprimroot": 5
- "n": 9165388191652380673
"n_hex": "0x7f32000000000001"
"n_bit": "2^63 - 2^56 + 2^54 - 2^52 + 2^49 + 1"
"n_fac": "2^49 * 3^5 * 67 + 1"
"nd": 9165388191652380671
"nd_hex": "0x7f31ffffffffffff"
"nd_bit": "2^63 - 2^56 + 2^54 - 2^52 + 2^49 - 1"
"r2": 5449551670495107832
"r2_hex": "0x4ba0b25f10ff5af8"
"r2_bit": "2^62 + 2^60 - 2^58 - 2^55 + 2^53 + 2^48 - 2^46 - 2^44 + 2^41 + 2^39 - 2^37 - 2^32 + 2^28 + 2^24 - 2^15 - 2^13 - 2^10 - 2^8 - 2^3"
"znprimroot": 7
- "n": 8925571511494901761
"n_hex": "0x7bde000000000001"
"n_bit": "2^63 - 2^58 - 2^53 - 2^49 + 1"
"n_fac": "2^49 * 3 * 5 * 7 * 151 + 1"
"nd": 8925571511494901759
"nd_hex": "0x7bddffffffffffff"
"nd_bit": "2^63 - 2^58 - 2^53 - 2^49 - 1"
"r2": 1776867076604821497
"r2_hex": "0x18a8b331221dfff9"
"r2_bit": "2^61 - 2^59 + 2^55 + 2^53 + 2^51 + 2^48 - 2^46 - 2^44 + 2^42 - 2^40 + 2^38 - 2^36 + 2^32 + 2^29 + 2^25 + 2^21 - 2^17 - 2^3 + 1"
"znprimroot": 34
- "n": 8689132531057950721
"n_hex": "0x7896000000000001"
"n_bit": "2^63 - 2^59 + 2^55 + 2^53 - 2^51 - 2^49 + 1"
"n_fac": "2^49 * 3^2 * 5 * 7^3 + 1"
"nd": 8689132531057950719
"nd_hex": "0x7895ffffffffffff"
"nd_bit": "2^63 - 2^59 + 2^55 + 2^53 - 2^51 - 2^49 - 1"
"r2": 4591223927379904129
"r2_hex": "0x3fb74dd62bc0c681"
"r2_bit": "2^62 - 2^54 - 2^51 - 2^48 + 2^46 + 2^44 - 2^41 - 2^37 - 2^35 - 2^33 + 2^30 - 2^28 - 2^26 - 2^22 + 2^16 - 2^14 + 2^11 - 2^9 + 2^7 + 1"
"znprimroot": 19
- "n": 8967792758001500161
"n_hex": "0x7c74000000000001"
"n_bit": "2^63 - 2^58 + 2^55 - 2^52 + 2^50 + 1"
"n_fac": "2^50 * 3^3 * 5 * 59 + 1"
"nd": 8967792758001500159
"nd_hex": "0x7c73ffffffffffff"
"nd_bit": "2^63 - 2^58 + 2^55 - 2^52 + 2^50 - 1"
"r2": 7859378719881580422
"r2_hex": "0x6d121f4e11ce4f86"
"r2_bit": "2^63 - 2^60 - 2^58 + 2^56 + 2^52 + 2^49 + 2^45 - 2^40 + 2^38 + 2^36 - 2^33 + 2^28 + 2^25 - 2^22 + 2^20 - 2^17 + 2^14 + 2^12 - 2^7 + 2^3 - 2"
"znprimroot": 13
- "n": 7920705844637859841
"n_hex": "0x6dec000000000001"
"n_bit": "2^63 - 2^60 - 2^57 - 2^52 - 2^50 + 1"
"n_fac": "2^50 * 3 * 5 * 7 * 67 + 1"
"nd": 7920705844637859839
"nd_hex": "0x6debffffffffffff"
"nd_bit": "2^63 - 2^60 - 2^57 - 2^52 - 2^50 - 1"
"r2": 7838195226219616463
"r2_hex": "0x6cc6dd079afb98cf"
"r2_bit": "2^63 - 2^60 - 2^58 + 2^56 - 2^54 + 2^51 - 2^48 - 2^45 - 2^42 + 2^40 + 2^35 - 2^31 + 2^29 - 2^26 - 2^24 - 2^18 - 2^15 + 2^13 - 2^11 + 2^8 - 2^6 + 2^4 - 1"
"znprimroot": 19
- "n": 1773292353277132801
"n_hex": "0x189c000000000001"
"n_bit": "2^61 - 2^59 + 2^55 + 2^53 - 2^50 + 1"
"n_fac": "2^50 * 3^2 * 5^2 * 7 + 1"
"nd": 1773292353277132799
"nd_hex": "0x189bffffffffffff"
"nd_bit": "2^61 - 2^59 + 2^55 + 2^53 - 2^50 - 1"
"r2": 987636538854014962
"r2_hex": "0xdb4ca330996fff2"
"r2_bit": "2^60 - 2^57 - 2^54 - 2^52 + 2^50 + 2^48 - 2^46 + 2^43 + 2^41 + 2^38 - 2^36 + 2^34 - 2^32 + 2^27 + 2^25 - 2^23 + 2^21 - 2^19 - 2^16 - 2^4 + 2"
"znprimroot": 17
- "n": 9198602238904238081
"n_hex": "0x7fa8000000000001"
"n_bit": "2^63 - 2^55 + 2^53 + 2^51 + 1"
"n_fac": "2^51 * 5 * 19 * 43 + 1"
"nd": 9198602238904238079
"nd_hex": "0x7fa7ffffffffffff"
"nd_bit": "2^63 - 2^55 + 2^53 + 2^51 - 1"
"r2": 3605064802131757468
"r2_hex": "0x3207c3564b53c99c"
"r2_bit": "2^62 - 2^60 + 2^57 + 2^51 - 2^46 + 2^42 - 2^39 - 2^37 - 2^35 - 2^33 + 2^30 + 2^28 - 2^26 - 2^24 + 2^22 + 2^20 + 2^18 - 2^14 + 2^11 + 2^9 - 2^7 + 2^5 - 2^2"
"znprimroot": 3
- "n": 9113033845984198657
"n_hex": "0x7e78000000000001"
"n_bit": "2^63 - 2^57 + 2^55 - 2^51 + 1"
"n_fac": "2^51 * 3 * 19 * 71 + 1"
"nd": 9113033845984198655
"nd_hex": "0x7e77ffffffffffff"
"nd_bit": "2^63 - 2^57 + 2^55 - 2^51 - 1"
"r2": 6085278950912436544
"r2_hex": "0x547340f6f44c2940"
"r2_bit": "2^62 + 2^60 + 2^58 + 2^55 - 2^52 + 2^50 - 2^48 + 2^46 + 2^40 - 2^35 - 2^32 - 2^28 + 2^26 + 2^22 + 2^20 - 2^18 + 2^13 + 2^11 + 2^8 + 2^6"
"znprimroot": 5
- "n": 8896861063870414849
"n_hex": "0x7b78000000000001"
"n_bit": "2^63 - 2^58 - 2^55 - 2^51 + 1"
"n_fac": "2^51 * 3^2 * 439 + 1"
"nd": 8896861063870414847
"nd_hex": "0x7b77ffffffffffff"
"nd_bit": "2^63 - 2^58 - 2^55 - 2^51 - 1"
"r2": 6263783268520403404
"r2_hex": "0x56ed6db21e31a1cc"
"r2_bit": "2^63 - 2^61 - 2^59 - 2^56 - 2^52 - 2^49 - 2^47 - 2^44 - 2^41 - 2^38 - 2^36 + 2^33 + 2^29 - 2^25 + 2^22 - 2^20 + 2^17 - 2^15 + 2^13 + 2^9 - 2^6 + 2^4 - 2^2"
"znprimroot": 17
- "n": 8883350264988303361
"n_hex": "0x7b48000000000001"
"n_bit": "2^63 - 2^58 - 2^56 + 2^54 + 2^51 + 1"
"n_fac": "2^51 * 3 * 5 * 263 + 1"
"nd": 8883350264988303359
"nd_hex": "0x7b47ffffffffffff"
"nd_bit": "2^63 - 2^58 - 2^56 + 2^54 + 2^51 - 1"
"r2": 405819990300630441
"r2_hex": "0x5a1c3218c9f1da9"
"r2_bit": "2^59 - 2^57 - 2^55 + 2^53 + 2^49 - 2^46 + 2^42 - 2^40 + 2^37 + 2^33 - 2^31 + 2^28 - 2^26 + 2^23 + 2^21 - 2^16 + 2^13 - 2^9 - 2^7 + 2^5 + 2^3 + 1"
"znprimroot": 14
- "n": 7903817346035220481
"n_hex": "0x6db0000000000001"
"n_bit": "2^63 - 2^60 - 2^57 - 2^54 - 2^52 + 1"
"n_fac": "2^52 * 3^3 * 5 * 13 + 1"
"nd": 7903817346035220479
"nd_hex": "0x6dafffffffffffff"
"nd_bit": "2^63 - 2^60 - 2^57 - 2^54 - 2^52 - 1"
"r2": 5062420639594976590
"r2_hex": "0x464154bff6aa154e"
"r2_bit": "2^62 + 2^59 - 2^57 + 2^54 + 2^48 + 2^46 + 2^44 + 2^42 + 2^40 - 2^38 - 2^27 - 2^25 + 2^23 + 2^21 + 2^19 + 2^17 + 2^12 + 2^10 + 2^8 + 2^6 + 2^4 - 2"
"znprimroot": 17
- "n": 6147413491360727041
"n_hex": "0x5550000000000001"
"n_bit": "2^62 + 2^60 + 2^58 + 2^56 + 2^54 + 2^52 + 1"
"n_fac": "2^52 * 3 * 5 * 7 * 13 + 1"
"nd": 6147413491360727039
"nd_hex": "0x554fffffffffffff"
"nd_bit": "2^62 + 2^60 + 2^58 + 2^56 + 2^54 + 2^52 - 1"
"r2": 4621818292753874935
"r2_hex": "0x4023ff3ff3ff3ff7"
"r2_bit": "2^62 + 2^53 + 2^50 - 2^40 + 2^38 - 2^28 + 2^26 - 2^16 + 2^14 - 2^3 - 1"
"znprimroot": 29
- "n": 3377699720527872001
"n_hex": "0x2ee0000000000001"
"n_bit": "2^62 - 2^60 - 2^56 - 2^53 + 1"
"n_fac": "2^53 * 3 * 5^3 + 1"
"nd": 3377699720527871999
"nd_hex": "0x2edfffffffffffff"
"nd_bit": "2^62 - 2^60 - 2^56 - 2^53 - 1"
"r2": 1988765576248798399
"r2_hex": "0x1b9983c131d5acbf"
"r2_bit": "2^61 - 2^58 - 2^55 + 2^53 - 2^51 + 2^49 - 2^47 + 2^42 - 2^38 + 2^32 + 2^30 - 2^28 + 2^25 - 2^21 - 2^19 - 2^17 - 2^14 - 2^12 - 2^10 + 2^8 - 2^6 - 1"
"znprimroot": 26
- "n": 9097271247288401921
"n_hex": "0x7e40000000000001"
"n_bit": "2^63 - 2^57 + 2^54 + 1"
"n_fac": "2^54 * 5 * 101 + 1"
"nd": 9097271247288401919
"nd_hex": "0x7e3fffffffffffff"
"nd_bit": "2^63 - 2^57 + 2^54 - 1"
"r2": 3817304552273617011
"r2_hex": "0x34f9ca43edc02073"
"r2_bit": "2^62 - 2^60 + 2^58 + 2^56 - 2^51 + 2^49 - 2^46 + 2^43 + 2^41 + 2^38 + 2^34 - 2^28 - 2^25 - 2^22 + 2^13 + 2^7 - 2^4 + 2^2 - 1"
"znprimroot": 6
- "n": 8592868089022906369
"n_hex": "0x7740000000000001"
"n_bit": "2^63 - 2^59 - 2^56 + 2^54 + 1"
"n_fac": "2^54 * 3^2 * 53 + 1"
"nd": 8592868089022906367
"nd_hex": "0x773fffffffffffff"
"nd_bit": "2^63 - 2^59 - 2^56 + 2^54 - 1"
"r2": 3898889881177989654
"r2_hex": "0x361ba3b091faa216"
"r2_bit": "2^62 - 2^59 - 2^57 + 2^53 - 2^50 - 2^47 + 2^45 + 2^42 - 2^38 - 2^36 + 2^31 + 2^28 + 2^25 - 2^19 + 2^17 + 2^15 + 2^13 + 2^9 + 2^5 - 2^3 - 2"
"znprimroot": 11
- "n": 7097673012735901697
"n_hex": "0x6280000000000001"
"n_bit": "2^63 - 2^61 + 2^57 + 2^55 + 1"
"n_fac": "2^55 * 197 + 1"
"nd": 7097673012735901695
"nd_hex": "0x627fffffffffffff"
"nd_bit": "2^63 - 2^61 + 2^57 + 2^55 - 1"
"r2": 6713243919670611035
"r2_hex": "0x5d2a3bc6d2848c5b"
"r2_bit": "2^63 - 2^61 - 2^58 + 2^56 + 2^53 + 2^51 + 2^49 + 2^46 - 2^42 - 2^38 + 2^35 - 2^32 - 2^30 + 2^28 + 2^25 + 2^23 + 2^18 + 2^15 + 2^12 - 2^10 + 2^7 - 2^5 - 2^2 - 1"
"znprimroot": 3
- "n": 6269010681299730433
"n_hex": "0x5700000000000001"
"n_bit": "2^63 - 2^61 - 2^59 - 2^56 + 1"
"n_fac": "2^56 * 3 * 29 + 1"
"nd": 6269010681299730431
"nd_hex": "0x56ffffffffffffff"
"nd_bit": "2^63 - 2^61 - 2^59 - 2^56 - 1"
"r2": 985615366725680966
"r2_hex": "0xdad9bf43ad9bf46"
"r2_bit": "2^60 - 2^57 - 2^54 - 2^52 - 2^49 - 2^47 + 2^45 - 2^42 - 2^36 + 2^34 + 2^30 - 2^26 - 2^24 - 2^21 - 2^19 + 2^17 - 2^14 - 2^8 + 2^6 + 2^3 - 2"
"znprimroot": 5
- "n": 1945555039024054273
"n_hex": "0x1b00000000000001"
"n_bit": "2^61 - 2^58 - 2^56 + 1"
"n_fac": "2^56 * 3^3 + 1"
"nd": 1945555039024054271
"nd_hex": "0x1affffffffffffff"
"nd_bit": "2^61 - 2^58 - 2^56 - 1"
"r2": 1526553473692399260
"r2_hex": "0x152f684bda12f69c"
"r2_bit": "2^60 + 2^58 + 2^56 + 2^54 - 2^52 - 2^47 - 2^45 + 2^43 + 2^38 + 2^36 - 2^34 - 2^29 - 2^27 + 2^25 + 2^20 + 2^18 - 2^16 - 2^11 - 2^9 + 2^7 + 2^5 - 2^2"
"znprimroot": 5
- "n": 4179340454199820289
"n_hex": "0x3a00000000000001"
"n_bit": "2^62 - 2^59 + 2^57 + 1"
"n_fac": "2^57 * 29 + 1"
"nd": 4179340454199820287
"nd_hex": "0x39ffffffffffffff"
"nd_bit": "2^62 - 2^59 + 2^57 - 1"
"r2": 2559286960657440491
"r2_hex": "0x238469ee58469eeb"
"r2_bit": "2^61 + 2^58 - 2^55 + 2^50 + 2^47 - 2^45 + 2^43 + 2^41 - 2^36 - 2^33 + 2^31 - 2^29 - 2^27 + 2^22 + 2^19 - 2^17 + 2^15 + 2^13 - 2^8 - 2^4 - 2^2 - 1"
"znprimroot": 3
- "r": 64
"primes":
- "n": 18446744073709551427
"n_hex": "0xffffffffffffff43"
"n_bit": "2^64 - 2^8 + 2^6 + 2^2 - 1"
"n_fac": "2 * 3 * 23 * 133672058505141677 + 1"
"nd": 11907422100489763477
"nd_hex": "0xa53fa94fea53fa95"
"nd_bit": "2^63 + 2^61 + 2^58 + 2^56 + 2^54 - 2^47 + 2^45 + 2^43 + 2^40 + 2^38 + 2^36 - 2^29 + 2^27 + 2^25 + 2^22 + 2^20 + 2^18 - 2^11 + 2^9 + 2^7 + 2^4 + 2^2 + 1"
"r2": 35721
"r2_hex": "0x8b89"
"r2_bit": "2^15 + 2^12 - 2^10 - 2^7 + 2^3 + 1"
"znprimroot": 2
- "n": 18446744073709550791
"n_hex": "0xfffffffffffffcc7"
"n_bit": "2^64 - 2^10 + 2^8 - 2^6 + 2^3 - 1"
"n_fac": "2 * 3^2 * 5 * 37 * 3727 * 1486332917869 + 1"
"nd": 10374896060849978121
"nd_hex": "0x8ffb08ffb08ffb09"
"nd_bit": "2^63 + 2^60 - 2^50 - 2^48 + 2^43 + 2^40 - 2^30 - 2^28 + 2^23 + 2^20 - 2^10 - 2^8 + 2^3 + 1"
"r2": 680625
"r2_hex": "0xa62b1"
"r2_bit": "2^19 + 2^17 + 2^15 - 2^13 + 2^10 - 2^8 - 2^6 - 2^4 + 1"
"znprimroot": 11
- "n": 18446744073709551557
"n_hex": "0xffffffffffffffc5"
"n_bit": "2^64 - 2^6 + 2^2 + 1"
"n_fac": "2^2 * 11 * 137 * 547 * 5594472617641 + 1"
"nd": 14694863923124558067
"nd_hex": "0xcbeea4e1a08ad8f3"
"nd_bit": "2^64 - 2^62 + 2^60 - 2^58 - 2^52 - 2^49 + 2^47 + 2^45 + 2^42 + 2^40 - 2^37 + 2^33 - 2^31 + 2^29 + 2^23 + 2^20 - 2^18 - 2^16 - 2^13 - 2^11 + 2^8 - 2^4 + 2^2 - 1"
"r2": 3481
"r2_hex": "0xd99"
"r2_bit": "2^12 - 2^9 - 2^7 + 2^5 - 2^3 + 1"
"znprimroot": 2
- "n": 18446744073709550773
"n_hex": "0xfffffffffffffcb5"
"n_bit": "2^64 - 2^10 + 2^8 - 2^6 - 2^4 + 2^2 + 1"
"n_fac": "2^2 * 3^2 * 512409557603043077 + 1"
"nd": 17046279517698387555
"nd_hex": "0xec908ce8026dee63"
"nd_bit": "2^64 - 2^60 - 2^58 + 2^55 + 2^52 + 2^47 + 2^44 - 2^42 + 2^40 - 2^37 + 2^35 + 2^25 + 2^23 - 2^20 - 2^17 - 2^12 - 2^9 + 2^7 - 2^5 + 2^2 - 1"
"r2": 710649
"r2_hex": "0xad7f9"
"r2_bit": "2^20 - 2^18 - 2^16 - 2^13 - 2^11 - 2^3 + 1"
"znprimroot": 2
- "n": 18446744073709550341
"n_hex": "0xfffffffffffffb05"
"n_bit": "2^64 - 2^10 - 2^8 + 2^2 + 1"
"n_fac": "2^2 * 3^2 * 5 * 7^2 * 17 * 1381 * 89085810881 + 1"
"nd": 11053578409658115635
"nd_hex": "0x996632ffcc996633"
"nd_bit": "2^63 + 2^61 - 2^59 + 2^57 - 2^55 - 2^53 + 2^51 - 2^49 + 2^46 - 2^44 + 2^42 - 2^40 - 2^30 + 2^28 - 2^26 + 2^23 + 2^21 - 2^19 + 2^17 - 2^15 - 2^13 + 2^11 - 2^9 + 2^6 - 2^4 + 2^2 - 1"
"r2": 1625625
"r2_hex": "0x18ce19"
"r2_bit": "2^21 - 2^19 + 2^16 - 2^14 + 2^12 - 2^9 + 2^5 - 2^3 + 1"
"znprimroot": 2
- "n": 18446744073709551337
"n_hex": "0xfffffffffffffee9"
"n_bit": "2^64 - 2^8 - 2^5 + 2^3 + 1"
"n_fac": "2^3 * 3 * 11 * 53 * 211 * 863 * 7240135181 + 1"
"nd": 8066318197105968807
"nd_hex": "0x6ff151a9bfc546a7"
"nd_bit": "2^63 - 2^60 - 2^52 + 2^48 + 2^46 + 2^44 + 2^41 - 2^39 + 2^37 + 2^35 + 2^33 - 2^30 - 2^22 + 2^18 + 2^16 + 2^14 + 2^11 - 2^9 + 2^7 + 2^5 + 2^3 - 1"
"r2": 77841
"r2_hex": "0x13011"
"r2_bit": "2^16 + 2^14 - 2^12 + 2^4 + 1"
"znprimroot": 5
- "n": 18446744073709551521
"n_hex": "0xffffffffffffffa1"
"n_bit": "2^64 - 2^7 + 2^5 + 1"
"n_fac": "2^5 * 5 * 2663 * 43294085790719 + 1"
"nd": 5631111348816599967
"nd_hex": "0x4e25b9efd4e25b9f"
"nd_bit": "2^62 + 2^60 - 2^57 + 2^53 + 2^51 - 2^49 - 2^46 - 2^43 + 2^41 - 2^36 - 2^30 + 2^28 + 2^26 + 2^24 - 2^21 + 2^17 + 2^15 - 2^13 - 2^10 - 2^7 + 2^5 - 1"
"r2": 9025
"r2_hex": "0x2341"
"r2_bit": "2^13 + 2^10 - 2^8 + 2^6 + 1"
"znprimroot": 3
- "n": 18446744073709546561
"n_hex": "0xffffffffffffec41"
"n_bit": "2^64 - 2^12 - 2^10 + 2^6 + 1"
"n_fac": "2^6 * 3^2 * 5 * 7 * 915017067148291c + 1"
"nd": 10451330371336133695
"nd_hex": "0x910a959965bddc3f"
"nd_bit": "2^63 + 2^60 + 2^56 + 2^51 + 2^49 + 2^47 + 2^45 - 2^43 - 2^41 - 2^39 + 2^37 - 2^35 + 2^33 - 2^31 - 2^29 + 2^27 - 2^25 - 2^22 - 2^17 - 2^13 - 2^10 + 2^6 - 1"
"r2": 25553025
"r2_hex": "0x185e881"
"r2_bit": "2^25 - 2^23 + 2^19 - 2^17 - 2^13 + 2^11 + 2^7 + 1"
"znprimroot": 13
- "n": 18446744073709549441
"n_hex": "0xfffffffffffff781"
"n_bit": "2^64 - 2^11 - 2^7 + 1"
"n_fac": "2^7 * 3^2 * 5 * 163 * 19647605736313c + 1"
"nd": 12840630127630464895
"nd_hex": "0xb23315118997b77f"
"nd_bit": "2^64 - 2^62 - 2^60 + 2^57 + 2^54 - 2^52 + 2^50 - 2^48 + 2^44 + 2^42 + 2^40 + 2^36 + 2^33 - 2^31 + 2^27 + 2^25 - 2^23 + 2^21 - 2^19 - 2^14 - 2^11 - 2^7 - 1"
"r2": 4730625
"r2_hex": "0x482f01"
"r2_bit": "2^22 + 2^19 + 2^14 - 2^12 - 2^8 + 1"
"znprimroot": 11
- "n": 18446744073709472641
"n_hex": "0xfffffffffffecb81"
"n_bit": "2^64 - 2^16 - 2^14 + 2^12 - 2^10 - 2^7 + 1"
"n_fac": "2^7 * 3 * 5 * 7 * 1372525600722431 + 1"
"nd": 11828106022774016895
"nd_hex": "0xa425dfc27d1a8b7f"
"nd_bit": "2^63 + 2^61 + 2^58 + 2^53 + 2^51 - 2^49 - 2^45 - 2^38 + 2^33 + 2^31 - 2^26 + 2^24 + 2^21 - 2^19 + 2^17 + 2^15 + 2^12 - 2^10 - 2^7 - 1"
"r2": 6237050625
"r2_hex": "0x173c1d701"
"r2_bit": "2^33 - 2^31 - 2^28 + 2^26 - 2^22 + 2^17 - 2^13 - 2^11 - 2^8 + 1"
"znprimroot": 11
- "n": 18446744073708115201
"n_hex": "0xffffffffffea1501"
"n_bit": "2^64 - 2^21 + 2^19 + 2^17 + 2^12 + 2^10 + 2^8 + 1"
"n_fac": "2^8 * 3^2 * 5^2 * 7 * 17 * 167 * 16115129749 + 1"
"nd": 15135945103588267263
"nd_hex": "0xd20dade0c73114ff"
"nd_bit": "2^64 - 2^62 + 2^60 + 2^57 + 2^52 - 2^49 - 2^46 - 2^44 - 2^41 - 2^37 + 2^32 - 2^30 + 2^27 - 2^24 + 2^22 - 2^20 + 2^16 + 2^12 + 2^10 + 2^8 - 1"
"r2": 2063288052225
"r2_hex": "0x1e0658d2a01"
"r2_bit": "2^41 - 2^37 + 2^31 - 2^29 + 2^27 - 2^25 - 2^23 + 2^20 - 2^18 + 2^16 + 2^13 + 2^11 + 2^9 + 1"
"znprimroot": 19
- "n": 18446744073709432321
"n_hex": "0xfffffffffffe2e01"
"n_bit": "2^64 - 2^17 + 2^14 - 2^12 - 2^9 + 1"
"n_fac": "2^9 * 3 * 5 * 7 * 613 * 559757585939c + 1"
"nd": 10022274784302870015
"nd_hex": "0x8b1645d0e7ba2dff"
"nd_bit": "2^63 + 2^60 - 2^58 - 2^56 + 2^53 - 2^51 - 2^49 + 2^46 + 2^43 - 2^41 - 2^38 + 2^36 + 2^32 - 2^29 + 2^27 - 2^22 - 2^19 + 2^17 + 2^14 - 2^12 - 2^9 - 1"
"r2": 14231297025
"r2_hex": "0x350405c01"
"r2_bit": "2^34 - 2^32 + 2^30 + 2^28 + 2^22 + 2^15 - 2^13 - 2^10 + 1"
"znprimroot": 17
- "n": 18446744073709186561
"n_hex": "0xfffffffffffa6e01"
"n_bit": "2^64 - 2^19 + 2^17 + 2^15 - 2^12 - 2^9 + 1"
"n_fac": "2^9 * 3^2 * 5 * 13 * 89 * 691996485527c + 1"
"nd": 2511107915242696191
"nd_hex": "0x22d93f5830b66dff"
"nd_bit": "2^61 + 2^58 - 2^56 - 2^53 - 2^51 + 2^48 + 2^46 - 2^39 - 2^37 - 2^35 + 2^30 - 2^28 + 2^24 - 2^22 - 2^19 - 2^17 + 2^15 - 2^12 - 2^9 - 1"
"r2": 133265153025
"r2_hex": "0x1f0738dc01"
"r2_bit": "2^37 - 2^32 + 2^27 - 2^24 + 2^22 - 2^19 + 2^16 - 2^13 - 2^10 + 1"
"znprimroot": 11
- "n": 18446744073709550593
"n_hex": "0xfffffffffffffc01"
"n_bit": "2^64 - 2^10 + 1"
"n_fac": "2^10 * 3^4 * 7 * 19 * 73 * 22906579627c + 1"
"nd": 17292695568609442815
"nd_hex": "0xeffbfeffbfeffbff"
"nd_bit": "2^64 - 2^60 - 2^50 - 2^40 - 2^30 - 2^20 - 2^10 - 1"
"r2": 1046529
"r2_hex": "0xff801"
"r2_bit": "2^20 - 2^11 + 1"
"znprimroot": 5
- "n": 18446744073709271041
"n_hex": "0xfffffffffffbb801"
"n_bit": "2^64 - 2^18 - 2^14 - 2^11 + 1"
"n_fac": "2^11 * 3 * 5 * 7^2 * 83^2 * 4021 * 442397 + 1"
"nd": 8536422716872046591
"nd_hex": "0x7677773babbbb7ff"
"nd_bit": "2^63 - 2^59 - 2^57 + 2^55 - 2^51 - 2^47 - 2^43 - 2^40 + 2^38 - 2^34 - 2^30 - 2^28 - 2^26 - 2^22 - 2^18 - 2^14 - 2^11 - 1"
"r2": 78722330625
"r2_hex": "0x1254377001"
"r2_bit": "2^36 + 2^33 + 2^30 + 2^28 + 2^26 + 2^22 - 2^19 - 2^15 - 2^12 + 1"
"znprimroot": 11
- "n": 18446744073709547521
"n_hex": "0xfffffffffffff001"
"n_bit": "2^64 - 2^12 + 1"
"n_fac": "2^12 * 3 * 5 * 53 * 157 * 1613 * 2731 * 8191 + 1"
"nd": 17293541025389735935
"nd_hex": "0xeffeffeffeffefff"
"nd_bit": "2^64 - 2^60 - 2^48 - 2^36 - 2^24 - 2^12 - 1"
"r2": 16769025
"r2_hex": "0xffe001"
"r2_bit": "2^24 - 2^13 + 1"
"znprimroot": 17
- "n": 18446744073709264897
"n_hex": "0xfffffffffffba001"
"n_bit": "2^64 - 2^18 - 2^15 + 2^13 + 1"
"n_fac": "2^13 * 3^2 * 11 * 22745452663487c + 1"
"nd": 11717313365825789951
"nd_hex": "0xa29c426cdbfb9fff"
"nd_bit": "2^63 + 2^61 + 2^57 + 2^55 + 2^53 - 2^50 + 2^46 + 2^41 + 2^39 - 2^36 - 2^34 + 2^32 - 2^29 - 2^26 - 2^18 - 2^15 + 2^13 - 1"
"r2": 82207784961
"r2_hex": "0x1323f74001"
"r2_bit": "2^36 + 2^34 - 2^32 + 2^29 + 2^26 - 2^19 - 2^16 + 2^14 + 1"
"znprimroot": 15
- "n": 18446744073708625921
"n_hex": "0xfffffffffff1e001"
"n_bit": "2^64 - 2^20 + 2^17 - 2^13 + 1"
"n_fac": "2^13 * 3 * 5 * 7 * 293 * 73193558059 + 1"
"nd": 8713856941873553407
"nd_hex": "0x78edd6b87bf1dfff"
"nd_bit": "2^63 - 2^59 + 2^56 - 2^52 - 2^49 - 2^45 - 2^43 - 2^40 - 2^38 - 2^35 + 2^31 - 2^26 - 2^20 + 2^17 - 2^13 - 1"
"r2": 856911233025
"r2_hex": "0xc783e3c001"
"r2_bit": "2^40 - 2^38 + 2^35 - 2^31 + 2^26 - 2^21 + 2^18 - 2^14 + 1"
"znprimroot": 19
- "n": 18446744073706905601
"n_hex": "0xffffffffffd7a001"
"n_bit": "2^64 - 2^21 - 2^19 - 2^15 + 2^13 + 1"
"n_fac": "2^13 * 3^2 * 5^2 * 7 * 227 * 6298300297 + 1"
"nd": 9932420842750713855
"nd_hex": "0x89d70c21dbd79fff"
"nd_bit": "2^63 + 2^59 + 2^57 - 2^53 - 2^51 - 2^48 + 2^44 - 2^42 + 2^37 + 2^33 - 2^29 - 2^26 - 2^21 - 2^19 - 2^15 + 2^13 - 1"
"r2": 7001395380225
"r2_hex": "0x65e23af4001"
"r2_bit": "2^43 - 2^41 + 2^39 - 2^37 - 2^33 + 2^29 + 2^26 - 2^22 - 2^20 - 2^16 + 2^14 + 1"
"znprimroot": 11
- "n": 18446744073709436929
"n_hex": "0xfffffffffffe4001"
"n_bit": "2^64 - 2^17 + 2^14 + 1"
"n_fac": "2^14 * 3 * 139 * 317 * 8517349453 + 1"
"nd": 11455648908923781119
"nd_hex": "0x9efaa3fceffe3fff"
"nd_bit": "2^63 + 2^61 - 2^56 - 2^51 + 2^49 + 2^47 + 2^45 + 2^42 - 2^34 + 2^32 - 2^28 - 2^17 + 2^14 - 1"
"r2": 13153107969
"r2_hex": "0x30ffc8001"
"r2_bit": "2^34 - 2^32 + 2^28 - 2^18 + 2^15 + 1"
"znprimroot": 7
- "n": 18446744073708748801
"n_hex": "0xfffffffffff3c001"
"n_bit": "2^64 - 2^20 + 2^18 - 2^14 + 1"
"n_fac": "2^14 * 3^3 * 5^2 * 1667999861989c + 1"
"nd": 4022202005890252799
"nd_hex": "0x37d1bb69eff3bfff"
"nd_bit": "2^62 - 2^59 - 2^54 + 2^52 + 2^49 - 2^46 - 2^42 - 2^39 - 2^37 + 2^35 + 2^33 - 2^28 - 2^20 + 2^18 - 2^14 - 1"
"r2": 644511924225
"r2_hex": "0x960fe78001"
"r2_bit": "2^39 + 2^37 - 2^35 - 2^33 + 2^28 - 2^21 + 2^19 - 2^15 + 1"
"znprimroot": 7
- "n": 18446744073704325121
"n_hex": "0xffffffffffb04001"
"n_bit": "2^64 - 2^22 - 2^20 + 2^14 + 1"
"n_fac": "2^14 * 3^4 * 5 * 7 * 61 * 6510538103 + 1"
"nd": 4733541765123948543
"nd_hex": "0x41b0eb27efb03fff"
"nd_bit": "2^62 + 2^57 - 2^54 - 2^52 + 2^48 - 2^44 - 2^42 - 2^40 + 2^37 + 2^35 - 2^28 - 2^22 - 2^20 + 2^14 - 1"
"r2": 27316249985025
"r2_hex": "0x18d80f608001"
"r2_bit": "2^45 - 2^43 + 2^40 - 2^37 - 2^35 + 2^28 - 2^23 - 2^21 + 2^15 + 1"
"znprimroot": 11
- "n": 18446744073708797953
"n_hex": "0xfffffffffff48001"
"n_bit": "2^64 - 2^20 + 2^18 + 2^15 + 1"
"n_fac": "2^15 * 3 * 7 * 26807140639109 + 1"
"nd": 16865733745887707135
"nd_hex": "0xea0f1f7bbff47fff"
"nd_bit": "2^64 - 2^61 + 2^59 + 2^57 + 2^52 - 2^48 + 2^45 - 2^39 - 2^34 - 2^30 - 2^20 + 2^18 + 2^15 - 1"
"r2": 568007917569
"r2_hex": "0x843fe90001"
"r2_bit": "2^39 + 2^34 + 2^30 - 2^21 + 2^19 + 2^16 + 1"
"znprimroot": 5
- "n": 18446744073699164161
"n_hex": "0xffffffffff618001"
"n_bit": "2^64 - 2^23 - 2^21 + 2^17 - 2^15 + 1"
"n_fac": "2^15 * 3^2 * 5 * 7 * 1787142709273 + 1"
"nd": 3299728805842747391
"nd_hex": "0x2dcafdddbf617fff"
"nd_bit": "2^62 - 2^60 - 2^57 - 2^54 + 2^52 - 2^50 - 2^48 - 2^41 - 2^37 - 2^33 - 2^30 - 2^23 - 2^21 + 2^17 - 2^15 - 1"
"r2": 107899221377025
"r2_hex": "0x62223ec30001"
"r2_bit": "2^47 - 2^45 + 2^41 + 2^37 + 2^33 + 2^30 - 2^24 - 2^22 + 2^18 - 2^16 + 1"
"znprimroot": 19
- "n": 18446744073695723521
"n_hex": "0xffffffffff2d0001"
"n_bit": "2^64 - 2^24 + 2^22 - 2^20 - 2^18 + 2^16 + 1"
"n_fac": "2^16 * 3 * 5 * 7^2 * 37 * 10350247351 + 1"
"nd": 12174445951413190655
"nd_hex": "0xa8f45216ff2cffff"
"nd_bit": "2^63 + 2^61 + 2^59 + 2^56 - 2^52 + 2^50 + 2^46 + 2^44 + 2^41 + 2^37 - 2^35 - 2^32 - 2^24 + 2^22 - 2^20 - 2^18 + 2^16 - 1"
"r2": 191216211329025
"r2_hex": "0xade8fe5a0001"
"r2_bit": "2^48 - 2^46 - 2^44 - 2^41 - 2^37 + 2^35 + 2^32 - 2^25 + 2^23 - 2^21 - 2^19 + 2^17 + 1"
"znprimroot": 11
- "n": 18446744073621012481
"n_hex": "0xfffffffffab90001"
"n_bit": "2^64 - 2^26 - 2^24 - 2^22 - 2^19 + 2^16 + 1"
"n_fac": "2^16 * 3^2 * 5 * 89 * 1801 * 39023261 + 1"
"nd": 3084163440474390527
"nd_hex": "0x2acd264efab8ffff"
"nd_bit": "2^62 - 2^60 - 2^58 - 2^56 - 2^54 + 2^52 - 2^50 + 2^48 + 2^45 + 2^43 - 2^41 + 2^38 + 2^36 - 2^32 - 2^26 - 2^24 - 2^22 - 2^19 + 2^16 - 1"
"r2": 7839178426548225
"r2_hex": "0x1bd9b0f5720001"
"r2_bit": "2^53 - 2^50 - 2^45 - 2^43 + 2^41 - 2^38 - 2^36 + 2^32 - 2^27 - 2^25 - 2^23 - 2^20 + 2^17 + 1"
"znprimroot": 7
- "n": 18446744073707716609
"n_hex": "0xffffffffffe40001"
"n_bit": "2^64 - 2^21 + 2^18 + 1"
"n_fac": "2^18 * 3^2 * 7818749353073 + 1"
"nd": 12267802017701036031
"nd_hex": "0xaa3ffcefffe3ffff"
"nd_bit": "2^63 + 2^61 + 2^59 + 2^57 + 2^54 - 2^42 + 2^40 - 2^36 - 2^21 + 2^18 - 1"
"r2": 3367250690049
"r2_hex": "0x30fffc80001"
"r2_bit": "2^42 - 2^40 + 2^36 - 2^22 + 2^19 + 1"
"znprimroot": 11
- "n": 18446744073594470401
"n_hex": "0xfffffffff9240001"
"n_bit": "2^64 - 2^27 + 2^24 + 2^21 + 2^18 + 1"
"n_fac": "2^18 * 3^2 * 5^2 * 13 * 59 * 269 * 431 * 3517 + 1"
"nd": 7354645303987011583
"nd_hex": "0x6610f2eff923ffff"
"nd_bit": "2^63 - 2^61 + 2^59 - 2^57 + 2^52 + 2^48 - 2^44 + 2^42 - 2^40 - 2^36 - 2^27 + 2^24 + 2^21 + 2^18 - 1"
"r2": 13243686045876225
"r2_hex": "0x2f0d0ff2480001"
"r2_bit": "2^54 - 2^52 - 2^48 + 2^44 - 2^42 + 2^40 + 2^36 - 2^28 + 2^25 + 2^22 + 2^19 + 1"
"znprimroot": 7
- "n": 18446744073523691521
"n_hex": "0xfffffffff4ec0001"
"n_bit": "2^64 - 2^28 + 2^26 + 2^24 - 2^20 - 2^18 + 1"
"n_fac": "2^18 * 3^2 * 5 * 7 * 29 * 7703201333c + 1"
"nd": 5784106743091691519
"nd_hex": "0x5045466ff4ebffff"
"nd_bit": "2^62 + 2^60 + 2^54 + 2^50 + 2^48 + 2^46 + 2^43 - 2^41 + 2^39 - 2^36 - 2^28 + 2^26 + 2^24 - 2^20 - 2^18 - 1"
"r2": 34543974913409025
"r2_hex": "0x7ab98fe9d80001"
"r2_bit": "2^55 - 2^50 - 2^48 - 2^46 - 2^43 + 2^41 - 2^39 + 2^36 - 2^29 + 2^27 + 2^25 - 2^21 - 2^19 + 1"
"znprimroot": 13
- "n": 18446744072945664001
"n_hex": "0xffffffffd2780001"
"n_bit": "2^64 - 2^30 + 2^28 + 2^25 + 2^23 - 2^19 + 1"
"n_fac": "2^19 * 3^3 * 5^3 * 7 * 1381 * 1078411 + 1"
"nd": 15413261585777950719
"nd_hex": "0xd5e6e7bfd277ffff"
"nd_bit": "2^64 - 2^61 - 2^59 - 2^57 - 2^53 + 2^51 - 2^48 - 2^45 + 2^43 - 2^38 - 2^30 + 2^28 + 2^25 + 2^23 - 2^19 - 1"
"r2": 583524288350388225
"r2_hex": "0x819183fa4f00001"
"r2_bit": "2^59 + 2^53 - 2^51 + 2^48 + 2^45 - 2^43 + 2^38 - 2^31 + 2^29 + 2^26 + 2^24 - 2^20 + 1"
"znprimroot": 13
- "n": 18446744073620422657
"n_hex": "0xfffffffffab00001"
"n_bit": "2^64 - 2^26 - 2^24 - 2^22 - 2^20 + 1"
"n_fac": "2^20 * 3^2 * 19 * 102878280961 + 1"
"nd": 3450820542220730367
"nd_hex": "0x2fe3c6fffaafffff"
"nd_bit": "2^62 - 2^60 - 2^53 + 2^50 - 2^46 + 2^43 - 2^40 - 2^26 - 2^24 - 2^22 - 2^20 - 1"
"r2": 7943971332423681
"r2_hex": "0x1c38fff5600001"
"r2_bit": "2^53 - 2^50 + 2^46 - 2^43 + 2^40 - 2^27 - 2^25 - 2^23 - 2^21 + 1"
"znprimroot": 5
- "n": 18446744072355840001
"n_hex": "0xffffffffaf500001"
"n_bit": "2^64 - 2^30 - 2^28 - 2^24 + 2^22 + 2^20 + 1"
"n_fac": "2^20 * 3^2 * 5^4 * 17 * 5237 * 35129 + 1"
"nd": 13155444419241967615
"nd_hex": "0xb69186ffaf4fffff"
"nd_bit": "2^64 - 2^62 - 2^59 - 2^57 + 2^55 + 2^52 + 2^49 - 2^47 + 2^43 - 2^40 - 2^30 - 2^28 - 2^24 + 2^22 + 2^20 - 1"
"r2": 1832535136585908225
"r2_hex": "0x196e78ff5ea00001"
"r2_bit": "2^61 - 2^59 + 2^57 - 2^55 - 2^52 - 2^49 + 2^47 - 2^43 + 2^40 - 2^31 - 2^29 - 2^25 + 2^23 + 2^21 + 1"
"znprimroot": 11
- "n": 18446744070468403201
"n_hex": "0xffffffff3ed00001"
"n_bit": "2^64 - 2^32 + 2^30 - 2^24 - 2^22 + 2^20 + 1"
"n_fac": "2^20 * 3^3 * 5^2 * 7^2 * 41 * 12972871 + 1"
"nd": 13706308538963329023
"nd_hex": "0xbe3696ff3ecfffff"
"nd_bit": "2^64 - 2^62 - 2^57 + 2^54 - 2^51 - 2^49 + 2^47 + 2^45 - 2^43 - 2^40 - 2^32 + 2^30 - 2^24 - 2^22 + 2^20 - 1"
"r2": 10505043048057012225
"r2_hex": "0x91c968fe7da00001"
"r2_bit": "2^63 + 2^60 + 2^57 - 2^54 + 2^51 + 2^49 - 2^47 - 2^45 + 2^43 + 2^40 - 2^33 + 2^31 - 2^25 - 2^23 + 2^21 + 1"
"znprimroot": 23
- "n": 18446744073220915201
"n_hex": "0xffffffffe2e00001"
"n_bit": "2^64 - 2^29 + 2^26 - 2^24 - 2^21 + 1"
"n_fac": "2^21 * 3 * 5^2 * 7 * 1051 * 15941449 + 1"
"nd": 8984606489324814335
"nd_hex": "0x7cafbbffe2dfffff"
"nd_bit": "2^63 - 2^58 + 2^56 - 2^54 - 2^52 - 2^46 - 2^42 - 2^29 + 2^26 - 2^24 - 2^21 - 1"
"r2": 238765546064052225
"r2_hex": "0x35043ffc5c00001"
"r2_bit": "2^58 - 2^56 + 2^54 + 2^52 + 2^46 + 2^42 - 2^30 + 2^27 - 2^25 - 2^22 + 1"
"znprimroot": 33
- "n": 18446744070515589121
"n_hex": "0xffffffff41a00001"
"n_bit": "2^64 - 2^32 + 2^30 + 2^25 - 2^23 + 2^21 + 1"
"n_fac": "2^21 * 3^2 * 5 * 195468733793c + 1"
"nd": 17468719681515814911
"nd_hex": "0xf26d5bff419fffff"
"nd_bit": "2^64 - 2^60 + 2^57 + 2^55 - 2^52 - 2^49 - 2^47 - 2^45 - 2^42 - 2^32 + 2^30 + 2^25 - 2^23 + 2^21 - 1"
"r2": 10201396419466625025
"r2_hex": "0x8d92a3fe83400001"
"r2_bit": "2^63 + 2^60 - 2^57 - 2^55 + 2^52 + 2^49 + 2^47 + 2^45 + 2^42 - 2^33 + 2^31 + 2^26 - 2^24 + 2^22 + 1"
"znprimroot": 11
- "n": 18446744069854986241
"n_hex": "0xffffffff1a400001"
"n_bit": "2^64 - 2^32 + 2^29 - 2^27 + 2^25 + 2^22 + 1"
"n_fac": "2^22 * 3^2 * 5 * 19 * 5143914047 + 1"
"nd": 3589069831996964863
"nd_hex": "0x31ceefff1a3fffff"
"nd_bit": "2^62 - 2^60 + 2^57 - 2^54 + 2^52 - 2^48 - 2^44 - 2^32 + 2^29 - 2^27 + 2^25 + 2^22 - 1"
"r2": 14857674230148890625
"r2_hex": "0xce310ffe34800001"
"r2_bit": "2^64 - 2^62 + 2^60 - 2^57 + 2^54 - 2^52 + 2^48 + 2^44 - 2^33 + 2^30 - 2^28 + 2^26 + 2^23 + 1"
"znprimroot": 13
- "n": 18446744062431068161
"n_hex": "0xfffffffd5fc00001"
"n_bit": "2^64 - 2^33 - 2^31 - 2^29 - 2^22 + 1"
"n_fac": "2^22 * 3 * 5 * 7 * 1667 * 25126669 + 1"
"nd": 1923019437422673919
"nd_hex": "0x1aafeffd5fbfffff"
"nd_bit": "2^61 - 2^58 - 2^56 - 2^54 - 2^52 - 2^44 - 2^33 - 2^31 - 2^29 - 2^22 - 1"
"r2": 16523724670122328059
"r2_hex": "0xe550100a80fffffb"
"r2_bit": "2^64 - 2^61 + 2^58 + 2^56 + 2^54 + 2^52 + 2^44 + 2^35 + 2^33 + 2^31 + 2^24 - 2^2 - 1"
"znprimroot": 11
- "n": 18446744073516613633
"n_hex": "0xfffffffff4800001"
"n_bit": "2^64 - 2^28 + 2^26 + 2^23 + 1"
"n_fac": "2^23 * 3^2 * 244335917281c + 1"
"nd": 18409519007846629375
"nd_hex": "0xff7bbffff47fffff"
"nd_bit": "2^64 - 2^55 - 2^50 - 2^46 - 2^28 + 2^26 + 2^23 - 1"
"r2": 37225065284108289
"r2_hex": "0x843fffe9000001"
"r2_bit": "2^55 + 2^50 + 2^46 - 2^29 + 2^27 + 2^24 + 1"
"znprimroot": 5
- "n": 18446744073692774401
"n_hex": "0xffffffffff000001"
"n_bit": "2^64 - 2^24 + 1"
"n_fac": "2^24 * 3 * 5^2 * 11 * 17 * 31 * 41 * 61681 + 1"
"nd": 18446462598716063743
"nd_hex": "0xfffefffffeffffff"
"nd_bit": "2^64 - 2^48 - 2^24 - 1"
"r2": 281474943156225
"r2_hex": "0xfffffe000001"
"r2_bit": "2^48 - 2^25 + 1"
"znprimroot": 43
- "n": 18446744073290121217
"n_hex": "0xffffffffe7000001"
"n_bit": "2^64 - 2^29 + 2^27 - 2^24 + 1"
"n_fac": "2^24 * 3^2 * 263 * 443 * 1048571 + 1"
"nd": 18270822212845961215
"nd_hex": "0xfd8effffe6ffffff"
"nd_bit": "2^64 - 2^57 - 2^55 + 2^52 - 2^48 - 2^29 + 2^27 - 2^24 - 1"
"r2": 175921859605299201
"r2_hex": "0x270ffffce000001"
"r2_bit": "2^57 + 2^55 - 2^52 + 2^48 - 2^30 + 2^28 - 2^25 + 1"
"znprimroot": 5
- "n": 18446744057586647041
"n_hex": "0xfffffffc3f000001"
"n_bit": "2^64 - 2^34 + 2^30 - 2^24 + 1"
"n_fac": "2^24 * 3^5 * 5 * 7 * 59 * 863 * 2539 + 1"
"nd": 16753109122718629887
"nd_hex": "0xe87efffc3effffff"
"nd_bit": "2^64 - 2^61 + 2^59 + 2^55 - 2^48 - 2^34 + 2^30 - 2^24 - 1"
"r2": 1693635128342872051
"r2_hex": "0x1781002d0bfffff3"
"r2_bit": "2^61 - 2^59 - 2^55 + 2^48 + 2^38 - 2^36 - 2^34 + 2^32 + 2^28 - 2^26 - 2^4 + 2^2 - 1"
"znprimroot": 11
- "n": 18446744071729840129
"n_hex": "0xffffffff8a000001"
"n_bit": "2^64 - 2^31 + 2^27 + 2^25 + 1"
"n_fac": "2^25 * 3 * 151 * 1213588993c + 1"
"nd": 14527486496010665983
"nd_hex": "0xc99bffff89ffffff"
"nd_bit": "2^64 - 2^62 + 2^59 + 2^57 - 2^55 + 2^53 - 2^50 - 2^31 + 2^27 + 2^25 - 1"
"r2": 3919257571759751169
"r2_hex": "0x3663ffff14000001"
"r2_bit": "2^62 - 2^59 - 2^57 + 2^55 - 2^53 + 2^50 - 2^32 + 2^28 + 2^26 + 1"
"znprimroot": 22
- "n": 18446744068911267841
"n_hex": "0xfffffffee2000001"
"n_bit": "2^64 - 2^32 - 2^29 + 2^25 + 1"
"n_fac": "2^25 * 3^3 * 5 * 127 * 32065081 + 1"
"nd": 13869960947596001279
"nd_hex": "0xc07bfffee1ffffff"
"nd_bit": "2^64 - 2^62 + 2^55 - 2^50 - 2^32 - 2^29 + 2^25 - 1"
"r2": 4576783116516982784
"r2_hex": "0x3f83fffee2000000"
"r2_bit": "2^62 - 2^55 + 2^50 - 2^32 - 2^29 + 2^25"
"znprimroot": 11
- "n": 18446743971267870721
"n_hex": "0xffffffe826000001"
"n_bit": "2^64 - 2^37 + 2^35 + 2^29 + 2^27 - 2^25 + 1"
"n_fac": "2^25 * 3 * 5 * 7 * 11 * 2857 * 166601 + 1"
"nd": 1899393040401825791
"nd_hex": "0x1a5bffe825ffffff"
"nd_bit": "2^61 - 2^59 + 2^57 + 2^55 - 2^53 - 2^50 - 2^37 + 2^35 + 2^29 + 2^27 - 2^25 - 1"
"r2": 16547408912857431497
"r2_hex": "0xe5a434bbfbfffdc9"
"r2_bit": "2^64 - 2^61 + 2^59 - 2^57 - 2^55 + 2^53 + 2^50 + 2^46 - 2^44 + 2^42 + 2^40 - 2^38 - 2^34 - 2^26 - 2^9 - 2^6 + 2^3 + 1"
"znprimroot": 26
- "n": 18446743936035717121
"n_hex": "0xffffffdff2000001"
"n_bit": "2^64 - 2^37 - 2^28 + 2^25 + 1"
"n_fac": "2^25 * 3^2 * 5 * 7 * 13 * 131^2 * 7823 + 1"
"nd": 9168202803745652735
"nd_hex": "0x7f3bffdff1ffffff"
"nd_bit": "2^63 - 2^56 + 2^54 - 2^50 - 2^37 - 2^28 + 2^25 - 1"
"r2": 9278682247970421758
"r2_hex": "0x80c480580dfffbfe"
"r2_bit": "2^63 + 2^56 - 2^54 + 2^50 + 2^47 + 2^39 - 2^37 - 2^35 + 2^28 - 2^25 - 2^10 - 2"
"znprimroot": 31
- "n": 18446744069615910913
"n_hex": "0xffffffff0c000001"
"n_bit": "2^64 - 2^32 + 2^28 - 2^26 + 1"
"n_fac": "2^26 * 3 * 19 * 149 * 32365231 + 1"
"nd": 1688849856170295295
"nd_hex": "0x176fffff0bffffff"
"nd_bit": "2^61 - 2^59 - 2^55 - 2^52 - 2^32 + 2^28 - 2^26 - 1"
"r2": 16757894205258334209
"r2_hex": "0xe88ffffe18000001"
"r2_bit": "2^64 - 2^61 + 2^59 + 2^55 + 2^52 - 2^33 + 2^29 - 2^27 + 1"
"znprimroot": 11
- "n": 18446744046262026241
"n_hex": "0xfffffff99c000001"
"n_bit": "2^64 - 2^35 + 2^33 - 2^31 + 2^29 - 2^26 + 1"
"n_fac": "2^26 * 3^3 * 5 * 53 * 38417597 + 1"
"nd": 2949857728480149503
"nd_hex": "0x28effff99bffffff"
"nd_bit": "2^61 + 2^59 + 2^56 - 2^52 - 2^35 + 2^33 - 2^31 + 2^29 - 2^26 - 1"
"r2": 15496887360787840985
"r2_hex": "0xd71000f2d7ffffd9"
"r2_bit": "2^64 - 2^61 - 2^59 - 2^56 + 2^52 + 2^40 - 2^36 + 2^34 - 2^32 - 2^29 - 2^27 - 2^5 - 2^3 + 1"
"znprimroot": 13
- "n": 18446743925466071041
"n_hex": "0xffffffdd7c000001"
"n_bit": "2^64 - 2^37 - 2^33 - 2^31 - 2^26 + 1"
"n_fac": "2^26 * 3^2 * 5 * 7 * 31 * 71 * 211 * 1879 + 1"
"nd": 12389402426652753919
"nd_hex": "0xabefffdd7bffffff"
"nd_bit": "2^64 - 2^62 - 2^60 - 2^58 - 2^52 - 2^37 - 2^33 - 2^31 - 2^26 - 1"
"r2": 6057517760311720794
"r2_hex": "0x5410a04f13fffb5a"
"r2_bit": "2^62 + 2^60 + 2^58 + 2^52 + 2^47 + 2^45 + 2^38 + 2^36 - 2^32 + 2^28 + 2^26 - 2^10 - 2^7 - 2^5 - 2^3 + 2"
"znprimroot": 13
- "n": 18446743608376688641
"n_hex": "0xffffff93a8000001"
"n_bit": "2^64 - 2^39 + 2^36 + 2^34 - 2^31 + 2^29 + 2^27 + 1"
"n_fac": "2^27 * 3^2 * 5 * 7 * 436314127 + 1"
"nd": 11655315370301980671
"nd_hex": "0xa1bfff93a7ffffff"
"nd_bit": "2^63 + 2^61 + 2^57 - 2^54 - 2^39 + 2^36 + 2^34 - 2^31 + 2^29 + 2^27 - 1"
"r2": 6796889384554582567
"r2_hex": "0x5e5366e23fffd227"
"r2_bit": "2^63 - 2^61 - 2^57 + 2^54 + 2^52 + 2^50 - 2^47 - 2^45 + 2^43 - 2^40 - 2^37 + 2^33 + 2^30 - 2^14 + 2^12 + 2^9 + 2^5 + 2^3 - 1"
"znprimroot": 17
- "n": 18446744071293632513
"n_hex": "0xffffffff70000001"
"n_bit": "2^64 - 2^31 - 2^28 + 1"
"n_fac": "2^28 * 11 * 6247225157c + 1"
"nd": 12610078954221469695
"nd_hex": "0xaeffffff6fffffff"
"nd_bit": "2^64 - 2^62 - 2^60 - 2^56 - 2^31 - 2^28 - 1"
"r2": 5836665112240324609
"r2_hex": "0x50fffffee0000001"
"r2_bit": "2^62 + 2^60 + 2^56 - 2^32 - 2^29 + 1"
"znprimroot": 3
- "n": 18446743312426598401
"n_hex": "0xffffff4ec0000001"
"n_bit": "2^64 - 2^40 + 2^38 + 2^36 - 2^32 - 2^30 + 1"
"n_fac": "2^30 * 3^3 * 5^2 * 7 * 11 * 43 * 7687 + 1"
"nd": 8070449770964975615
"nd_hex": "0x6fffff4ebfffffff"
"nd_bit": "2^63 - 2^60 - 2^40 + 2^38 + 2^36 - 2^32 - 2^30 - 1"
"r2": 10400209245436872008
"r2_hex": "0x9054f734bfff8548"
"r2_bit": "2^63 + 2^60 + 2^54 + 2^52 + 2^50 + 2^48 - 2^43 - 2^40 + 2^38 - 2^36 + 2^34 + 2^32 - 2^30 - 2^15 + 2^10 + 2^8 + 2^6 + 2^3"
"znprimroot": 13
- "n": 18446744037202329601
"n_hex": "0xfffffff780000001"
"n_bit": "2^64 - 2^35 - 2^31 + 1"
"n_fac": "2^31 * 3^7 * 5^2 * 157109 + 1"
"nd": 13835058018774941695
"nd_hex": "0xbffffff77fffffff"
"nd_bit": "2^64 - 2^62 - 2^35 - 2^31 - 1"
"r2": 4611688573932928953
"r2_hex": "0x40000252ffffffb9"
"r2_bit": "2^62 + 2^41 + 2^38 + 2^36 + 2^34 - 2^32 - 2^6 - 2^3 + 1"
"znprimroot": 53
- "n": 18446744069414584321
"n_hex": "0xffffffff00000001"
"n_bit": "2^64 - 2^32 + 1"
"n_fac": "2^32 * 3 * 5 * 17 * 257 * 65537 + 1"
"nd": 18446744069414584319
"nd_hex": "0xfffffffeffffffff"
"nd_bit": "2^64 - 2^32 - 1"
"r2": 18446744065119617025
"r2_hex": "0xfffffffe00000001"
"r2_bit": "2^64 - 2^33 + 1"
"znprimroot": 7
- "n": 18446744056529682433
"n_hex": "0xfffffffc00000001"
"n_bit": "2^64 - 2^34 + 1"
"n_fac": "2^34 * 3^2 * 7 * 11 * 31 * 151 * 331 + 1"
"nd": 18446744056529682431
"nd_hex": "0xfffffffbffffffff"
"nd_bit": "2^64 - 2^34 - 1"
"r2": 240518168561
"r2_hex": "0x37fffffff1"
"r2_bit": "2^38 - 2^35 - 2^4 + 1"
"znprimroot": 10
- "n": 18446742974197923841
"n_hex": "0xffffff0000000001"
"n_bit": "2^64 - 2^40 + 1"
"n_fac": "2^40 * 3^2 * 5 * 7 * 13 * 17 * 241 + 1"
"nd": 18446742974197923839
"nd_hex": "0xfffffeffffffffff"
"nd_bit": "2^64 - 2^40 - 1"
"r2": 72055395014606849
"r2_hex": "0xfffdffffff0001"
"r2_bit": "2^56 - 2^41 - 2^16 + 1"
"znprimroot": 19
- "n": 18446711088360718337
"n_hex": "0xffffe20000000001"
"n_bit": "2^64 - 2^45 + 2^41 + 1"
"n_fac": "2^41 * 8388593 + 1"
"nd": 18446711088360718335
"nd_hex": "0xffffe1ffffffffff"
"nd_bit": "2^64 - 2^45 + 2^41 - 1"
"r2": 8650308775422197656
"r2_hex": "0x780c11fffc7bff98"
"r2_bit": "2^63 - 2^59 + 2^52 - 2^50 + 2^44 + 2^41 - 2^26 + 2^23 - 2^18 - 2^7 + 2^5 - 2^3"
"znprimroot": 3
- "n": 18446660510825840641
"n_hex": "0xffffb40000000001"
"n_bit": "2^64 - 2^46 - 2^44 + 2^42 + 1"
"n_fac": "2^42 * 3 * 5 * 279619 + 1"
"nd": 18446660510825840639
"nd_hex": "0xffffb3ffffffffff"
"nd_bit": "2^64 - 2^46 - 2^44 + 2^42 - 1"
"r2": 13978117711816816975
"r2_hex": "0xc1fc3fffe96ff94f"
"r2_bit": "2^64 - 2^62 + 2^57 - 2^50 + 2^46 - 2^29 + 2^27 + 2^25 - 2^23 - 2^20 - 2^11 + 2^8 + 2^6 + 2^4 - 1"
"znprimroot": 11
- "n": 18446634122546774017
"n_hex": "0xffff9c0000000001"
"n_bit": "2^64 - 2^47 + 2^45 - 2^42 + 1"
"n_fac": "2^42 * 3^2 * 227 * 2053 + 1"
"nd": 18446634122546774015
"nd_hex": "0xffff9bffffffffff"
"nd_bit": "2^64 - 2^47 + 2^45 - 2^42 - 1"
"r2": 5040935357255774399
"r2_hex": "0x45f4ffffd8eff0bf"
"r2_bit": "2^62 + 2^59 - 2^57 - 2^52 + 2^50 + 2^48 - 2^29 - 2^27 + 2^24 - 2^20 - 2^12 + 2^8 - 2^6 - 1"
"znprimroot": 7
- "n": 18446000803849175041
"n_hex": "0xfffd5c0000000001"
"n_bit": "2^64 - 2^49 - 2^47 - 2^45 - 2^42 + 1"
"n_fac": "2^42 * 3^2 * 5 * 11 * 37 * 229 + 1"
"nd": 18446000803849175039
"nd_hex": "0xfffd5bffffffffff"
"nd_bit": "2^64 - 2^49 - 2^47 - 2^45 - 2^42 - 1"
"r2": 16107387920131659299
"r2_hex": "0xdf88eff906dd9623"
"r2_bit": "2^64 - 2^61 - 2^55 + 2^51 + 2^48 - 2^44 - 2^35 + 2^32 + 2^27 - 2^24 - 2^21 - 2^17 - 2^15 + 2^13 - 2^11 - 2^9 + 2^5 + 2^2 - 1"
"znprimroot": 17
- "n": 18445473038267842561
"n_hex": "0xfffb7c0000000001"
"n_bit": "2^64 - 2^50 - 2^47 - 2^42 + 1"
"n_fac": "2^42 * 3 * 5 * 7 * 59 * 677 + 1"
"nd": 18445473038267842559
"nd_hex": "0xfffb7bffffffffff"
"nd_bit": "2^64 - 2^50 - 2^47 - 2^42 - 1"
"r2": 1218461106131167881
"r2_hex": "0x10e8d7eb9b93ea89"
"r2_bit": "2^60 + 2^56 - 2^53 + 2^51 + 2^48 - 2^45 - 2^43 - 2^36 - 2^34 - 2^31 + 2^29 - 2^26 - 2^23 + 2^20 + 2^18 - 2^13 + 2^11 + 2^9 + 2^7 + 2^3 + 1"
"znprimroot": 26
- "n": 18435313550827192321
"n_hex": "0xffd7640000000001"
"n_bit": "2^64 - 2^53 - 2^51 - 2^47 - 2^45 + 2^42 + 1"
"n_fac": "2^42 * 3^2 * 5 * 7^2 * 1901 + 1"
"nd": 18435313550827192319
"nd_hex": "0xffd763ffffffffff"
"nd_bit": "2^64 - 2^53 - 2^51 - 2^47 - 2^45 + 2^42 - 1"
"r2": 3342248776381018252
"r2_hex": "0x2e620d8ddb2cb08c"
"r2_bit": "2^62 - 2^60 - 2^57 + 2^55 - 2^53 + 2^49 + 2^44 - 2^41 - 2^39 + 2^36 - 2^33 - 2^29 - 2^26 - 2^24 + 2^22 - 2^20 - 2^18 + 2^16 - 2^14 - 2^12 + 2^7 + 2^4 - 2^2"
"znprimroot": 19
- "n": 18444219595012177921
"n_hex": "0xfff7080000000001"
"n_bit": "2^64 - 2^51 - 2^48 + 2^43 + 1"
"n_fac": "2^43 * 3^2 * 5 * 17 * 2741 + 1"
"nd": 18444219595012177919
"nd_hex": "0xfff707ffffffffff"
"nd_bit": "2^64 - 2^51 - 2^48 + 2^43 - 1"
"r2": 4313014334330402812
"r2_hex": "0x3bdae7af8cee77fc"
"r2_bit": "2^62 - 2^58 - 2^53 - 2^50 - 2^48 - 2^45 + 2^43 - 2^38 - 2^36 - 2^31 + 2^28 - 2^26 + 2^24 - 2^20 - 2^17 + 2^15 - 2^11 - 2^2"
"znprimroot": 7
- "n": 18413609191294894081
"n_hex": "0xff8a480000000001"
"n_bit": "2^64 - 2^55 + 2^51 + 2^49 + 2^46 + 2^43 + 1"
"n_fac": "2^43 * 3 * 5 * 7 * 19937 + 1"
"nd": 18413609191294894079
"nd_hex": "0xff8a47ffffffffff"
"nd_bit": "2^64 - 2^55 + 2^51 + 2^49 + 2^46 + 2^43 - 1"
"r2": 7921816099521880796
"r2_hex": "0x6deff1c55bf8e2dc"
"r2_bit": "2^63 - 2^60 - 2^57 - 2^52 - 2^44 + 2^41 - 2^38 + 2^35 - 2^33 - 2^31 - 2^29 - 2^26 - 2^19 + 2^16 - 2^13 + 2^10 - 2^8 - 2^5 - 2^2"
"znprimroot": 22
- "n": 18395137395948257281
"n_hex": "0xff48a80000000001"
"n_bit": "2^64 - 2^56 + 2^54 + 2^51 + 2^47 + 2^45 + 2^43 + 1"
"n_fac": "2^43 * 3^3 * 5 * 7 * 2213 + 1"
"nd": 18395137395948257279
"nd_hex": "0xff48a7ffffffffff"
"nd_bit": "2^64 - 2^56 + 2^54 + 2^51 + 2^47 + 2^45 + 2^43 - 1"
"r2": 4656841117426667301
"r2_hex": "0x40a06c52c3a64f25"
"r2_bit": "2^62 + 2^55 + 2^53 + 2^47 - 2^44 - 2^42 + 2^38 + 2^36 + 2^34 - 2^32 - 2^30 + 2^26 - 2^23 + 2^21 + 2^19 - 2^17 + 2^14 + 2^12 - 2^8 + 2^5 + 2^2 + 1"
"znprimroot": 17
- "n": 18384977908507607041
"n_hex": "0xff24900000000001"
"n_bit": "2^64 - 2^56 + 2^53 + 2^50 + 2^47 + 2^44 + 1"
"n_fac": "2^44 * 3 * 5 * 7 * 37 * 269 + 1"
"nd": 18384977908507607039
"nd_hex": "0xff248fffffffffff"
"nd_bit": "2^64 - 2^56 + 2^53 + 2^50 + 2^47 + 2^44 - 1"
"r2": 8559868744649606903
"r2_hex": "0x76cac34568cf06f7"
"r2_bit": "2^63 - 2^59 - 2^56 - 2^54 + 2^52 - 2^50 - 2^48 - 2^46 + 2^42 - 2^40 + 2^38 + 2^35 - 2^33 - 2^31 - 2^29 + 2^27 + 2^24 - 2^22 + 2^20 - 2^16 + 2^11 - 2^8 - 2^3 - 1"
"znprimroot": 13
- "n": 18443823770826178561
"n_hex": "0xfff5a00000000001"
"n_bit": "2^64 - 2^51 - 2^49 - 2^47 + 2^45 + 1"
"n_fac": "2^45 * 3^3 * 5 * 11 * 353 + 1"
"nd": 18443823770826178559
"nd_hex": "0xfff59fffffffffff"
"nd_bit": "2^64 - 2^51 - 2^49 - 2^47 + 2^45 - 1"
"r2": 6241073827475033405
"r2_hex": "0x569cbf9457a30d3d"
"r2_bit": "2^63 - 2^61 - 2^59 - 2^57 + 2^55 + 2^53 - 2^50 + 2^48 - 2^46 - 2^39 + 2^36 + 2^34 + 2^31 - 2^29 - 2^27 - 2^23 + 2^21 + 2^18 - 2^16 + 2^12 - 2^10 + 2^8 + 2^6 - 2^2 + 1"
"znprimroot": 26
- "n": 18446251492500307969
"n_hex": "0xfffe400000000001"
"n_bit": "2^64 - 2^49 + 2^46 + 1"
"n_fac": "2^46 * 3 * 59 * 1481 + 1"
"nd": 18446251492500307967
"nd_hex": "0xfffe3fffffffffff"
"nd_bit": "2^64 - 2^49 + 2^46 - 1"
"r2": 6993034676990026744
"r2_hex": "0x610c3ffceffaa3f8"
"r2_bit": "2^63 - 2^61 + 2^56 + 2^52 - 2^50 + 2^46 - 2^34 + 2^32 - 2^28 - 2^19 + 2^17 + 2^15 + 2^13 + 2^10 - 2^3"
"znprimroot": 7
- "n": 18436962818268856321
"n_hex": "0xffdd400000000001"
"n_bit": "2^64 - 2^53 - 2^50 + 2^48 + 2^46 + 1"
"n_fac": "2^46 * 3 * 5 * 17467 + 1"
"nd": 18436962818268856319
"nd_hex": "0xffdd3fffffffffff"
"nd_bit": "2^64 - 2^53 - 2^50 + 2^48 + 2^46 - 1"
"r2": 14834148295923658973
"r2_hex": "0xcddd7b47cbfef0dd"
"r2_bit": "2^64 - 2^62 + 2^60 - 2^57 - 2^53 - 2^49 - 2^47 - 2^42 - 2^40 + 2^38 + 2^35 - 2^30 + 2^28 - 2^26 - 2^16 - 2^12 + 2^8 - 2^5 - 2^2 + 1"
"znprimroot": 7
- "n": 18421340957061414913
"n_hex": "0xffa5c00000000001"
"n_bit": "2^64 - 2^55 + 2^53 + 2^51 - 2^49 - 2^46 + 1"
"n_fac": "2^46 * 3^2 * 17 * 29 * 59 + 1"
"nd": 18421340957061414911
"nd_hex": "0xffa5bfffffffffff"
"nd_bit": "2^64 - 2^55 + 2^53 + 2^51 - 2^49 - 2^46 - 1"
"r2": 2185266319418878472
"r2_hex": "0x1e53a023b4966a08"
"r2_bit": "2^61 - 2^57 + 2^54 + 2^52 + 2^50 - 2^47 + 2^45 + 2^37 + 2^34 - 2^30 - 2^28 + 2^26 + 2^23 + 2^21 - 2^19 - 2^17 + 2^15 - 2^13 + 2^11 + 2^9 + 2^3"
"znprimroot": 11
- "n": 18346187138279669761
"n_hex": "0xfe9ac00000000001"
"n_bit": "2^64 - 2^57 + 2^55 + 2^53 - 2^50 - 2^48 - 2^46 + 1"
"n_fac": "2^46 * 3 * 5 * 7 * 13 * 191 + 1"
"nd": 18346187138279669759
"nd_hex": "0xfe9abfffffffffff"
"nd_bit": "2^64 - 2^57 + 2^55 + 2^53 - 2^50 - 2^48 - 2^46 - 1"
"r2": 15046819619279451363
"r2_hex": "0xd0d10ab8e687b4e3"
"r2_bit": "2^64 - 2^62 + 2^60 + 2^56 - 2^54 + 2^52 + 2^48 + 2^44 - 2^42 - 2^40 - 2^38 - 2^35 + 2^32 - 2^29 + 2^27 - 2^25 + 2^23 + 2^19 - 2^14 - 2^12 + 2^10 + 2^8 - 2^5 + 2^2 - 1"
"znprimroot": 31
- "n": 18440410886733561857
"n_hex": "0xffe9800000000001"
"n_bit": "2^64 - 2^53 + 2^51 + 2^49 - 2^47 + 1"
"n_fac": "2^47 * 13 * 10079 + 1"
"nd": 18440410886733561855
"nd_hex": "0xffe97fffffffffff"
"nd_bit": "2^64 - 2^53 + 2^51 + 2^49 - 2^47 - 1"
"r2": 1510251812467078792
"r2_hex": "0x14f57e05937d7688"
"r2_bit": "2^60 + 2^58 + 2^56 - 2^51 - 2^49 - 2^47 - 2^41 + 2^35 - 2^33 - 2^31 + 2^28 + 2^26 - 2^23 - 2^17 - 2^15 - 2^11 - 2^9 + 2^7 + 2^3"
"znprimroot": 3
- "n": 18408041264411836417
"n_hex": "0xff76800000000001"
"n_bit": "2^64 - 2^55 - 2^51 - 2^49 + 2^47 + 1"
"n_fac": "2^47 * 3^2 * 14533 + 1"
"nd": 18408041264411836415
"nd_hex": "0xff767fffffffffff"
"nd_bit": "2^64 - 2^55 - 2^51 - 2^49 + 2^47 - 1"
"r2": 18197416609380627912
"r2_hex": "0xfc8a35fdffecf5c8"
"r2_bit": "2^64 - 2^58 + 2^55 + 2^51 + 2^49 + 2^46 - 2^43 - 2^41 - 2^33 - 2^20 - 2^18 + 2^16 - 2^11 - 2^9 - 2^6 + 2^3"
"znprimroot": 5
- "n": 18283910799682437121
"n_hex": "0xfdbd800000000001"
"n_bit": "2^64 - 2^57 - 2^54 - 2^49 - 2^47 + 1"
"n_fac": "2^47 * 3^2 * 5 * 2887 + 1"
"nd": 18283910799682437119
"nd_hex": "0xfdbd7fffffffffff"
"nd_bit": "2^64 - 2^57 - 2^54 - 2^49 - 2^47 - 1"
"r2": 8636735395950115493
"r2_hex": "0x77dbd9154ea63aa5"
"r2_bit": "2^63 - 2^59 - 2^53 - 2^50 - 2^45 - 2^43 + 2^40 + 2^36 + 2^34 + 2^32 + 2^30 + 2^28 - 2^25 + 2^23 + 2^21 + 2^19 - 2^17 + 2^14 - 2^11 + 2^9 + 2^7 + 2^5 + 2^2 + 1"
"znprimroot": 23
- "n": 18437455399478099969
"n_hex": "0xffdf000000000001"
"n_bit": "2^64 - 2^53 - 2^48 + 1"
"n_fac": "2^48 * 31 * 2113 + 1"
"nd": 18437455399478099967
"nd_hex": "0xffdeffffffffffff"
"nd_bit": "2^64 - 2^53 - 2^48 - 1"
"r2": 8454377720905524523
"r2_hex": "0x7553fbbe738ce52b"
"r2_bit": "2^63 - 2^60 + 2^58 + 2^56 + 2^54 + 2^52 + 2^50 - 2^42 - 2^38 - 2^33 + 2^31 - 2^28 + 2^26 - 2^23 + 2^20 - 2^18 + 2^16 - 2^13 + 2^10 + 2^8 + 2^6 - 2^4 - 2^2 - 1"
"znprimroot": 3
- "n": 18333309658095157249
"n_hex": "0xfe6d000000000001"
"n_bit": "2^64 - 2^57 + 2^55 - 2^52 - 2^50 + 2^48 + 1"
"n_fac": "2^48 * 3^2 * 7237 + 1"
"nd": 18333309658095157247
"nd_hex": "0xfe6cffffffffffff"
"nd_bit": "2^64 - 2^57 + 2^55 - 2^52 - 2^50 + 2^48 - 1"
"r2": 17433013775259041556
"r2_hex": "0xf1ee81aa1ece7f14"
"r2_bit": "2^64 - 2^60 + 2^57 - 2^52 - 2^49 + 2^47 + 2^41 - 2^39 + 2^37 + 2^35 + 2^33 + 2^29 - 2^24 - 2^22 + 2^20 - 2^17 + 2^15 - 2^8 + 2^4 + 2^2"
"znprimroot": 7
- "n": 18264911238754467841
"n_hex": "0xfd7a000000000001"
"n_bit": "2^64 - 2^57 - 2^55 - 2^51 + 2^49 + 1"
"n_fac": "2^49 * 3^2 * 5 * 7 * 103 + 1"
"nd": 18264911238754467839
"nd_hex": "0xfd79ffffffffffff"
"nd_bit": "2^64 - 2^57 - 2^55 - 2^51 + 2^49 - 1"
"r2": 415898663383119837
"r2_hex": "0x5c591a17d82b7dd"
"r2_bit": "2^59 - 2^57 - 2^54 + 2^51 - 2^49 - 2^47 + 2^44 + 2^41 - 2^39 + 2^37 + 2^33 - 2^31 - 2^25 - 2^23 + 2^18 - 2^16 - 2^14 - 2^11 - 2^5 - 2^2 + 1"
"znprimroot": 13
- "n": 18425351975479541761
"n_hex": "0xffb4000000000001"
"n_bit": "2^64 - 2^54 - 2^52 + 2^50 + 1"
"n_fac": "2^50 * 3 * 5 * 1091 + 1"
"nd": 18425351975479541759
"nd_hex": "0xffb3ffffffffffff"
"nd_bit": "2^64 - 2^54 - 2^52 + 2^50 - 1"
"r2": 17745283595213363124
"r2_hex": "0xf643e9694b4257b4"
"r2_bit": "2^64 - 2^59 - 2^57 + 2^54 + 2^50 - 2^45 + 2^43 + 2^41 - 2^39 - 2^37 + 2^35 + 2^32 + 2^30 + 2^28 - 2^26 - 2^24 + 2^22 + 2^17 + 2^15 - 2^13 - 2^11 - 2^6 - 2^4 + 2^2"
"znprimroot": 13
- "n": 18249711590012092417
"n_hex": "0xfd44000000000001"
"n_bit": "2^64 - 2^58 + 2^56 + 2^54 + 2^50 + 1"
"n_fac": "2^50 * 3^2 * 1801 + 1"
"nd": 18249711590012092415
"nd_hex": "0xfd43ffffffffffff"
"nd_bit": "2^64 - 2^58 + 2^56 + 2^54 + 2^50 - 1"
"r2": 3668306440791681531
"r2_hex": "0x32e87145baaa69fb"
"r2_bit": "2^62 - 2^60 + 2^58 - 2^56 - 2^53 + 2^51 + 2^47 - 2^44 + 2^40 + 2^38 + 2^35 - 2^33 - 2^30 - 2^27 + 2^25 + 2^23 + 2^21 + 2^19 + 2^17 + 2^15 - 2^13 + 2^11 + 2^9 - 2^2 - 1"
"znprimroot": 5
- "n": 16567617129189212161
"n_hex": "0xe5ec000000000001"
"n_bit": "2^64 - 2^61 + 2^59 - 2^57 - 2^52 - 2^50 + 1"
"n_fac": "2^50 * 3^3 * 5 * 109 + 1"
"nd": 16567617129189212159
"nd_hex": "0xe5ebffffffffffff"
"nd_bit": "2^64 - 2^61 + 2^59 - 2^57 - 2^52 - 2^50 - 1"
"r2": 12668287101912968386
"r2_hex": "0xafcecbffee2f6cc2"
"r2_bit": "2^64 - 2^62 - 2^60 - 2^54 + 2^52 - 2^48 - 2^46 + 2^44 - 2^42 - 2^28 - 2^25 + 2^22 - 2^20 - 2^15 - 2^12 - 2^10 + 2^8 - 2^6 + 2"
"znprimroot": 7
- "n": 16196070159931146241
"n_hex": "0xe0c4000000000001"
"n_bit": "2^64 - 2^61 + 2^56 - 2^54 + 2^50 + 1"
"n_fac": "2^50 * 3 * 5 * 7 * 137 + 1"
"nd": 16196070159931146239
"nd_hex": "0xe0c3ffffffffffff"
"nd_bit": "2^64 - 2^61 + 2^56 - 2^54 + 2^50 - 1"
"r2": 7907432122628728980
"r2_hex": "0x6dbcd79ec2cc6894"
"r2_bit": "2^63 - 2^60 - 2^57 - 2^54 - 2^50 + 2^48 - 2^45 - 2^43 - 2^39 + 2^37 - 2^32 - 2^30 + 2^26 - 2^24 - 2^22 + 2^20 - 2^18 + 2^15 - 2^13 + 2^11 + 2^7 + 2^4 + 2^2"
"znprimroot": 19
- "n": 15250314238183342081
"n_hex": "0xd3a4000000000001"
"n_bit": "2^64 - 2^62 + 2^60 + 2^58 - 2^55 + 2^53 + 2^50 + 1"
"n_fac": "2^50 * 3^2 * 5 * 7 * 43 + 1"
"nd": 15250314238183342079
"nd_hex": "0xd3a3ffffffffffff"
"nd_bit": "2^64 - 2^62 + 2^60 + 2^58 - 2^55 + 2^53 + 2^50 - 1"
"r2": 2230354018051043215
"r2_hex": "0x1ef3cf29994c2f8f"
"r2_bit": "2^61 - 2^56 - 2^52 + 2^50 - 2^46 + 2^44 - 2^40 + 2^37 + 2^35 + 2^33 - 2^31 + 2^29 - 2^27 + 2^24 + 2^22 + 2^20 - 2^18 + 2^14 - 2^12 - 2^7 + 2^4 - 1"
"znprimroot": 19
- "n": 18435485074641125377
"n_hex": "0xffd8000000000001"
"n_bit": "2^64 - 2^53 - 2^51 + 1"
"n_fac": "2^51 * 3 * 2729 + 1"
"nd": 18435485074641125375
"nd_hex": "0xffd7ffffffffffff"
"nd_bit": "2^64 - 2^53 - 2^51 - 1"
"r2": 8351918632814045670
"r2_hex": "0x73e7f9bf05d8e9e6"
"r2_bit": "2^63 - 2^60 + 2^58 - 2^53 + 2^51 - 2^43 + 2^41 - 2^38 - 2^32 + 2^27 - 2^25 - 2^21 - 2^19 + 2^16 - 2^13 + 2^11 + 2^9 - 2^5 + 2^3 - 2"
"znprimroot": 7
- "n": 15841411689275719681
"n_hex": "0xdbd8000000000001"
"n_bit": "2^64 - 2^61 - 2^58 - 2^53 - 2^51 + 1"
"n_fac": "2^51 * 3 * 5 * 7 * 67 + 1"
"nd": 15841411689275719679
"nd_hex": "0xdbd7ffffffffffff"
"nd_bit": "2^64 - 2^61 - 2^58 - 2^53 - 2^51 - 1"
"r2": 5309104110232351131
"r2_hex": "0x49adba0f35f7319b"
"r2_bit": "2^62 + 2^59 + 2^57 - 2^54 - 2^52 - 2^49 - 2^46 - 2^43 + 2^41 + 2^36 - 2^32 + 2^30 - 2^27 - 2^25 - 2^19 - 2^16 + 2^14 - 2^12 + 2^9 - 2^7 + 2^5 - 2^2 - 1"
"znprimroot": 37
- "n": 14085007834601226241
"n_hex": "0xc378000000000001"
"n_bit": "2^64 - 2^62 + 2^58 - 2^55 - 2^51 + 1"
"n_fac": "2^51 * 3^2 * 5 * 139 + 1"
"nd": 14085007834601226239
"nd_hex": "0xc377ffffffffffff"
"nd_bit": "2^64 - 2^62 + 2^58 - 2^55 - 2^51 - 1"
"r2": 11885370576600029033
"r2_hex": "0xa4f151916a1fd769"
"r2_bit": "2^63 + 2^61 + 2^58 + 2^56 - 2^52 + 2^48 + 2^46 + 2^44 + 2^41 - 2^39 + 2^36 + 2^33 - 2^31 - 2^29 + 2^27 + 2^25 + 2^21 - 2^13 - 2^11 - 2^7 - 2^5 + 2^3 + 1"
"znprimroot": 7
- "n": 13477021884906209281
"n_hex": "0xbb08000000000001"
"n_bit": "2^64 - 2^62 - 2^58 - 2^56 + 2^51 + 1"
"n_fac": "2^51 * 3^2 * 5 * 7 * 19 + 1"
"nd": 13477021884906209279
"nd_hex": "0xbb07ffffffffffff"
"nd_bit": "2^64 - 2^62 - 2^58 - 2^56 + 2^51 - 1"
"r2": 1777024095374382114
"r2_hex": "0x18a941ffea199422"
"r2_bit": "2^61 - 2^59 + 2^55 + 2^53 + 2^51 + 2^48 + 2^46 + 2^41 - 2^29 + 2^27 + 2^25 + 2^21 - 2^19 + 2^17 - 2^15 + 2^12 + 2^10 + 2^5 + 2"
"znprimroot": 13
- "n": 18433233274827440129
"n_hex": "0xffd0000000000001"
"n_bit": "2^64 - 2^54 + 2^52 + 1"
"n_fac": "2^52 * 4093 + 1"
"nd": 18433233274827440127
"nd_hex": "0xffcfffffffffffff"
"nd_bit": "2^64 - 2^54 + 2^52 - 1"
"r2": 15636488003372642511
"r2_hex": "0xd8fff6fe4faef0cf"
"r2_bit": "2^64 - 2^61 - 2^59 + 2^56 - 2^43 - 2^40 - 2^33 + 2^30 + 2^28 - 2^22 - 2^20 - 2^16 - 2^12 + 2^8 - 2^6 + 2^4 - 1"
"znprimroot": 3
- "n": 18307132485261066241
"n_hex": "0xfe10000000000001"
"n_bit": "2^64 - 2^57 + 2^52 + 1"
"n_fac": "2^52 * 3 * 5 * 271 + 1"
"nd": 18307132485261066239
"nd_hex": "0xfe0fffffffffffff"
"nd_bit": "2^64 - 2^57 + 2^52 - 1"
"r2": 7425371096913553552
"r2_hex": "0x670c37abdcfc2890"
"r2_bit": "2^63 - 2^61 + 2^59 - 2^56 + 2^52 - 2^50 + 2^46 - 2^43 - 2^38 - 2^36 - 2^34 - 2^29 - 2^26 + 2^24 - 2^18 + 2^13 + 2^11 + 2^7 + 2^4"
"znprimroot": 19
- "n": 14659216787090964481
"n_hex": "0xcb70000000000001"
"n_bit": "2^64 - 2^62 + 2^60 - 2^58 - 2^55 - 2^52 + 1"
"n_fac": "2^52 * 3 * 5 * 7 * 31 + 1"
"nd": 14659216787090964479
"nd_hex": "0xcb6fffffffffffff"
"nd_bit": "2^64 - 2^62 + 2^60 - 2^58 - 2^55 - 2^52 - 1"
"r2": 8069141651987562478
"r2_hex": "0x6ffb59949106ffee"
"r2_bit": "2^63 - 2^60 - 2^50 - 2^47 - 2^45 - 2^43 + 2^41 - 2^39 + 2^36 + 2^34 + 2^31 + 2^28 + 2^24 + 2^19 - 2^16 - 2^4 - 2"
"znprimroot": 19
- "n": 18023405708736724993
"n_hex": "0xfa20000000000001"
"n_bit": "2^64 - 2^59 + 2^57 + 2^53 + 1"
"n_fac": "2^53 * 3 * 23 * 29 + 1"
"nd": 18023405708736724991
"nd_hex": "0xfa1fffffffffffff"
"nd_bit": "2^64 - 2^59 + 2^57 + 2^53 - 1"
"r2": 2512072311490534807
"r2_hex": "0x22dcac75307cdd97"
"r2_bit": "2^61 + 2^58 - 2^56 - 2^53 - 2^50 + 2^48 - 2^46 - 2^44 - 2^42 + 2^39 - 2^36 + 2^34 + 2^32 + 2^30 - 2^28 + 2^23 - 2^18 + 2^16 - 2^13 - 2^9 - 2^7 + 2^5 - 2^3 - 1"
"znprimroot": 5
- "n": 17915319317679833089
"n_hex": "0xf8a0000000000001"
"n_bit": "2^64 - 2^59 + 2^55 + 2^53 + 1"
"n_fac": "2^53 * 3^2 * 13 * 17 + 1"
"nd": 17915319317679833087
"nd_hex": "0xf89fffffffffffff"
"nd_bit": "2^64 - 2^59 + 2^55 + 2^53 - 1"
"r2": 16908763668835924074
"r2_hex": "0xeaa7fef867fef86a"
"r2_bit": "2^64 - 2^61 + 2^59 + 2^57 + 2^55 + 2^53 + 2^51 - 2^40 - 2^35 + 2^31 - 2^29 + 2^27 - 2^16 - 2^11 + 2^7 - 2^5 + 2^3 + 2"
"znprimroot": 7
- "n": 15267202736785981441
"n_hex": "0xd3e0000000000001"
"n_bit": "2^64 - 2^62 + 2^60 + 2^58 - 2^53 + 1"
"n_fac": "2^53 * 3 * 5 * 113 + 1"
"nd": 15267202736785981439
"nd_hex": "0xd3dfffffffffffff"
"nd_bit": "2^64 - 2^62 + 2^60 + 2^58 - 2^53 - 1"
"r2": 13046787299973005005
"r2_hex": "0xb50f7fecaaf7fecd"
"r2_bit": "2^64 - 2^62 - 2^60 + 2^58 + 2^56 + 2^52 - 2^47 - 2^36 - 2^34 + 2^32 - 2^30 - 2^28 - 2^26 - 2^24 - 2^19 - 2^8 - 2^6 + 2^4 - 2^2 + 1"
"znprimroot": 7
- "n": 9322451228656926721
"n_hex": "0x8160000000000001"
"n_bit": "2^63 + 2^57 - 2^55 - 2^53 + 1"
"n_fac": "2^53 * 3^2 * 5 * 23 + 1"
"nd": 9322451228656926719
"nd_hex": "0x815fffffffffffff"
"nd_bit": "2^63 + 2^57 - 2^55 - 2^53 - 1"
"r2": 1671126999121636458
"r2_hex": "0x17310926d535ac6a"
"r2_bit": "2^61 - 2^59 - 2^56 + 2^54 - 2^52 + 2^48 + 2^43 + 2^40 + 2^37 + 2^35 - 2^32 - 2^30 + 2^28 + 2^26 + 2^24 + 2^22 - 2^19 - 2^17 - 2^14 - 2^12 - 2^10 + 2^7 - 2^5 + 2^3 + 2"
"znprimroot": 29
- "n": 12700150949184798721
"n_hex": "0xb040000000000001"
"n_bit": "2^64 - 2^62 - 2^60 + 2^54 + 1"
"n_fac": "2^54 * 3 * 5 * 47 + 1"
"nd": 12700150949184798719
"nd_hex": "0xb03fffffffffffff"
"nd_bit": "2^64 - 2^62 - 2^60 + 2^54 - 1"
"r2": 29870683485935377
"r2_hex": "0x6a1f3a76609711"
"r2_bit": "2^55 - 2^53 + 2^51 + 2^49 + 2^45 - 2^40 + 2^38 - 2^35 + 2^33 + 2^31 - 2^27 - 2^25 + 2^23 - 2^21 + 2^15 + 2^13 - 2^11 - 2^8 + 2^4 + 1"
"znprimroot": 7
- "n": 17798225727368200193
"n_hex": "0xf700000000000001"
"n_bit": "2^64 - 2^59 - 2^56 + 1"
"n_fac": "2^56 * 13 * 19 + 1"
"nd": 17798225727368200191
"nd_hex": "0xf6ffffffffffffff"
"nd_bit": "2^64 - 2^59 - 2^56 - 1"
"r2": 16549616405577384137
"r2_hex": "0xe5ac0c6fef6ac0c9"
"r2_bit": "2^64 - 2^61 + 2^59 - 2^57 - 2^54 - 2^52 - 2^50 + 2^44 - 2^42 + 2^39 - 2^36 - 2^28 - 2^23 - 2^20 - 2^18 - 2^16 - 2^14 + 2^8 - 2^6 + 2^3 + 1"
"znprimroot": 3
- "n": 17726168133330272257
"n_hex": "0xf600000000000001"
"n_bit": "2^64 - 2^59 - 2^57 + 1"
"n_fac": "2^57 * 3 * 41 + 1"
"nd": 17726168133330272255
"nd_hex": "0xf5ffffffffffffff"
"nd_bit": "2^64 - 2^59 - 2^57 - 1"
"r2": 10058771460416444401
"r2_hex": "0x8b97ef597ef597f1"
"r2_bit": "2^63 + 2^60 - 2^58 - 2^55 + 2^53 - 2^51 - 2^44 - 2^39 - 2^37 - 2^35 + 2^33 - 2^31 - 2^24 - 2^19 - 2^17 - 2^15 + 2^13 - 2^11 - 2^4 + 1"
"znprimroot": 7
- "n": 10808639105689190401
"n_hex": "0x9600000000000001"
"n_bit": "2^63 + 2^61 - 2^59 - 2^57 + 1"
"n_fac": "2^57 * 3 * 5^2 + 1"
"nd": 10808639105689190399
"nd_hex": "0x95ffffffffffffff"
"nd_bit": "2^63 + 2^61 - 2^59 - 2^57 - 1"
"r2": 4258123423681288168
"r2_hex": "0x3b17e4b17e4b17e8"
"r2_bit": "2^62 - 2^58 - 2^56 + 2^53 - 2^51 - 2^45 + 2^42 + 2^40 - 2^38 - 2^36 + 2^33 - 2^31 - 2^25 + 2^22 + 2^20 - 2^18 - 2^16 + 2^13 - 2^11 - 2^5 + 2^3"
"znprimroot": 7
- "n": 15564440312192434177
"n_hex": "0xd800000000000001"
"n_bit": "2^64 - 2^61 - 2^59 + 1"
"n_fac": "2^59 * 3^3 + 1"
"nd": 15564440312192434175
"nd_hex": "0xd7ffffffffffffff"
"nd_bit": "2^64 - 2^61 - 2^59 - 1"
"r2": 3501465310287461188
"r2_hex": "0x3097b425ed097b44"
"r2_bit": "2^62 - 2^60 + 2^55 + 2^53 - 2^51 - 2^46 - 2^44 + 2^42 + 2^37 + 2^35 - 2^33 - 2^28 - 2^26 + 2^24 + 2^19 + 2^17 - 2^15 - 2^10 - 2^8 + 2^6 + 2^2"
"znprimroot": 5
This file has been truncated, but you can view the full file.
- "r": 94
"primes":
- "n": 19807040628566084398385987479
"n_hex": "0x3fffffffffffffffffffff97"
"n_bit": "2^94 - 2^7 + 2^5 - 2^3 - 1"
"n_fac": "2 * 3^2 * 61 * 18039199115269657922027311c + 1"
"nd": 19052486699858804992733188057
"nd_hex": "0x3d8fd8fd8fd8fd8fd8fd8fd9"
"nd_bit": "2^94 - 2^89 - 2^87 + 2^84 - 2^77 - 2^75 + 2^72 - 2^65 - 2^63 + 2^60 - 2^53 - 2^51 + 2^48 - 2^41 - 2^39 + 2^36 - 2^29 - 2^27 + 2^24 - 2^17 - 2^15 + 2^12 - 2^5 - 2^3 + 1"
"r2": 11025
"r2_hex": "0x2b11"
"r2_bit": "2^14 - 2^12 - 2^10 - 2^8 + 2^4 + 1"
"znprimroot": 7
- "n": 19807040628566084398385985931
"n_hex": "0x3ffffffffffffffffffff98b"
"n_bit": "2^94 - 2^11 + 2^9 - 2^7 + 2^4 - 2^2 - 1"
"n_fac": "2 * 3^2 * 5 * 7 * 457 * 6689 * 10284937264148682407c + 1"
"nd": 11311461798769742088370461149
"nd_hex": "0x248c9f34cf8694fc20d519dd"
"nd_bit": "2^93 + 2^90 + 2^87 + 2^84 - 2^82 + 2^79 + 2^77 - 2^72 + 2^70 - 2^68 + 2^66 + 2^64 - 2^62 + 2^60 - 2^55 + 2^51 - 2^49 + 2^47 + 2^44 + 2^42 + 2^40 - 2^34 + 2^29 + 2^24 - 2^22 + 2^20 + 2^18 + 2^16 + 2^13 - 2^11 + 2^9 - 2^5 - 2^2 + 1"
"r2": 2732409
"r2_hex": "0x29b179"
"r2_bit": "2^21 + 2^19 + 2^17 - 2^14 - 2^12 + 2^9 - 2^7 - 2^3 + 1"
"znprimroot": 2
- "n": 19807040628566084398385987581
"n_hex": "0x3ffffffffffffffffffffffd"
"n_bit": "2^94 - 2^2 + 1"
"n_fac": "2^2 * 3 * 5 * 47 * 277 * 1013 * 1657 * 15106322819245967c + 1"
"nd": 13204693752377389598923991723
"nd_hex": "0x2aaaaaaaaaaaaaaaaaaaaaab"
"nd_bit": "2^94 - 2^92 - 2^90 - 2^88 - 2^86 - 2^84 - 2^82 - 2^80 - 2^78 - 2^76 - 2^74 - 2^72 - 2^70 - 2^68 - 2^66 - 2^64 - 2^62 - 2^60 - 2^58 - 2^56 - 2^54 - 2^52 - 2^50 - 2^48 - 2^46 - 2^44 - 2^42 - 2^40 - 2^38 - 2^36 - 2^34 - 2^32 - 2^30 - 2^28 - 2^26 - 2^24 - 2^22 - 2^20 - 2^18 - 2^16 - 2^14 - 2^12 - 2^10 - 2^8 - 2^6 - 2^4 - 2^2 - 1"
"r2": 9
"r2_hex": "0x9"
"r2_bit": "2^3 + 1"
"znprimroot": 10
- "n": 19807040628566084398385985301
"n_hex": "0x3ffffffffffffffffffff715"
"n_bit": "2^94 - 2^11 - 2^8 + 2^4 + 2^2 + 1"
"n_fac": "2^2 * 3^3 * 5^2 * 7 * 479 * 659 * 3319990647083419157c + 1"
"nd": 5925628011086568394260897731
"nd_hex": "0x1325908a25e6a86c8b7e5fc3"
"nd_bit": "2^92 + 2^90 - 2^88 + 2^85 + 2^83 - 2^81 - 2^79 + 2^76 + 2^71 + 2^67 + 2^65 + 2^61 + 2^59 - 2^57 - 2^53 + 2^51 - 2^49 + 2^47 + 2^45 + 2^43 + 2^39 - 2^36 - 2^34 + 2^31 + 2^28 - 2^26 - 2^23 - 2^17 + 2^15 - 2^13 - 2^6 + 2^2 - 1"
"r2": 5212089
"r2_hex": "0x4f87b9"
"r2_bit": "2^22 + 2^20 - 2^15 + 2^11 - 2^6 - 2^3 + 1"
"znprimroot": 10
- "n": 19807040628566084398385987177
"n_hex": "0x3ffffffffffffffffffffe69"
"n_bit": "2^94 - 2^9 + 2^7 - 2^5 + 2^3 + 1"
"n_fac": "2^3 * 7 * 3947 * 89611642787316245604193c + 1"
"nd": 12945142032428939680517623335
"nd_hex": "0x29d3f873bc119c9e81928e27"
"nd_bit": "2^93 + 2^91 + 2^89 - 2^86 + 2^84 + 2^82 - 2^75 + 2^71 - 2^68 + 2^66 - 2^62 - 2^58 + 2^52 + 2^49 - 2^47 + 2^45 - 2^42 + 2^39 + 2^37 - 2^33 + 2^31 + 2^25 - 2^23 + 2^20 + 2^17 + 2^15 + 2^12 - 2^9 + 2^5 + 2^3 - 1"
"r2": 165649
"r2_hex": "0x28711"
"r2_bit": "2^17 + 2^15 + 2^11 - 2^8 + 2^4 + 1"
"znprimroot": 3
- "n": 19807040628566084398385987153
"n_hex": "0x3ffffffffffffffffffffe51"
"n_bit": "2^94 - 2^9 + 2^6 + 2^4 + 1"
"n_fac": "2^4 * 23 * 53823479968929577169527139c + 1"
"nd": 6112149428304615371195675983
"nd_hex": "0x13bfd9fc6faa77fb3f8df54f"
"nd_bit": "2^92 + 2^90 - 2^86 - 2^77 - 2^75 + 2^73 - 2^66 + 2^63 - 2^60 - 2^55 + 2^53 + 2^51 + 2^49 + 2^47 - 2^43 - 2^34 - 2^32 + 2^30 - 2^23 + 2^20 - 2^17 - 2^12 + 2^10 + 2^8 + 2^6 + 2^4 - 1"
"r2": 185761
"r2_hex": "0x2d5a1"
"r2_bit": "2^18 - 2^16 - 2^13 - 2^11 - 2^9 - 2^7 + 2^5 + 1"
"znprimroot": 3
- "n": 19807040628566084398385986801
"n_hex": "0x3ffffffffffffffffffffcf1"
"n_bit": "2^94 - 2^10 + 2^8 - 2^4 + 1"
"n_fac": "2^4 * 3 * 5^2 * 137 * 120480782412202459844197c + 1"
"nd": 6273494349788491610216762351
"nd_hex": "0x1445501a27e33a860c6c8bef"
"nd_bit": "2^92 + 2^90 + 2^86 + 2^82 + 2^80 + 2^78 + 2^76 + 2^69 - 2^67 + 2^65 + 2^61 + 2^59 - 2^53 + 2^50 - 2^48 + 2^46 - 2^43 + 2^41 + 2^39 + 2^35 - 2^33 + 2^28 - 2^26 + 2^23 - 2^20 - 2^18 + 2^15 + 2^12 - 2^10 - 2^4 - 1"
"r2": 613089
"r2_hex": "0x95ae1"
"r2_bit": "2^19 + 2^17 - 2^15 - 2^13 - 2^10 - 2^8 - 2^5 + 1"
"znprimroot": 7
- "n": 19807040628566084398385981521
"n_hex": "0x3fffffffffffffffffffe851"
"n_bit": "2^94 - 2^13 + 2^11 + 2^6 + 2^4 + 1"
"n_fac": "2^4 * 3^4 * 5 * 7 * 5477 * 79726703156305092091c + 1"
"nd": 13011948346293701823976808271
"nd_hex": "0x2a0b3b3d441b311b10ad9f4f"
"nd_bit": "2^93 + 2^91 + 2^89 + 2^84 - 2^82 - 2^80 + 2^78 - 2^74 - 2^72 + 2^70 - 2^66 + 2^64 + 2^62 + 2^58 + 2^53 - 2^50 - 2^48 + 2^46 - 2^44 + 2^40 + 2^37 - 2^34 - 2^32 + 2^28 + 2^24 - 2^22 - 2^20 - 2^17 - 2^15 + 2^13 - 2^8 + 2^6 + 2^4 - 1"
"r2": 36759969
"r2_hex": "0x230e9a1"
"r2_bit": "2^25 + 2^22 - 2^20 + 2^16 - 2^13 + 2^11 + 2^9 - 2^7 + 2^5 + 1"
"znprimroot": 39
- "n": 19807040628566084398385985697
"n_hex": "0x3ffffffffffffffffffff8a1"
"n_bit": "2^94 - 2^11 + 2^7 + 2^5 + 1"
"n_fac": "2^5 * 3^2 * 68774446626965570827729117c + 1"
"nd": 7452569605872771554241680543
"nd_hex": "0x18149effdd450db3c198149f"
"nd_bit": "2^93 - 2^91 + 2^84 + 2^82 + 2^79 + 2^77 - 2^72 - 2^61 - 2^58 + 2^56 + 2^54 + 2^50 + 2^48 + 2^44 - 2^41 - 2^38 - 2^36 + 2^34 - 2^30 + 2^25 - 2^23 + 2^21 - 2^19 + 2^12 + 2^10 + 2^7 + 2^5 - 1"
"r2": 3560769
"r2_hex": "0x365541"
"r2_bit": "2^22 - 2^19 - 2^17 + 2^14 + 2^12 + 2^10 + 2^8 + 2^6 + 1"
"znprimroot": 5
- "n": 19807040628566084398385969761
"n_hex": "0x3fffffffffffffffffffba61"
"n_bit": "2^94 - 2^14 - 2^11 + 2^9 + 2^7 - 2^5 + 1"
"n_fac": "2^5 * 3 * 5 * 7 * 97 * 1277 * 47590216826047036439 + 1"
"nd": 3289504587362150581788841567
"nd_hex": "0xaa103b1003e8281a505965f"
"nd_bit": "2^91 + 2^89 + 2^87 + 2^85 + 2^80 + 2^74 - 2^70 - 2^68 + 2^64 + 2^54 - 2^49 + 2^47 + 2^41 + 2^39 + 2^33 - 2^31 + 2^29 + 2^26 + 2^24 + 2^19 - 2^17 - 2^15 + 2^13 - 2^11 - 2^9 + 2^7 - 2^5 - 1"
"r2": 317659329
"r2_hex": "0x12ef18c1"
"r2_bit": "2^28 + 2^26 - 2^24 - 2^20 - 2^16 + 2^13 - 2^11 + 2^8 - 2^6 + 1"
"znprimroot": 33
- "n": 19807040628566084398385939041
"n_hex": "0x3fffffffffffffffffff4261"
"n_bit": "2^94 - 2^16 + 2^14 + 2^9 + 2^7 - 2^5 + 1"
"n_fac": "2^5 * 3^2 * 5 * 13754889325393114165545791c + 1"
"nd": 11217175574643310594648645215
"nd_hex": "0x243ea1525be628b3c4df1e5f"
"nd_bit": "2^93 + 2^90 + 2^86 - 2^81 + 2^79 + 2^77 + 2^72 + 2^70 + 2^68 + 2^65 + 2^63 - 2^61 - 2^58 - 2^53 + 2^51 - 2^49 + 2^45 + 2^43 + 2^40 - 2^38 - 2^36 + 2^34 - 2^30 + 2^26 + 2^24 - 2^21 - 2^16 + 2^13 - 2^9 + 2^7 - 2^5 - 1"
"r2": 2356422849
"r2_hex": "0x8c7428c1"
"r2_bit": "2^31 + 2^28 - 2^26 + 2^23 - 2^20 + 2^18 + 2^13 + 2^11 + 2^8 - 2^6 + 1"
"znprimroot": 17
- "n": 19807040628566084398385895841
"n_hex": "0x3ffffffffffffffffffe99a1"
"n_bit": "2^94 - 2^17 + 2^15 + 2^13 - 2^11 + 2^9 - 2^7 + 2^5 + 1"
"n_fac": "2^5 * 3^2 * 5 * 7 * 37 * 83 * 227 * 293 * 607 * 3461 * 4579261829 + 1"
"nd": 1804251425535754960240145823
"nd_hex": "0x5d47119c3882e18f3a8759f"
"nd_bit": "2^91 - 2^89 - 2^86 + 2^84 + 2^82 + 2^79 - 2^76 + 2^72 + 2^69 - 2^67 + 2^65 - 2^62 + 2^58 - 2^55 + 2^51 + 2^46 - 2^44 - 2^41 + 2^37 - 2^35 + 2^32 - 2^28 + 2^26 - 2^23 + 2^21 + 2^19 + 2^15 - 2^11 - 2^9 - 2^7 + 2^5 - 1"
"r2": 8416778049
"r2_hex": "0x1f5add741"
"r2_bit": "2^33 - 2^27 - 2^25 - 2^22 - 2^20 - 2^17 - 2^13 - 2^11 - 2^8 + 2^6 + 1"
"znprimroot": 26
- "n": 19807040628566084398385885761
"n_hex": "0x3ffffffffffffffffffe7241"
"n_bit": "2^94 - 2^17 + 2^15 - 2^12 + 2^9 + 2^6 + 1"
"n_fac": "2^6 * 3^2 * 5 * 7 * 59 * 16652408384253164849329 + 1"
"nd": 18340327937529793222877209151
"nd_hex": "0x3b42c381b2c513524565623f"
"nd_bit": "2^94 - 2^90 - 2^88 + 2^86 + 2^82 - 2^80 - 2^78 + 2^74 - 2^71 + 2^65 - 2^62 - 2^60 + 2^58 - 2^56 - 2^54 + 2^50 + 2^48 + 2^44 + 2^42 - 2^40 + 2^38 + 2^36 + 2^33 + 2^30 + 2^27 - 2^25 - 2^23 - 2^21 + 2^19 - 2^17 - 2^15 - 2^13 + 2^9 + 2^6 - 1"
"r2": 10367923329
"r2_hex": "0x269f9f481"
"r2_bit": "2^33 + 2^31 - 2^29 + 2^27 + 2^25 - 2^19 + 2^17 - 2^12 + 2^10 + 2^7 + 1"
"znprimroot": 17
- "n": 19807040628566084398385985409
"n_hex": "0x3ffffffffffffffffffff781"
"n_bit": "2^94 - 2^11 - 2^7 + 1"
"n_fac": "2^7 * 3^4 * 1910401295193488078548031c + 1"
"nd": 1466176340781213603742594943
"nd_hex": "0x4bccaeab23315118997b77f"
"nd_bit": "2^90 + 2^88 - 2^86 - 2^82 + 2^80 - 2^78 + 2^76 - 2^74 - 2^72 - 2^68 - 2^66 - 2^64 - 2^62 - 2^60 + 2^57 + 2^54 - 2^52 + 2^50 - 2^48 + 2^44 + 2^42 + 2^40 + 2^36 + 2^33 - 2^31 + 2^27 + 2^25 - 2^23 + 2^21 - 2^19 - 2^14 - 2^11 - 2^7 - 1"
"r2": 4730625
"r2_hex": "0x482f01"
"r2_bit": "2^22 + 2^19 + 2^14 - 2^12 - 2^8 + 1"
"znprimroot": 11
- "n": 19807040628566084398385934721
"n_hex": "0x3fffffffffffffffffff3181"
"n_bit": "2^94 - 2^16 + 2^14 - 2^12 + 2^9 - 2^7 + 1"
"n_fac": "2^7 * 3^2 * 5 * 3438722331348278541386447c + 1"
"nd": 3928210921625462588817863039
"nd_hex": "0xcb15704c2a84dad50ccf17f"
"nd_bit": "2^92 - 2^90 + 2^88 - 2^86 - 2^84 + 2^81 - 2^79 - 2^77 - 2^75 - 2^72 + 2^66 + 2^64 - 2^62 + 2^57 + 2^55 + 2^53 + 2^51 + 2^46 + 2^44 - 2^41 - 2^38 - 2^36 - 2^34 + 2^32 + 2^30 + 2^28 + 2^24 - 2^22 + 2^20 - 2^18 + 2^16 - 2^12 + 2^9 - 2^7 - 1"
"r2": 2794496769
"r2_hex": "0xa690a301"
"r2_bit": "2^31 + 2^29 + 2^27 - 2^25 + 2^23 + 2^20 + 2^15 + 2^13 + 2^10 - 2^8 + 1"
"znprimroot": 11
- "n": 19807040628566084398385784961
"n_hex": "0x3ffffffffffffffffffce881"
"n_bit": "2^94 - 2^18 + 2^16 - 2^13 + 2^11 + 2^7 + 1"
"n_fac": "2^7 * 3^3 * 5 * 7 * 163748682445156121018401 + 1"
"nd": 3145403761198733103778277503
"nd_hex": "0xa29d1278fd1488d6ef4a87f"
"nd_bit": "2^91 + 2^89 + 2^85 + 2^83 + 2^81 - 2^78 + 2^76 + 2^72 + 2^69 + 2^67 - 2^63 + 2^60 - 2^54 + 2^52 + 2^48 + 2^46 + 2^43 + 2^39 + 2^36 - 2^33 - 2^31 - 2^28 - 2^24 - 2^20 + 2^18 + 2^15 + 2^13 + 2^11 + 2^7 - 1"
"r2": 41056080129
"r2_hex": "0x98f221101"
"r2_bit": "2^35 + 2^33 - 2^31 + 2^28 - 2^24 + 2^21 + 2^17 + 2^12 + 2^8 + 1"
"znprimroot": 11
- "n": 19807040628566084398385985281
"n_hex": "0x3ffffffffffffffffffff701"
"n_bit": "2^94 - 2^11 - 2^8 + 1"
"n_fac": "2^8 * 5 * 11 * 53 * 97 * 211 * 1296841436092225391c + 1"
"nd": 15257355655699623848344221439
"nd_hex": "0x314c96bb6a283d5c26aef6ff"
"nd_bit": "2^94 - 2^92 + 2^88 + 2^86 + 2^84 - 2^82 + 2^79 + 2^77 - 2^75 - 2^72 - 2^70 - 2^66 - 2^63 - 2^61 + 2^59 + 2^57 + 2^53 + 2^51 + 2^46 - 2^41 - 2^39 - 2^37 - 2^34 + 2^29 + 2^27 - 2^24 - 2^22 - 2^20 - 2^16 - 2^11 - 2^8 - 1"
"r2": 5303809
"r2_hex": "0x50ee01"
"r2_bit": "2^22 + 2^20 + 2^16 - 2^12 - 2^9 + 1"
"znprimroot": 3
- "n": 19807040628566084398385956609
"n_hex": "0x3fffffffffffffffffff8701"
"n_bit": "2^94 - 2^15 + 2^11 - 2^8 + 1"
"n_fac": "2^8 * 3^2 * 13 * 23 * 28751858957761526265773c + 1"
"nd": 13963084395976400933758076671
"nd_hex": "0x2d1dfe21d5f730969dce86ff"
"nd_bit": "2^94 - 2^92 - 2^90 + 2^88 + 2^85 - 2^81 - 2^73 + 2^69 + 2^65 - 2^61 - 2^59 - 2^57 - 2^51 - 2^48 + 2^46 - 2^44 + 2^39 + 2^37 - 2^35 - 2^33 + 2^31 + 2^29 - 2^25 - 2^22 + 2^20 - 2^17 + 2^15 + 2^11 - 2^8 - 1"
"r2": 959450625
"r2_hex": "0x39300e01"
"r2_bit": "2^30 - 2^27 + 2^24 + 2^22 - 2^20 + 2^12 - 2^9 + 1"
"znprimroot": 11
- "n": 19807040628566084398385944321
"n_hex": "0x3fffffffffffffffffff5701"
"n_bit": "2^94 - 2^15 - 2^13 - 2^11 - 2^8 + 1"
"n_fac": "2^8 * 3 * 5 * 5158083497022417812079673c + 1"
"nd": 9957315179961717162020591359
"nd_hex": "0x202c7f818309dd37d76e56ff"
"nd_bit": "2^93 + 2^86 - 2^84 - 2^82 + 2^79 - 2^71 + 2^65 - 2^63 + 2^58 - 2^56 + 2^51 + 2^49 - 2^45 - 2^42 + 2^40 + 2^38 - 2^35 - 2^29 - 2^27 - 2^23 - 2^20 - 2^17 + 2^15 - 2^13 - 2^11 - 2^8 - 1"
"r2": 1871687169
"r2_hex": "0x6f8fae01"
"r2_bit": "2^31 - 2^28 - 2^23 + 2^20 - 2^14 - 2^12 - 2^9 + 1"
"znprimroot": 7
- "n": 19807040628566084398385970689
"n_hex": "0x3fffffffffffffffffffbe01"
"n_bit": "2^94 - 2^14 - 2^9 + 1"
"n_fac": "2^9 * 38685626227668133590597599c + 1"
"nd": 12099938817841406160150445567
"nd_hex": "0x2718d5b5a98a538ce6fbbdff"
"nd_bit": "2^93 + 2^91 - 2^88 + 2^85 - 2^83 + 2^80 - 2^77 - 2^75 - 2^73 - 2^70 - 2^67 - 2^65 - 2^63 + 2^61 + 2^59 + 2^57 - 2^55 + 2^51 + 2^49 + 2^46 + 2^44 + 2^42 - 2^39 + 2^36 - 2^34 + 2^32 - 2^29 + 2^27 - 2^24 - 2^18 - 2^14 - 2^9 - 1"
"r2": 285441025
"r2_hex": "0x11037c01"
"r2_bit": "2^28 + 2^24 + 2^18 - 2^15 - 2^10 + 1"
"znprimroot": 3
- "n": 19807040628566084398385932801
"n_hex": "0x3fffffffffffffffffff2a01"
"n_bit": "2^94 - 2^16 + 2^13 + 2^11 + 2^9 + 1"
"n_fac": "2^9 * 3 * 5^2 * 7 * 73686907100320254458281c + 1"
"nd": 12458083692724048885880400383
"nd_hex": "0x284115d63b9e2f64b51b29ff"
"nd_bit": "2^93 + 2^91 + 2^86 + 2^80 + 2^77 - 2^75 - 2^73 - 2^69 - 2^67 - 2^65 + 2^62 - 2^58 - 2^55 + 2^53 - 2^49 + 2^46 - 2^44 - 2^39 - 2^37 + 2^34 + 2^32 - 2^30 - 2^28 + 2^26 + 2^24 + 2^21 - 2^18 - 2^16 + 2^13 + 2^11 + 2^9 - 1"
"r2": 3001177089
"r2_hex": "0xb2e25401"
"r2_bit": "2^32 - 2^30 - 2^28 + 2^26 - 2^24 - 2^21 + 2^17 + 2^14 + 2^12 + 2^10 + 1"
"znprimroot": 22
- "n": 19807040628566084398385687041
"n_hex": "0x3ffffffffffffffffffb6a01"
"n_bit": "2^94 - 2^18 - 2^15 - 2^13 + 2^11 + 2^9 + 1"
"n_fac": "2^9 * 3^2 * 5 * 13 * 66129275602851510411277c + 1"
"nd": 14852496019726946262073174527
"nd_hex": "0x2ffdb25e922deaab601769ff"
"nd_bit": "2^94 - 2^92 - 2^81 - 2^78 - 2^76 + 2^73 + 2^71 - 2^69 - 2^65 + 2^63 + 2^60 + 2^57 + 2^54 - 2^52 - 2^49 - 2^44 - 2^42 - 2^40 - 2^38 - 2^36 - 2^34 - 2^31 - 2^29 + 2^21 - 2^19 - 2^15 - 2^13 + 2^11 + 2^9 - 1"
"r2": 90326094849
"r2_hex": "0x1507dad401"
"r2_bit": "2^36 + 2^34 + 2^32 + 2^27 - 2^21 - 2^18 - 2^16 - 2^14 + 2^12 + 2^10 + 1"
"znprimroot": 53
- "n": 19807040628566084398385851393
"n_hex": "0x3ffffffffffffffffffdec01"
"n_bit": "2^94 - 2^17 - 2^12 - 2^10 + 1"
"n_fac": "2^10 * 3 * 6447604371278022265099561c + 1"
"nd": 11014867620369257396454681599
"nd_hex": "0x239748f22ea6957c6e6debff"
"nd_bit": "2^93 + 2^90 - 2^87 + 2^85 - 2^83 - 2^80 + 2^78 + 2^75 + 2^72 - 2^68 + 2^65 + 2^62 - 2^60 - 2^57 + 2^55 + 2^53 + 2^51 - 2^49 + 2^47 + 2^45 - 2^43 - 2^41 - 2^39 - 2^34 + 2^31 - 2^28 - 2^25 + 2^23 - 2^20 - 2^17 - 2^12 - 2^10 - 1"
"r2": 18547988481
"r2_hex": "0x4518bd801"
"r2_bit": "2^34 + 2^30 + 2^28 + 2^25 - 2^23 + 2^20 - 2^18 - 2^13 - 2^11 + 1"
"znprimroot": 5
- "n": 19807040628566084398385648641
"n_hex": "0x3ffffffffffffffffffad401"
"n_bit": "2^94 - 2^18 - 2^16 - 2^14 + 2^12 + 2^10 + 1"
"n_fac": "2^10 * 3 * 5 * 353 * 3653033638117859640283c + 1"
"nd": 16900993525017809877161661439
"nd_hex": "0x369c2c96d9717828806ad3ff"
"nd_bit": "2^94 - 2^91 - 2^89 + 2^87 + 2^85 - 2^82 + 2^78 - 2^76 - 2^74 + 2^71 + 2^69 - 2^67 - 2^64 - 2^61 - 2^59 + 2^57 - 2^55 - 2^52 + 2^49 - 2^47 - 2^43 + 2^37 + 2^35 + 2^31 + 2^23 - 2^20 - 2^18 - 2^16 - 2^14 + 2^12 + 2^10 - 1"
"r2": 114882357249
"r2_hex": "0x1abf85a801"
"r2_bit": "2^37 - 2^34 - 2^32 - 2^30 - 2^23 + 2^19 - 2^17 - 2^15 + 2^13 + 2^11 + 1"
"znprimroot": 7
- "n": 19807040628566084398385341441
"n_hex": "0x3ffffffffffffffffff62401"
"n_bit": "2^94 - 2^19 - 2^17 + 2^13 + 2^10 + 1"
"n_fac": "2^10 * 3^2 * 5 * 7 * 41 * 1497701363827647448339c + 1"
"nd": 17360155655652345506456544255
"nd_hex": "0x3817fbf3d3c5f7750ae623ff"
"nd_bit": "2^94 - 2^91 + 2^85 - 2^83 - 2^74 - 2^68 + 2^66 - 2^62 + 2^60 + 2^58 - 2^54 + 2^51 - 2^49 - 2^43 - 2^39 - 2^36 + 2^34 + 2^32 + 2^28 - 2^26 - 2^24 - 2^21 + 2^19 - 2^17 + 2^13 + 2^10 - 1"
"r2": 417500776449
"r2_hex": "0x6134fc4801"
"r2_bit": "2^39 - 2^37 + 2^32 + 2^30 - 2^28 + 2^26 + 2^24 - 2^18 + 2^14 + 2^11 + 1"
"znprimroot": 11
- "n": 1980704
View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment