login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A229027 Numbers n such that n/rad(n) equals the greatest prime dividing n. 1
4, 9, 18, 25, 49, 50, 75, 98, 121, 147, 150, 169, 242, 245, 289, 294, 338, 361, 363, 490, 507, 529, 578, 605, 722, 726, 735, 841, 845, 847, 867, 961, 1014, 1058, 1083, 1183, 1210, 1369, 1445, 1470, 1587, 1681, 1682, 1690, 1694, 1734, 1805, 1815, 1849, 1859 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Numbers n such that n/A007947(n)= A006530(n) where A007947 is the product of the distinct prime factors of n and A006530 is the greatest prime dividing n.
The numbers of the form p^2 with p prime, or of the form p_1*p_2*...*p_k*p^2 with p_i primes < p prime are in the sequence.
All these numbers are round numbers (their greatest prime factor is <= their square root. - Emmanuel Vantieghem, Feb 22 2017
LINKS
MAPLE
with(numtheory) :for n from 2 to 2000 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, 2000], FactorInteger[#][[-1, 1]]==#/rad[#]&]
gpQ[n_]:=Module[{pf=Transpose[FactorInteger[n]][[1]]}, n/Times@@pf == Last[ pf]]; Select[Range[2, 2000], gpQ] (* Harvey P. Dale, Aug 16 2014 *)
PROG
(PARI) isok(n) = my(f = factor(n)); n/factorback(f[, 1]) == f[#f~, 1]; \\ Michel Marcus, Aug 16 2014
CROSSREFS
Sequence in context: A368780 A062952 A344405 * A100435 A160172 A256536
KEYWORD
nonn
AUTHOR
Michel Lagneau, Sep 11 2013
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 12:14 EDT 2024. Contains 371792 sequences. (Running on oeis4.)