OFFSET
1,2
COMMENTS
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..100
C. K. Caldwell, The Prime Glossary, Number of divisors
Wacław Sierpiński, Number Of Divisors And Their Sum, Elementary theory of numbers, Warszawa, 1964.
EXAMPLE
tau(3) = 2, sigma(2) = 3 and rad(3) = 3. tau(135) = 8, sigma(8) = 15 and rad(135) = 15. tau(14406) = 20, sigma(20) = 42 and rad(14406) = 42.
MAPLE
with(numtheory):for n from 1 to 1000000 do : t1:= ifactors(n)[2] : t2 :=sum(t1[i][1], i=1..nops(t1)):if sigma(tau(n)) = t2 then print (n): else fi : od :
MATHEMATICA
Select[Range[500000], DivisorSigma[1, DivisorSigma[0, #]] == Times @@ (First@# & /@ FactorInteger[#]) &] (* Amiram Eldar, Jul 11 2019 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Michel Lagneau, Feb 22 2010
EXTENSIONS
a(20)-a(34) from Donovan Johnson, Jan 14 2012
STATUS
approved