A350944 Heinz numbers of integer partitions of which the number of odd parts is equal to the number of odd conjugate parts.
1, 2, 6, 9, 10, 12, 15, 18, 20, 30, 35, 49, 54, 55, 56, 70, 75, 77, 81, 84, 88, 90, 98, 108, 110, 112, 125, 132, 135, 143, 154, 162, 168, 169, 176, 180, 187, 210, 221, 260, 264, 270, 286, 294, 315, 323, 330, 338, 340, 350, 361, 363, 364, 374, 391, 416, 420
Offset: 1
Keywords
Examples
The terms together with their prime indices begin: 1: () 2: (1) 6: (2,1) 9: (2,2) 10: (3,1) 12: (2,1,1) 15: (3,2) 18: (2,2,1) 20: (3,1,1) 30: (3,2,1) 35: (4,3) 49: (4,4) 54: (2,2,2,1)
Crossrefs
Programs
-
Mathematica
primeMS[n_]:=If[n==1,{},Flatten[Cases[FactorInteger[n],{p_,k_}:>Table[PrimePi[p],{k}]]]]; conj[y_]:=If[Length[y]==0,y,Table[Length[Select[y,#>=k&]],{k,1,Max[y]}]]; Select[Range[100],Count[conj[primeMS[#]],?OddQ]==Count[primeMS[#],?OddQ]&]
Comments