OFFSET
1,1
COMMENTS
p^m are members of the sequence, where p is prime and m different from k(4k-1) and k(4k+1) (spatially all primes, p^1).
Complement of A072327 in the positive integers. - Robert Israel, Dec 10 2024
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
MAPLE
filter:= proc(n) local s, F, d, p;
s:= n^2;
F:= sort(convert(numtheory:-divisors(s), list));
p:= 1:
for d in F do
p:= p*d;
if p > s then return true
elif p = s then return false
fi
od;
end proc:
select(filter, [$1..100]); # Robert Israel, Dec 10 2024
CROSSREFS
KEYWORD
nonn
AUTHOR
Vladimir Baltic, Aug 04 2002
STATUS
approved