OFFSET
1,1
COMMENTS
Semiprimes k such that A019320(k) is prime.
Numbers of the form p^2 where (2^(p^2) - 1)/(2^p - 1) is prime, or numbers of the form p*q where (2^(p*q) - 1)/((2^p - 1)*(2^q - 1)) is prime. Here p and q are necessarily primes.
LINKS
Jianing Song, Table of n, a(n) for n = 1..78 (using data from A072226)
EXAMPLE
15 is a semiprime and Phi_15(2) = (2^15 - 1)/((2^3 - 1)*(2^5 - 1)) = 151 is prime, so 15 is a term. Here Phi_n is the n-th cyclotomic polynomial.
49 is a semiprime and Phi_49(2) = (2^49 - 1)/(2^7 - 1) = 4432676798593 is prime, so 49 is a term.
PROG
(PARI) for(k=1, 1000, if(isprime(polcyclo(k, 2))&&bigomega(k)==2, print1(k, ", ")))
CROSSREFS
KEYWORD
nonn
AUTHOR
Jianing Song, Jan 22 2019
STATUS
approved