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!)
A305635 1 and odd numbers that are not perfect powers. 5
1, 3, 5, 7, 11, 13, 15, 17, 19, 21, 23, 29, 31, 33, 35, 37, 39, 41, 43, 45, 47, 51, 53, 55, 57, 59, 61, 63, 65, 67, 69, 71, 73, 75, 77, 79, 83, 85, 87, 89, 91, 93, 95, 97, 99, 101, 103, 105, 107, 109, 111, 113, 115, 117, 119, 123, 127, 129, 131, 133, 135, 137 (list; graph; refs; listen; history; text; internal format)
OFFSET

1,2

LINKS

Table of n, a(n) for n=1..62.

MATHEMATICA

radQ[n_]:=Or[n==1, GCD@@FactorInteger[n][[All, 2]]==1];

Select[Range[200], OddQ[#]&&radQ[#]&]

PROG

(PARI) isok(n) = (n==1) || ((n % 2) && !ispower(n)); \\ Michel Marcus, Jun 08 2018

(Magma) [1] cat [n : n in [3..200 by 2] | not IsPower(n) ]; // Vincenzo Librandi, Jul 06 2018

CROSSREFS

Cf. A001597, A005117, A007916, A039956, A056911.

Cf. A305630, A305631, A305632, A305633, A305634.

Sequence in context: A348748 A182318 A247424 * A334420 A342144 A357014

Adjacent sequences: A305632 A305633 A305634 * A305636 A305637 A305638

KEYWORD

nonn

AUTHOR

Gus Wiseman, Jun 07 2018

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 March 30 12:42 EDT 2023. Contains 361618 sequences. (Running on oeis4.)