OFFSET
1,9
COMMENTS
The Heinz number of a partition (y_1,...,y_k) is prime(y_1)*...*prime(y_k), so a(n) counts even prime indices of n.
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]], _?EvenQ], {n, 100}]
CROSSREFS
Positions of first appearances are A001248.
The triangular version is A116482.
Positions of zeros are A346635.
Subtracting from the number of odd conjugate parts gives A350941.
Subtracting from the number of odd parts gives A350942.
Subtracting from the number of even parts gives A350950.
There are four statistics:
There are six possible pairings of statistics:
There are three possible double-pairings of statistics:
A122111 represents partition conjugation using Heinz numbers.
KEYWORD
nonn
AUTHOR
Gus Wiseman, Mar 14 2022
STATUS
approved