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!)
A317491 Number of fully normal integer partitions of n. 22
1, 1, 2, 3, 4, 6, 6, 10, 12, 17, 21, 30, 33, 46, 50, 68, 77, 100, 112, 146, 167, 201, 234, 290, 326, 400, 456, 545, 622, 744, 845, 1004, 1153, 1351, 1551, 1819, 2103, 2434, 2808, 3248, 3735, 4304, 4943, 5661, 6506, 7446, 8499, 9657, 11070, 12505, 14325, 16183 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
An integer partition is fully normal if either it is of the form (1,1,...,1) or its multiplicities span an initial interval of positive integers and, sorted in weakly decreasing order, are themselves fully normal.
LINKS
FORMULA
a(n) = A317245(n) iff n is 1 or a prime number.
EXAMPLE
The a(6) = 6 fully normal partitions are (6), (51), (42), (411), (321), (111111). Missing from this list are (33), (3111), (222), (2211), (21111).
MATHEMATICA
fulnrmQ[ptn_]:=With[{qtn=Sort[Length/@Split[ptn], Greater]}, Or[ptn=={}||Union[ptn]=={1}, And[Union[qtn]==Range[Max[qtn]], fulnrmQ[qtn]]]];
Table[Length[Select[IntegerPartitions[n], fulnrmQ]], {n, 0, 30}]
CROSSREFS
Sequence in context: A009490 A243930 A064778 * A332295 A332576 A028335
KEYWORD
nonn
AUTHOR
Gus Wiseman, Jul 30 2018
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 18 21:51 EDT 2024. Contains 371781 sequences. (Running on oeis4.)