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!)
A306443 Number of ways of partitioning the set of the first n primes into two subsets whose sums differ at most by 1. 6

%I #65 Apr 30 2020 07:51:08

%S 1,0,1,1,1,1,3,2,6,5,16,13,45,39,138,122,439,392,1417,1286,4698,4341,

%T 16021,14860,55146,51085,190274,178402,671224,634511,2404289,2260918,

%U 8535117,8067237,30635869,29031202,110496946,105250449,401422210,383579285,1467402238

%N Number of ways of partitioning the set of the first n primes into two subsets whose sums differ at most by 1.

%H Alois P. Heinz, <a href="/A306443/b306443.txt">Table of n, a(n) for n = 0..2000</a>

%H Wikipedia, <a href="https://en.wikipedia.org/wiki/Partition_problem">Partition problem</a>

%e a(8) = 6: 2,17,19/3,5,7,11,13; 3,5,11,19/2,7,13,17; 3,5,13,17/2,7,11,19; 3,7,11,17/2,5,13,19; 2,3,5,11,17/7,13,19; 2,5,7,11,13/3,17,19.

%e a(9) = 5: 2,3,5,17,23/7,11,13,19; 2,5,7,13,23/3,11,17,19; 2,5,7,17,19/3,11,13,23; 2,5,11,13,19/3,7,17,23; 2,7,11,13,17/3,5,19,23.

%p s:= proc(n) s(n):= `if`(n=0, 1, ithprime(n)+s(n-1)) end:

%p b:= proc(n, i) option remember; `if`(i=0, `if`(n<=1, 1, 0),

%p `if`(n>s(i), 0, (p->b(n+p, i-1)+b(abs(n-p), i-1))(ithprime(i))))

%p end:

%p a:= n-> ceil(b(0, n)/2):

%p seq(a(n), n=0..45);

%t s[n_] := s[n] = If[n == 0, 1, Prime[n] + s[n - 1]];

%t b[n_, i_] := b[n, i] = If[i==0, If[n <= 1, 1, 0], If[n > s[i], 0, Function[ p, b[n + p, i - 1] + b[Abs[n - p], i - 1]][Prime[i]]]];

%t a[n_] := Ceiling[b[0, n]/2];

%t a /@ Range[0, 45] (* _Jean-François Alcover_, Apr 30 2020, after _Alois P. Heinz_ *)

%Y Bisections give: A022894 (odd part), A113040 (even part).

%Y Cf. A000040, A069918, A307877.

%K nonn

%O 0,7

%A _Alois P. Heinz_, May 31 2019

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 03:08 EDT 2024. Contains 371918 sequences. (Running on oeis4.)