A362617 Numbers whose prime factorization has both (1) even length, and (2) unequal middle parts.
6, 10, 14, 15, 21, 22, 26, 33, 34, 35, 36, 38, 39, 46, 51, 55, 57, 58, 60, 62, 65, 69, 74, 77, 82, 84, 85, 86, 87, 91, 93, 94, 95, 100, 106, 111, 115, 118, 119, 122, 123, 129, 132, 133, 134, 140, 141, 142, 143, 145, 146, 150, 155, 156, 158, 159, 161, 166, 177
Offset: 1
Keywords
Examples
The prime factorization of 60 is 2*2*3*5, with middle parts (2,3), so 60 is in the sequence.
Links
- Robert Israel, Table of n, a(n) for n = 1..10000
Programs
-
Maple
filter:= proc(n) local F,m; F:= sort(map(t -> t[1]$t[2],ifactors(n)[2])); m:= nops(F); m::even and F[m/2] <> F[m/2+1] end proc: select(filter, [$2..200]); # Robert Israel, Dec 15 2023
-
Mathematica
prifacs[n_]:=If[n==1,{},Flatten[ConstantArray@@@FactorInteger[n]]]; Select[Range[2,100],FreeQ[prifacs[#],Median[prifacs[#]]]&]
Comments