OFFSET
1,1
COMMENTS
Integers k that have exactly two distinct prime factors p_i, p_j with exponents e_i, e_j satisfying i/e_i + j/e_j = 1 where i, j are the 1-based indices of the primes (A000040).
EXAMPLE
For k = 216 = 2^3 * 3^3 we have 1/3 + 2/3 = 1 thus k = 216 is a term.
For k = 941192 = 2^3 * 7^6 we have 1/3 + 4/6 = 1 thus k = 941192 is a term.
PROG
(PARI) isok(k) = my(f=factor(k)); (#f~ == 2) && (sum(i=1, #f~, primepi(f[i, 1])/f[i, 2]) == 1); \\ Michel Marcus, Oct 14 2025
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Ctibor O. Zizka, Oct 13 2025
STATUS
approved
