A340693 Number of integer partitions of n where each part is a divisor of the number of parts.
1, 1, 1, 2, 2, 3, 2, 5, 5, 7, 7, 10, 10, 14, 14, 17, 19, 24, 24, 32, 33, 42, 43, 58, 59, 75, 79, 98, 104, 124, 128, 156, 166, 196, 204, 239, 251, 292, 306, 352, 372, 426, 445, 514, 543, 616, 652, 745, 790, 896, 960, 1080, 1162, 1311, 1400, 1574, 1692, 1892
Offset: 0
Keywords
Examples
The a(1) = 1 through a(9) = 7 partitions: 1 11 21 22 311 2211 331 2222 333 111 1111 2111 111111 2221 4211 4221 11111 4111 221111 51111 211111 311111 222111 1111111 11111111 321111 21111111 111111111
Crossrefs
Programs
-
Mathematica
Table[Length[Select[IntegerPartitions[n],And@@IntegerQ/@(Length[#]/#)&]],{n,0,30}]
Comments