A382119 Numbers k = x*y such that (x*2^k - 1)*(y*2^k - 1) is semiprime.
2, 3, 4, 6, 16, 126
Offset: 1
Examples
2 = 1*2, 3 = 1*3, 4 = 2*2, 6 = 2*3, 16 = 2*8, 126 = 2*63.
Programs
-
Magma
[n: n in [1..1000] | not #[d: d in Divisors(n) | IsPrime(d*2^n-1) and IsPrime((n div d)*2^n-1)] eq 0];
Comments