A078511 Numbers k such that sopfr(k)=tau(k).
2, 60, 72, 168, 270, 450, 560, 990, 1056, 1188, 1470, 2496, 3200, 3402, 3520, 3672, 4788, 5700, 8320, 9856, 9936, 10164, 10395, 11000, 11160, 12180, 12740, 13056, 13720, 14616, 16524, 17400, 17940, 18522, 19380, 20000, 20475, 21252, 21528
Offset: 1
Keywords
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
s = {}; Do[If[DivisorSigma[0, n] == Total[Times @@@ FactorInteger[n]], AppendTo[s, n]], {n, 2, 22000}]; s (* Amiram Eldar, Jun 22 2019 *)
-
PARI
isok(n) = {my(f = factor(n)); sum(i=1, #f~, f[i,1]*f[i,2]) == numdiv(n);} \\ Michel Marcus, Feb 11 2015
Comments