A380221 Number of strict integer partitions of n containing 1 whose product of parts is a multiple of n.
1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 2, 0, 2, 3, 3, 0, 4, 0, 9, 6, 4, 0, 22, 5, 6, 15, 28, 0, 54, 0, 49, 30, 14, 57, 134, 0, 22, 58, 219, 0, 242, 0, 180, 349, 44, 0, 722, 113, 369, 196, 404, 0, 994, 556, 1363, 338, 111, 0, 3016, 0, 150, 2569, 3150, 1485, 2815, 0
Offset: 1
Keywords
Examples
The a(6) = 1 through a(16) = 3 partitions: (3,2,1) . . . (5,4,1) . (8,3,1) . (7,6,1) (9,5,1) (8,4,3,1) (6,3,2,1) (7,4,2,1) (6,5,3,1) (8,5,2,1) (5,4,3,2,1) (6,4,3,2,1)
Crossrefs
Positions of 0 after 9 appear to be the prime numbers A000040.
Not requiring 1 gives A379733.
Partitions of this type are ranked by A379845.
The case of equality for non-strict partitions is A380218 shifted left.
A379666 counts partitions by sum and product.
Counting and ranking multisets by comparing sum and product:
Programs
-
Mathematica
Table[Length[Select[IntegerPartitions[n],MemberQ[#,1]&&UnsameQ@@#&&Divisible[Times@@#,n]&]],{n,30}]
Comments