OFFSET
1,1
COMMENTS
The semiprimes must be squarefree, since p1 does not divide p2. - Michael De Vlieger, Apr 12 2018
LINKS
John Cerkan, Table of n, a(n) for n = 1..10000
MATHEMATICA
Select[Range@ 2215, And[#[[All, -1]] == {1, 1}, Mod[#2, #1] == 3 & @@ #[[All, 1]]] &@ FactorInteger[#] &] (* Michael De Vlieger, Apr 12 2018 *)
PROG
(Python)
from sympy import factorint
def is_A064901(n):
f = factorint(n)
return (sum([f[i] for i in f]) == 2) and (max(f) % min(f) == 3)
def first_A064901(n):
x = 1
an = []
while len(an) < n:
if is_A064901(x): an.append(x)
x += 2
return an # John Cerkan, Apr 14 2018
(PARI) isok(n) = my(f = factor(n)); (#f~ == 2) && (vecmax(f[, 2]) < 2) && ((f[2, 1] % f[1, 1]) == 3); \\ Michel Marcus, Apr 16 2018
CROSSREFS
KEYWORD
nonn
AUTHOR
Patrick De Geest, Oct 13 2001
EXTENSIONS
Name clarified by John Cerkan, Apr 13 2018
STATUS
approved