A353396 Number of integer partitions of n whose Heinz number has prime shadow equal to the product of prime shadows of its parts.
1, 0, 1, 1, 0, 2, 0, 3, 1, 3, 4, 3, 7, 5, 9, 8, 12, 15, 15, 20, 21, 25, 31, 33, 38, 42, 46, 56, 61, 67, 78, 76, 96, 100, 114, 131, 130, 157, 157, 185, 200, 214, 236, 253, 275, 302, 333, 351, 386, 408, 440, 486, 515, 564, 596, 633, 691, 734, 800, 854, 899, 964
Offset: 0
Keywords
Examples
The a(8) = 1 through a(14) = 9 partitions (A..D = 10..13): (53) (72) (73) (B) (75) (D) (B3) (621) (532) (A1) (651) (B2) (752) (4221) (631) (4331) (732) (A21) (761) (4411) (6321) (43321) (A31) (6411) (44311) (C11) (43221) (6521) (44211) (9221) (54221) (64211)
Crossrefs
Programs
-
Mathematica
red[n_]:=If[n==1,1,Times@@Prime/@Last/@FactorInteger[n]]; Table[Length[Select[IntegerPartitions[n],Times@@red/@#==red[Times@@Prime/@#]&]],{n,0,15}]
Comments