A371601 Nonsquarefree numbers whose largest nonunitary prime divisor is smaller than their smallest unitary prime divisor, if it exists.
4, 8, 9, 12, 16, 20, 24, 25, 27, 28, 32, 36, 40, 44, 45, 48, 49, 52, 56, 60, 63, 64, 68, 72, 76, 80, 81, 84, 88, 92, 96, 99, 100, 104, 108, 112, 116, 117, 120, 121, 124, 125, 128, 132, 135, 136, 140, 144, 148, 152, 153, 156, 160, 164, 168, 169, 171, 172, 175, 176
Offset: 1
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
Crossrefs
Programs
-
Mathematica
q[n_] := Module[{e = FactorInteger[n][[;; , 2]]}, Max[e] > 1 && (Min[e] > 1 || Max[e[[FirstPosition[e, 1][[1]] ;; -1]]] == 1)]; Select[Range[200], q]
-
PARI
is(n) = {my(e = apply(x->if(x > 1, 2, 1), factor(n)[,2])); n > 1 && vecmax(e) > 1 && vecsort(e, , 4) == e;}
Comments