A333258 Numbers k that are not powers of primes such that the sum of proper unitary divisors of k is a cube.
10, 12, 69, 122, 133, 153, 236, 363, 504, 752, 844, 992, 1001, 1018, 1243, 1685, 1819, 1940, 1994, 2295, 2323, 2619, 2871, 2900, 3184, 3403, 3483, 3641, 3763, 3981, 3984, 4024, 5482, 6471, 6892, 7128, 7925, 7928, 8186, 8856, 9077, 9352, 9641, 9664, 10113, 10404
Offset: 1
Keywords
Examples
10 is a term since A034460(10) = 8 = 2^3.
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
usigma[1] = 1; usigma[n_] := Times @@ (1 + Power @@@ FactorInteger[n]); us[n_] := usigma[n] - n; Select[Range[10000], PrimeNu[#] > 1 && IntegerQ @ Surd[us [#], 3] &]
Comments