A387133 Number of ways to choose a sequence of distinct integer partitions, one of each prime factor of n (with multiplicity).
1, 2, 3, 2, 7, 6, 15, 0, 6, 14, 56, 6, 101, 30, 21, 0, 297, 12, 490, 14, 45, 112, 1255, 0, 42, 202, 6, 30, 4565, 42, 6842, 0, 168, 594, 105, 12, 21637, 980, 303, 0, 44583, 90, 63261, 112, 42, 2510, 124754, 0, 210, 84, 891, 202, 329931, 12, 392, 0, 1470, 9130
Offset: 1
Examples
The prime factors of 9 are (3,3), and the a(9) = 6 choices are: ((3),(2,1)) ((3),(1,1,1)) ((2,1),(3)) ((2,1),(1,1,1)) ((1,1,1),(3)) ((1,1,1),(2,1))
Crossrefs
Twice partitions of this type are counted by A296122.
For strict partitions and prime indices we have A387115.
For constant partitions and prime indices we have A387120.
A003963 multiplies together prime indices.
A120383 lists numbers divisible by all of their prime indices.
A289509 lists numbers with relatively prime prime indices.
Programs
-
Mathematica
Table[Length[Select[Tuples[IntegerPartitions/@Flatten[ConstantArray@@@FactorInteger[n]]],UnsameQ@@#&]],{n,30}]