A353398 Number of integer partitions of n where the product of multiplicities equals the product of prime shadows of the parts.
1, 1, 0, 0, 1, 1, 1, 2, 1, 2, 1, 2, 6, 5, 4, 4, 6, 6, 8, 8, 13, 16, 13, 16, 18, 16, 20, 21, 27, 30, 27, 33, 41, 44, 51, 48, 58, 61, 66, 66, 74, 83, 86, 99, 102, 111, 115, 126, 137, 147, 156
Offset: 0
Keywords
Examples
The a(8) = 1 through a(14) = 4 partitions (A = 10, B = 11): 3311 711 61111 521111 5511 B11 A1111 321111 3221111 9111 721111 731111 531111 811111 33221111 3321111 5221111 422111111 22221111 43111111 42111111
Crossrefs
Programs
-
Mathematica
red[n_]:=If[n==1,1,Times@@Prime/@Last/@FactorInteger[n]]; Table[Length[Select[IntegerPartitions[n],Times@@red/@#==Times@@Length/@Split[#]&]],{n,0,30}]
Comments