cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A317082 Number of integer partitions of n whose multiplicities are weakly decreasing and span an initial interval of positive integers.

Original entry on oeis.org

1, 1, 1, 2, 3, 4, 5, 8, 9, 13, 17, 22, 26, 35, 42, 53, 66, 81, 96, 122, 143, 174, 210, 251, 293, 358, 417, 493, 582, 686, 793, 941, 1087, 1267, 1471, 1709, 1961, 2285, 2615, 3013, 3460, 3976, 4523, 5204, 5914, 6747, 7681, 8745, 9884, 11262, 12714, 14393, 16261
Offset: 0

Views

Author

Gus Wiseman, Jul 21 2018

Keywords

Examples

			The a(7) = 8 integer partitions are (7), (61), (52), (511), (43), (421), (322), (3211).
		

Crossrefs

Programs

  • Mathematica
    normalQ[m_]:=Union[m]==Range[Max[m]];
    Table[Length[Select[IntegerPartitions[n],And[normalQ[Length/@Split[#]],OrderedQ[Length/@Split[#]]]&]],{n,60}]