OFFSET
1,2
COMMENTS
It appears that (a) all the numbers are squares, (b) the number of divisors is a power of 3.
It can be shown that this is a subset of A028982.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
EXAMPLE
k=100 has 9 divisors whose sum is 217 = 7*31 and whose sum of cubes is 1149823 = 19*73*829; gcd(217, 1149823) = 1, so 100 is in the sequence.
MATHEMATICA
Select[Range[20000], GCD[DivisorSigma[1, #], DivisorSigma[3, #]]==1&] (* Harvey P. Dale, Feb 19 2011 *)
PROG
(PARI) isok(n) = gcd(sigma(n), sigma(n, 3)) == 1; \\ Michel Marcus, May 14 2018
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved