The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A211224 Least k with precisely n partitions k = x + y satisfying sigma(k) = sigma(x) + sigma(y). 7

%I #14 May 24 2012 20:59:10

%S 3,32,117,183,393,728,933,2193,2528,1173,6136,2990,4070,8211,11488,

%T 12616,6112,22287,20584,37468,38675,35245,41416,55825,43616,66385,

%U 56810,94040,88736,93975,90068,174515,169376,146965,139196,210453,140576,177248

%N Least k with precisely n partitions k = x + y satisfying sigma(k) = sigma(x) + sigma(y).

%C Subset of A211223.

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

%e a(7)=933; 933 has 7 partitions of two numbers, x and y, for which sigma(933) = sigma(x) + sigma(y) = 1248. In fact:

%e sigma(311) + sigma(622) = 312 + 936 = 1248;

%e sigma(322) + sigma(611) = 576 + 672 = 1248;

%e sigma(370) + sigma(563) = 684 + 564 = 1248;

%e sigma(391) + sigma(542) = 432 + 816 = 1248;

%e sigma(398) + sigma(535) = 600 + 648 = 1248;

%e sigma(407) + sigma(526) = 456 + 792 = 1248;

%e sigma(442) + sigma(491) = 756 + 492 = 1248;

%e Furthermore 933 is the minimum number to have this property.

%p with(numtheory);

%p A211224:=proc(q)

%p local a,b,i,j,n,v;

%p v:=array(1..10000); for n from 1 to 10000 do v[n]:=0; od;

%p a:=0;

%p for n from 1 to q do

%p b:=0;

%p for i from 1 to trunc(n/2) do

%p if sigma(i)+sigma(n-i)=sigma(n) then b:=b+1; fi; od;

%p if b=a+1 then a:=b; print(n); j:=1;

%p while v[b+j]>0 do a:=b+j; print(v[b+j]); j:=j+1; od;

%p else if b>a+1 then if v[b]=0 then v[b]:=n; fi; fi; fi;

%p od; end:

%p A211224(1000);

%o (PARI) ct(n)=my(t=sigma(n));sum(i=1,n\2,sigma(i)+sigma(n-i)==t)

%o v=vector(100);for(n=1,1e5,t=ct(n);if(t&&t<=#v&&!v[t],v[t]=n));v

%o \\ _Charles R Greathouse IV_, May 04 2012

%Y Cf. A083207, A204830, A204831, A211223, A211225.

%K nonn

%O 1,1

%A _Paolo P. Lava_, May 04 2012

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 June 6 03:49 EDT 2024. Contains 373110 sequences. (Running on oeis4.)