A362619 One and all numbers whose greatest prime factor is a mode, meaning it appears at least as many times as each of the others.
1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 25, 26, 27, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 41, 42, 43, 46, 47, 49, 50, 51, 53, 54, 55, 57, 58, 59, 61, 62, 64, 65, 66, 67, 69, 70, 71, 73, 74, 75, 77, 78, 79, 81, 82, 83
Offset: 1
Keywords
Examples
The prime factorization of 300 is 2*2*3*5*5, with modes {2,5} and maximum 5, so 300 is in the sequence.
Links
- Wikipedia, Mode (statistics).
Crossrefs
Partitions of this type are counted by A171979.
Programs
-
Mathematica
prifacs[n_]:=If[n==1,{},Flatten[ConstantArray@@@FactorInteger[n]]]; Select[Range[100],MemberQ[Commonest[prifacs[#]],Max[prifacs[#]]]&]
Comments