A228957 Numbers n such that n/rad(n) is greater than the greatest prime dividing n.
8, 16, 24, 27, 32, 36, 48, 54, 64, 72, 80, 81, 96, 100, 108, 112, 125, 128, 135, 144, 160, 162, 180, 189, 192, 196, 200, 216, 224, 225, 240, 243, 250, 256, 270, 288, 300, 320, 324, 336, 343, 352, 360, 375, 378, 384, 392, 400, 405, 416, 432, 441, 448, 450, 480
Offset: 1
Keywords
Examples
24 is in the sequence because the prime divisors of 24 are 2 and 3 and 24/2*3 > 3.
Links
- Michel Lagneau, Table of n, a(n) for n = 1..10000
Programs
-
Maple
with(numtheory) :for n from 1 to 400 do:x:=factorset(n):n1:=nops(x): p:= product('x[i]', 'i'=1..n1):m:=n/p:if m> x[n1]then printf(`%d, `,n):else fi:od:
-
Mathematica
rad[n_]:=Times@@(First@#&/@FactorInteger@n);Select[Range[2,1000],FactorInteger[#][[-1,1]]<#/rad[#]&] nrQ[n_]:=Module[{x=FactorInteger[n][[All,1]]},n/Times@@x>Last[x]]; Select[Range[ 500],nrQ] (* Harvey P. Dale, Jun 15 2022 *)
-
PARI
is(n)=my(f=factor(n)); prod(i=1,#f~,f[i,1]^(f[i,2]-1)) > f[#f~,1] \\ Charles R Greathouse IV, Sep 09 2013
Comments