cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-2 of 2 results.

A141629 a(n) is the least base-2 overpseudoprime k such that the multiplicative order of 2 mod k equals 8*n+20.

Original entry on oeis.org

3277, 4033, 838861, 8321, 80581, 130561, 104653, 20647621, 280601, 818201, 68719214593, 57646075230342349, 48448661, 1353244757701, 351479006145541, 88357, 390937, 1846171781, 17585969, 9774181, 28147501026509, 3882413703281, 1251949, 9007199388958721
Offset: 1

Views

Author

Vladimir Shevelev, Aug 24 2008

Keywords

Comments

C. Pomerance proved (private correspondence) that for every n>=1 there exists at least one overpseudoprime (a(n)) for which the multiplicative order of 2 mod a(n) equals 8n+20.
a(25) > 2^64. - Amiram Eldar, Nov 09 2023

Crossrefs

Extensions

a(4) corrected and a(12)-a(24) added by Amiram Eldar, Nov 09 2023

A297625 Primes of the form (2^(p^k) - 1)/(2^(p^(k - 1)) - 1), with p prime and k > 1.

Original entry on oeis.org

5, 17, 73, 257, 65537, 262657, 4432676798593
Offset: 1

Views

Author

Arkadiusz Wesolowski, Jan 04 2018

Keywords

Comments

Primes of the form Phi(x, 2), where x is a proper prime power and Phi is the cyclotomic polynomial.
Together with 3, supersequence of A019434.
Also called Mersenne-Fermat primes.
a(8) has 1031 digits and is too large to include.

References

  • Fredrick Kennard, Unsolved Problems in Mathematics, Lulu Press, 2015, p. 160.

Crossrefs

Programs

  • Magma
    lst:=[]; r:=7; pr:=PrimesUpTo(r); for k in [2..r] do for c in [1..#pr] do p:=pr[c]; if p^k le r^2 then MF:=Truncate((2^(p^k)-1)/(2^(p^(k-1))-1)); if IsPrime(MF) then Append(~lst, MF); end if; end if; end for; end for; Sort(lst);
Showing 1-2 of 2 results.