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!)
A124184 Positive integers not divisible by any of their own prime-factorization exponents. 4
1, 8, 9, 25, 32, 49, 64, 81, 121, 125, 128, 169, 225, 243, 289, 343, 361, 441, 512, 529, 625, 729, 841, 961, 1000, 1024, 1089, 1225, 1331, 1369, 1521, 1681, 1849, 2025, 2048, 2187, 2197, 2209, 2401, 2601, 2744, 2809, 3025, 3249, 3481, 3721, 3969, 4096, 4225 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
If n>1 is a term then n is composite and is not squarefree. - Farideh Firoozbakht, Dec 08 2006
LINKS
EXAMPLE
18225 = 3^6 * 5^2. Neither 6 nor 2 divides 18225, so 18225 is in the sequence.
MATHEMATICA
f[n_] := Times @@ Mod[n, Last /@ FactorInteger[n]] > 0; Select[Range[5000], f] (* Ray Chandler, Dec 06 2006 *)
Do[a = FactorInteger[n]; l = Length[a]; b = Table[a[[k]][[2]], {k, l}]; If[ ! MemberQ[Mod[n, b], 0], Print[n]], {n, 4000}] (* Farideh Firoozbakht, Dec 08 2006 *)
CROSSREFS
Cf. A124438.
Sequence in context: A068435 A302554 A124438 * A062307 A114130 A130100
KEYWORD
nonn
AUTHOR
Leroy Quet, Dec 05 2006
EXTENSIONS
Extended by Ray Chandler and Zak Seidov, Dec 06 2006
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 24 10:11 EDT 2024. Contains 371935 sequences. (Running on oeis4.)