A367229 Fermat pseudoprimes to base 2 that are products of two Mersenne numbers (not necessarily distinct) that are larger than 1.
1905, 15841, 129921, 8322945, 66977281, 4395899025409, 4398012825601, 140735340806145, 36892925197465616385, 2342736497361113055105, 4951750712408555360305545217, 39304596247310823728047193985, 2535301191011725837253847547905, 1298074214624262174166747352924161
Offset: 1
Keywords
Examples
a(1) = 1905 = (2^4-1) * (2^7-1). a(2) = 15841 = (2^5-1) * (2^9-1).
Links
- Amiram Eldar, Table of n, a(n) for n = 1..242
- Andrzej Rotkiewicz and Andrzej Makowski, On Pseudoprime Numbers of the Form M_p M_t, Elemente der Mathematik, Vol. 21 (1966), pp. 133-134.
- Kazimierz Szymiczek, On prime numbers p,q and r such that pq, pr, and qr are pseudoprimes, Colloquium Mathematicum, Vol. 13 (1964), pp. 259-263; alternative link.
Programs
-
Mathematica
With[{max = 110}, m = 2^Range[2, max] - 1; Sort@ Select[Times @@@ Subsets[m, {2}], # < m[[-1]] && PowerMod[2, # - 1, #] == 1 &]]
Comments