OFFSET
1,1
COMMENTS
EXAMPLE
a(4) = 24 is a term because A002808(24), the 24th composite number, is 36, and the primes 2 and 3 that divide 36 also divide 24.
MAPLE
R:= NULL: n:= 0: count:= 0:
for i from 4 while count < 100 do
if not isprime(i) then
n:= n+1;
if map(t -> n mod t, numtheory:-factorset(i)) = {0} then
count:= count+1; R:= R, n;
fi
fi
od:
R;
CROSSREFS
KEYWORD
nonn
AUTHOR
Robert Israel, Dec 20 2023
STATUS
approved