A362620 Numbers whose greatest prime factor is not a mode, meaning it appears fewer times than some other.
12, 20, 24, 28, 40, 44, 45, 48, 52, 56, 60, 63, 68, 72, 76, 80, 84, 88, 90, 92, 96, 99, 104, 112, 116, 117, 120, 124, 126, 132, 135, 136, 140, 144, 148, 152, 153, 156, 160, 164, 168, 171, 172, 175, 176, 180, 184, 188, 189, 192, 198, 200, 204, 207, 208, 212
Offset: 1
Keywords
Examples
The prime factorization of 90 is 2*3*3*5, with modes {3} and maximum 5, so 90 is in the sequence.
Links
- Robert Israel, Table of n, a(n) for n = 1..10000
- Wikipedia, Mode (statistics).
Crossrefs
Partitions of this type are counted by A240302.
Programs
-
Maple
filter:= proc(n) local F; F:= sort(ifactors(n)[2], (a,b) -> a[1]Robert Israel, Dec 15 2023
-
Mathematica
prifacs[n_]:=If[n==1,{},Flatten[ConstantArray@@@FactorInteger[n]]]; Select[Range[2,100],FreeQ[Commonest[prifacs[#]],Max[prifacs[#]]]&]
Comments