A350945 Heinz numbers of integer partitions of which the number of even parts is equal to the number of even conjugate parts.
1, 2, 5, 6, 8, 9, 11, 14, 17, 20, 21, 23, 24, 26, 30, 31, 32, 36, 38, 39, 41, 44, 47, 56, 57, 58, 59, 66, 67, 68, 73, 74, 75, 80, 83, 84, 86, 87, 92, 96, 97, 102, 103, 104, 106, 109, 111, 120, 122, 124, 125, 127, 128, 129, 137, 138, 142, 144, 149, 152, 156
Offset: 1
Keywords
Examples
The terms together with their prime indices begin: 1: () 2: (1) 5: (3) 6: (2,1) 8: (1,1,1) 9: (2,2) 11: (5) 14: (4,1) 17: (7) 20: (3,1,1) 21: (4,2) 23: (9) 24: (2,1,1,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[#]],?EvenQ]==Count[primeMS[#],?EvenQ]&]
Comments