A350849 Number of odd conjugate parts minus number of even parts in the integer partition with Heinz number n.
0, 1, 1, 0, 3, 0, 3, 1, -2, 2, 5, 1, 5, 2, 0, 0, 7, -1, 7, 3, 0, 4, 9, 0, 0, 4, -1, 3, 9, 1, 11, 1, 2, 6, 0, -2, 11, 6, 2, 2, 13, 1, 13, 5, 1, 8, 15, 1, -2, 1, 4, 5, 15, -2, 2, 2, 4, 8, 17, 0, 17, 10, 1, 0, 2, 3, 19, 7, 6, 1, 19, -1, 21, 10, 1, 7, 0, 3, 21, 3
Offset: 1
Keywords
Examples
First positions n such that a(n) = 4, 3, 2, 1, 0, -1, -2, -3, -4, together with their prime indices, are: 22: (5,1) 5: (3) 10: (3,1) 2: (1) 1: () 18: (2,2,1) 9: (2,2) 162: (2,2,2,2,1) 81: (2,2,2,2)
Crossrefs
Positions of 0's are A349157.
Counting even conjugate parts instead of even parts gives A350941.
The conjugate version is A350942.
The following rank partitions:
A325698: # of even parts = # of odd parts.
A122111 represents conjugation using Heinz numbers.
A316524 = alternating sum of prime indices.
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]}]]; Table[Count[conj[primeMS[n]],?OddQ]-Count[primeMS[n],?EvenQ],{n,100}]
Comments