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!)
A325098 Number of binary carry-connected integer partitions of n. 15

%I #20 May 11 2021 06:15:38

%S 1,1,2,2,4,4,7,7,13,15,23,27,42,50,72,88,125,153,211,258,349,430,569,

%T 698,914,1119,1444,1765,2252,2745,3470,4214,5276,6387,7934,9568,11800,

%U 14181,17379,20818,25351,30264,36668,43633,52589,62394,74872,88576,105818

%N Number of binary carry-connected integer partitions of n.

%C A binary carry of two positive integers is an overlap of the positions of 1's in their reversed binary expansion. An integer partition is binary carry-connected if the graph whose vertices are the parts and whose edges are binary carries is connected.

%H Alois P. Heinz, <a href="/A325098/b325098.txt">Table of n, a(n) for n = 0..500</a>

%e The a(1) = 1 through a(8) = 13 partitions:

%e (1) (2) (3) (4) (5) (6) (7) (8)

%e (11) (111) (22) (32) (33) (322) (44)

%e (31) (311) (51) (331) (53)

%e (1111) (11111) (222) (511) (62)

%e (321) (3211) (71)

%e (3111) (31111) (332)

%e (111111) (1111111) (2222)

%e (3221)

%e (3311)

%e (5111)

%e (32111)

%e (311111)

%e (11111111)

%p h:= proc(n, s) local i, m; m:= n;

%p for i in s do m:= Bits[Or](m, i) od; {m}

%p end:

%p g:= (n, s)-> (w-> `if`(w={}, s union {n}, s minus w union

%p h(n, w)))(select(x-> Bits[And](n, x)>0, s)):

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

%p `if`(i<1, 0, b(n, i-1, s)+ b(n-i, min(i, n-i), g(i, s))))

%p end:

%p a:= n-> b(n$2, {}):

%p seq(a(n), n=0..50); # _Alois P. Heinz_, Mar 29 2019

%t binpos[n_]:=Join@@Position[Reverse[IntegerDigits[n,2]],1];

%t csm[s_]:=With[{c=Select[Tuples[Range[Length[s]],2],And[OrderedQ[#],UnsameQ@@#,Length[Intersection@@s[[#]]]>0]&]},If[c=={},s,csm[Sort[Append[Delete[s,List/@c[[1]]],Union@@s[[c[[1]]]]]]]]];

%t Table[Length[Select[IntegerPartitions[n],Length[csm[binpos/@#]]<=1&]],{n,0,20}]

%t (* Second program: *)

%t h[n_, s_] := Module[{i, m = n}, Do[m = BitOr[m, i], {i, s}]; {m}];

%t g[n_, s_] := Function[w, If[w == {}, s ~Union~ {n}, (s ~Complement~ w) ~Union~

%t h[n, w]]][Select[s, BitAnd[n, #] > 0&]];

%t b[n_, i_, s_] := b[n, i, s] = If[n == 0, If[Length[s] > 1, 0, 1],

%t If[i < 1, 0, b[n, i - 1, s] + b[n - i, Min[i, n - i], g[i, s]]]];

%t a[n_] := b[n, n, {}];

%t a /@ Range[0, 50] (* _Jean-François Alcover_, May 11 2021, after _Alois P. Heinz_ *)

%Y Cf. A050315, A080572, A247935, A267610, A267700.

%Y Cf. A325096, A325099, A325104, A325106, A325108, A325110, A325118, A325119.

%K nonn

%O 0,3

%A _Gus Wiseman_, Mar 28 2019

%E a(21)-a(48) from _Alois P. Heinz_, Mar 29 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 May 6 02:03 EDT 2024. Contains 372290 sequences. (Running on oeis4.)