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!)
A326036 Number of uniform complete integer partitions of n. 6
1, 1, 1, 2, 1, 1, 3, 2, 2, 2, 2, 2, 6, 3, 3, 5, 5, 3, 8, 5, 11, 10, 10, 9, 19, 13, 15, 17, 21, 18, 35, 26, 39, 40, 50, 50, 77, 63, 84, 88, 113, 103, 146, 132, 171, 180, 212, 214, 292, 276, 345, 363, 435, 442, 561, 569, 694, 729, 853, 891, 1108 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
COMMENTS
An integer partition of n is uniform if all parts appear with the same multiplicity, and complete if every nonnegative integer up to n is the sum of some submultiset.
LINKS
EXAMPLE
The initial terms count the following partitions:
0: ()
1: (1)
2: (11)
3: (21)
3: (111)
4: (1111)
5: (11111)
6: (321)
6: (2211)
6: (111111)
7: (421)
7: (1111111)
8: (3311)
8: (11111111)
9: (222111)
9: (111111111)
10: (4321)
10: (1111111111)
11: (5321)
11: (11111111111)
MATHEMATICA
sums[ptn_]:=sums[ptn]=If[Length[ptn]==1, ptn, Union@@(Join[sums[#], sums[#]+Total[ptn]-Total[#]]&/@Union[Table[Delete[ptn, i], {i, Length[ptn]}]])];
Table[Length[Select[IntegerPartitions[n], SameQ@@Length/@Split[#]&&Sort[sums[Sort[#]]]==Range[Total[#]]&]], {n, 0, 30}]
CROSSREFS
Sequence in context: A120643 A242628 A111867 * A133776 A060118 A329143
KEYWORD
nonn
AUTHOR
Gus Wiseman, Jun 04 2019
STATUS
approved

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 25 05:49 EDT 2024. Contains 371964 sequences. (Running on oeis4.)