OFFSET
1,2
COMMENTS
Sequence A206027 has the number of solutions.
LINKS
Donovan Johnson, Table of n, a(n) for n = 1..100
EXAMPLE
sigma(m)=1 has only one solution: m=1.
sigma(m)=12 has two solutions, m=6 and m=11; 12 is the smallest number with more than one such solutions.
sigma(m)=24 has three solutions, m=14,m=15 and m=23; 24 is the smallest number with more than two such solutions.
sigma(m)=72 has five solutions, m=30, m=46, m=51, m=55 and m=71; 72 is the smallest number with more than three such solutions.
MATHEMATICA
t = DivisorSigma[1, Range[10^6]]; t2 = Sort[Tally[t]]; mn = 0; t3 = {}; Do[If[t2[[n]][[2]] > mn, mn = t2[[n]][[2]]; AppendTo[t3, t2[[n]][[1]]]], {n, Length[t2]}]; t3 (* T. D. Noe, Feb 03 2012 *)
PROG
(PARI) {m=3650000; v=vectorsmall(m); for(n=1, m, s=sigma(n); if(s<=m, v[s]++)); g=0; j=1; while(j<=m, if(v[j]<=g, j++, g=v[j]; print1(j, ", ")))} \\ Klaus Brockhaus, Oct 27 2008
CROSSREFS
KEYWORD
nonn
AUTHOR
Douglas E. Iannucci, Oct 22 2008
EXTENSIONS
Extended beyond a(15) by Klaus Brockhaus, Oct 27 2008
STATUS
approved