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!)
A326518 Number of normal multiset partitions of weight n where every part has the same sum. 16

%I #6 Jul 12 2019 20:20:17

%S 1,1,3,7,15,31,75,169,445,1199

%N Number of normal multiset partitions of weight n where every part has the same sum.

%C A multiset partition is normal if it covers an initial interval of positive integers.

%H Gus Wiseman, <a href="/A038041/a038041.txt">Sequences counting and ranking multiset partitions whose part lengths, sums, or averages are constant or strict.</a>

%e The a(0) = 1 through a(4) = 15 normal multiset partitions:

%e {} {{1}} {{1,1}} {{1,1,1}} {{1,1,1,1}}

%e {{1,2}} {{1,1,2}} {{1,1,1,2}}

%e {{1},{1}} {{1,2,2}} {{1,1,2,2}}

%e {{1,2,3}} {{1,1,2,3}}

%e {{2},{1,1}} {{1,2,2,2}}

%e {{3},{1,2}} {{1,2,2,3}}

%e {{1},{1},{1}} {{1,2,3,3}}

%e {{1,2,3,4}}

%e {{1,1},{1,1}}

%e {{1,2},{1,2}}

%e {{1,3},{2,2}}

%e {{1,4},{2,3}}

%e {{2},{2},{1,1}}

%e {{3},{3},{1,2}}

%e {{1},{1},{1},{1}}

%t sps[{}]:={{}};sps[set:{i_,___}]:=Join@@Function[s,Prepend[#,s]&/@sps[Complement[set,s]]]/@Cases[Subsets[set],{i,___}];

%t mps[set_]:=Union[Sort[Sort/@(#/.x_Integer:>set[[x]])]&/@sps[Range[Length[set]]]];

%t allnorm[n_]:=If[n<=0,{{}},Function[s,Array[Count[s,y_/;y<=#]+1&,n]]/@Subsets[Range[n-1]+1]];

%t Table[Length[Select[Join@@mps/@allnorm[n],SameQ@@Total/@#&]],{n,0,5}]

%Y Cf. A035470, A038041, A255906, A317583, A321455, A326517, A326519, A326520, A326521, A326534.

%K nonn

%O 0,3

%A _Gus Wiseman_, Jul 12 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 23 16:40 EDT 2024. Contains 371916 sequences. (Running on oeis4.)