A336719 Largest odd prime p for which the order of 2 mod p is at most n.
3, 7, 7, 31, 31, 127, 127, 127, 127, 127, 127, 8191, 8191, 8191, 8191, 131071, 131071, 524287, 524287, 524287, 524287, 524287, 524287, 524287, 524287, 524287, 524287, 524287, 524287, 2147483647, 2147483647, 2147483647, 2147483647, 2147483647, 2147483647
Offset: 2
Keywords
Links
- Jeppe Stig Nielsen, Table of n, a(n) for n = 2..251
Programs
-
PARI
re=0;for(n=2,+oo,p=vecmax(factor(2^n-1)[,1]);p>re&&re=p;print1(re,", "))
Comments