login
A046680
Numbers k such that the number of divisors of k and sum of cubes of divisors of k are relatively prime.
7
1, 2, 4, 8, 9, 16, 25, 36, 81, 100, 121, 128, 144, 162, 225, 256, 289, 324, 400, 484, 512, 529, 625, 729, 841, 900, 1024, 1089, 1156, 1250, 1296, 1458, 1681, 1936, 2025, 2116, 2209, 2304, 2401, 2500, 2601, 2809, 2916, 3025, 3364, 3481, 3600, 4096, 4356, 4624
OFFSET
1,2
COMMENTS
It can be shown that this is a subsequence of A028982.
LINKS
MATHEMATICA
Select[Range[5000], CoprimeQ[DivisorSigma[0, #], DivisorSigma[3, #]] &] (* Amiram Eldar, Aug 08 2019 *)
PROG
(PARI) isok(n) = gcd(numdiv(n), sigma(n, 3)) == 1; \\ Michel Marcus, Sep 24 2019
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved