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!)
A174062 Least possible sum of exactly n positive integers less than 2n such that none of the n integers divides another. 1

%I #12 May 17 2023 14:17:58

%S 1,5,10,17,31,42,55,75,92,111,139,162,187,233,262,293,337,372,409,461,

%T 502,545,615,662,711,779,832,887,963,1022,1083,1181,1246,1313,1405,

%U 1476,1549,1649,1726,1805,1951,2034,2119,2235,2324,2415,2539,2634,2731,2885

%N Least possible sum of exactly n positive integers less than 2n such that none of the n integers divides another.

%p f:= proc(N) local i,j,obj,cons;

%p obj:= add(i*x[i],i=1..2*N-1);

%p cons:= {seq(seq(x[i]+x[j]<=1, j=2*i..2*N-1, i),i=1..N),

%p add(x[i],i=1..2*N-1)=N};

%p Optimization:-Minimize(obj,cons,assume=binary)[1]

%p end proc:

%p map(f, [$1..60]); # _Robert Israel_, May 06 2019

%t a[n_] := Module[{obj, cons},

%t obj = Sum[i*x[i], {i, 1, 2n-1}];

%t cons = Append[Flatten[Table[Table[x[i]+x[j] <= 1, {j, 2i, 2n-1, i}], {i, 1, n}], 1], AllTrue[Array[x, 2n-1], 0 <= # <= 1&] && Sum[x[i], {i, 1, 2n-1}] == n];

%t Minimize[{obj, cons}, Array[x, 2n-1], Integers][[1]]];

%t Reap[For[n = 1, n <= 50, n++, Print[n, " ", a[n]]; Sow[a[n]]]][[2, 1]]; (* _Jean-François Alcover_, May 17 2023, after _Robert Israel_ *)

%Y Cf. A174063, A174094.

%Y Row sums of triangle A174063. [_David Brown_, Mar 20 2010]

%K nonn

%O 1,2

%A _David Brown_, Mar 06 2010

%E Extended by _Ray Chandler_, Mar 19 2010

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 September 14 13:32 EDT 2024. Contains 375921 sequences. (Running on oeis4.)