OFFSET
1,1
COMMENTS
As the product of any two primes is semiprime by definition, this is also the list of composite numbers n=x*y where both x and y are Mersenne primes. - Christian N. K. Anderson, Mar 25 2013
LINKS
Christian N. K. Anderson, Table of n, a(n) for n = 1..75
MATHEMATICA
Take[Times@@@Tuples[2^# -1&/@MersennePrimeExponent[Range[10]], 2]//Union, 30] (* Requires Mathematica version 10 or later *) (* Harvey P. Dale, Dec 30 2020 *)
PROG
(PARI)
isA000668(n) = (isprime(n)&&!bitand(n, 1+n));
isA144482(n) = ((2==bigomega(n))&&isA000668(vecmin(factor(n)[, 1]))&&isA000668(vecmax(factor(n)[, 1]))); \\ Antti Karttunen, Jun 28 2020
CROSSREFS
KEYWORD
nonn
AUTHOR
G. L. Honaker, Jr., Oct 12 2008
STATUS
approved