OFFSET
1,1
COMMENTS
The coreful divisors of a number k are the divisors of k that have the same set of distinct prime factors as k (see A307958).
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
MATHEMATICA
pows[max_] := Union[Flatten[Table[i^2*j^3, {j, 1, Surd[max, 3]}, {i, 1, Sqrt[max/j^3]}]]];
f[p_, e_] := ((p^(e + 1) - 1)/(p - 1) - 1)/e;
q[n_] := !IntegerQ[Times @@ f @@@ FactorInteger[n]]; q[1] = False;
seq[max_] := Select[pows[max], q]; seq[8000]
PROG
(PARI) is1(k) = {my(f = factor(k), p, e); denominator(prod(i = 1, #f~, p = f[i, 1]; e = f[i, 2]; ((p^(e+1)-1)/(p-1)-1)/e)) > 1; }
list(lim) = {my(s = List(), m); for(j = 1, sqrtnint(lim, 3), for(i = 1, sqrtint(lim\j^3), m = i^2*j^3; if(is1(m), listput(s, m)))); Set(s); }
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Amiram Eldar, Oct 07 2025
STATUS
approved
