A379735 Number of strict integer partitions of n into parts > 1 whose product is a multiple of n.
0, 1, 1, 1, 1, 1, 1, 1, 2, 2, 1, 3, 1, 3, 4, 4, 1, 8, 1, 11, 9, 7, 1, 26, 7, 10, 18, 33, 1, 67, 1, 56, 37, 20, 69, 158, 1, 27, 70, 252, 1, 280, 1, 207, 402, 52, 1, 834, 133, 423, 226, 465, 1, 1132, 635, 1541, 388, 129, 1, 3377, 1, 171, 2891, 3561, 1674, 3154
Offset: 1
Keywords
Examples
The a(n) partitions for n = 2, 9, 12, 15, 18, 20, 21: (2) (9) (12) (15) (18) (20) (21) (6,3) (5,4,3) (6,5,4) (12,6) (8,7,5) (8,7,6) (6,4,2) (7,5,3) (9,5,4) (10,6,4) (9,7,5) (10,3,2) (9,6,3) (10,8,2) (11,7,3) (9,7,2) (11,5,4) (12,7,2) (6,5,4,3) (12,5,3) (14,4,3) (7,6,3,2) (7,6,5,2) (7,6,5,3) (9,4,3,2) (8,5,4,3) (9,7,3,2) (9,5,4,2) (7,5,4,3,2) (10,5,3,2) (6,5,4,3,2)
Crossrefs
Programs
-
Mathematica
Table[Length[Select[IntegerPartitions[n],FreeQ[#,1]&&UnsameQ@@#&&Divisible[Times@@#,n]&]],{n,30}]
Comments