A387327 Number of ways to choose an integer partition of each prime factor of n (with multiplicity).
1, 2, 3, 4, 7, 6, 15, 8, 9, 14, 56, 12, 101, 30, 21, 16, 297, 18, 490, 28, 45, 112, 1255, 24, 49, 202, 27, 60, 4565, 42, 6842, 32, 168, 594, 105, 36, 21637, 980, 303, 56, 44583, 90, 63261, 224, 63, 2510, 124754, 48, 225, 98, 891, 404, 329931, 54, 392, 120
Offset: 1
Examples
The a(1) = 1 through a(7) = 15 ways: (1) (2) (3) (2)(2) (5) (2)(3) (7) (11) (21) (11)(2) (32) (11)(3) (43) (111) (2)(11) (41) (2)(21) (52) (11)(11) (221) (11)(21) (61) (311) (2)(111) (322) (2111) (11)(111) (331) (11111) (421) (511) (2221) (3211) (4111) (22111) (31111) (211111) (1111111)
Crossrefs
Programs
-
Mathematica
Table[Length[Tuples[IntegerPartitions/@Flatten[ConstantArray@@@FactorInteger[n]]]],{n,30}]
Comments