OFFSET
1,180
COMMENTS
We define a non-co-mode in a multiset to be an element that appears more times than at least one of the others. For example, the non-co-modes in {a,a,b,b,b,c,d,d,d} are {a,b,d}.
Number of prime factors of n whose exponent is larger than the minimal exponent in the prime factorization of n (A051904). - Antti Karttunen, Oct 23 2025
LINKS
EXAMPLE
The prime factorization of 360 is 2*2*2*3*3*5, with non-co-modes {2,3}, so a(360) = 2.
MATHEMATICA
prifacs[n_]:=If[n==1, {}, Flatten[ConstantArray@@@FactorInteger[n]]];
ncomsi[ms_]:=Select[Union[ms], Count[ms, #]>Min@@Length/@Split[ms]&];
Table[Length[ncomsi[prifacs[n]]], {n, 100}]
PROG
(PARI) A363131(n) = if(1==n, 0, my(f=factorint(n), minexp=vecmin(f[, 2])); sum(i=1, #f~, (f[i, 2]>minexp))); \\ Antti Karttunen, Oct 23 2025
CROSSREFS
Positions of terms > 0 are A059404.
Positions of first appearances appear to converge to A228593.
For parts instead of multiplicities we have A362983.
The triangle for this rank statistic (number of non-co-modes) is A363130.
KEYWORD
nonn
AUTHOR
Gus Wiseman, May 18 2023
EXTENSIONS
More terms and secondary offset added by Antti Karttunen, Oct 23 2025
STATUS
approved
