login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A145899 Numbers n such that sigma(x) = n has more solutions x than any smaller n. 11

%I #25 Aug 30 2015 04:07:23

%S 1,12,24,72,168,240,336,360,504,576,720,1440,2880,4320,5760,8640,

%T 10080,15120,17280,20160,30240,40320,60480,120960,181440,241920,

%U 362880,483840,604800,725760,1088640,1209600,1451520,2177280,2419200,2903040,3628800

%N Numbers n such that sigma(x) = n has more solutions x than any smaller n.

%C Sequence A206027 has the number of solutions.

%H Donovan Johnson, <a href="/A145899/b145899.txt">Table of n, a(n) for n = 1..100</a>

%e sigma(m)=1 has only one solution: m=1.

%e sigma(m)=12 has two solutions, m=6 and m=11; 12 is the smallest number with more than one such solutions.

%e sigma(m)=24 has three solutions, m=14,m=15 and m=23; 24 is the smallest number with more than two such solutions.

%e 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.

%t 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 *)

%o (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

%Y Cf. A000203 (sum of divisors of n), A054973 (number of numbers whose divisors sum to n), A007368 (smallest k such that sigma(x) = k has exactly n solutions).

%Y Cf. A206027.

%Y Cf. Untouchable numbers (A005114), sigma-untouchable numbers (A007369) and highly touchable numbers (A238895).

%K nonn

%O 1,2

%A _Douglas E. Iannucci_, Oct 22 2008

%E Extended beyond a(15) by _Klaus Brockhaus_, Oct 27 2008

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 04:14 EDT 2024. Contains 371918 sequences. (Running on oeis4.)