OFFSET
1,1
FORMULA
If n = prod_{k=1..m} p(k)^e(k), then m > 1 and e(1) <= e(2) <= ... <= e(m).
MATHEMATICA
fQ[n_] := Module[{f = Transpose[FactorInteger[n]][[2]]}, Length[f] > 1 && Min[Differences[f]] >= 0]; Select[Range[2, 200], fQ] (* T. D. Noe, Nov 04 2013 *)
Select[Range[150], PrimeNu[#]>1&&Min[Differences[FactorInteger[#][[All, 2]]]]>=0&] (* Harvey P. Dale, May 22 2020 *)
PROG
(PARI) isok(n) = {my(f = factor(n), nbf = #f~); if (nbf < 2, return (0)); lastexp = 0; for (i=1, nbf, if ((newexp = f[i, 2]) < lastexp, return (0)); lastexp = newexp; ); return (1); } \\ Michel Marcus, Oct 30 2013
CROSSREFS
KEYWORD
nonn
AUTHOR
Alex Ratushnyak, Oct 29 2013
STATUS
approved