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!)
A072587 Numbers having at least one prime factor with an even exponent. 14

%I #52 Feb 16 2024 10:21:39

%S 4,9,12,16,18,20,25,28,36,44,45,48,49,50,52,60,63,64,68,72,75,76,80,

%T 81,84,90,92,98,99,100,108,112,116,117,121,124,126,132,140,144,147,

%U 148,150,153,156,162,164,169,171,172,175,176,180,188,192,196,198,200,204

%N Numbers having at least one prime factor with an even exponent.

%C Complement of the union of {1} and A002035. [Correction, Nov 15 2012]

%C A162645 is a subsequence and this sequence is a subsequence of A162643. - _Reinhard Zumkeller_, Jul 08 2009

%C The asymptotic density of this sequence is 1 - A065463 = 0.2955577990... - _Amiram Eldar_, Jul 21 2020

%C A number k is a term iff its core (A007913) properly divides its kernel (A007947), that is iff A336643(k) > 1. - _David James Sycamore_, Sep 18 2023

%H Reinhard Zumkeller, <a href="/A072587/b072587.txt">Table of n, a(n) for n = 1..10000</a>

%t Select[Range[210], MemberQ[EvenQ[Transpose[FactorInteger[#]][[2]]], True] &] (* _Harvey P. Dale_, Apr 03 2012 *)

%o (Haskell)

%o a072587 n = a072587_list !! (n-1)

%o a072587_list = tail $ filter (any even . a124010_row) [1..]

%o -- _Reinhard Zumkeller_, Nov 15 2012

%o (PARI) is(n)=n>3 && Set(factor(n)[,2]%2)[1]==0 \\ _Charles R Greathouse IV_, Oct 16 2015

%o (Python)

%o from itertools import count, islice

%o from sympy import factorint

%o def A072587_gen(startvalue=1): # generator of terms

%o return filter(lambda n:not all(map(lambda m:m&1,factorint(n).values())),count(max(startvalue,1)))

%o A072587_list = list(islice(A072587_gen(),30)) # _Chai Wah Wu_, Jan 04 2023

%Y Cf. A000037, A000203, A002035, A065463, A072588, A124010, A162643, A162645, A188999.

%Y Cf. A007913, A007947, A336643.

%K nonn

%O 1,1

%A _Reinhard Zumkeller_, Jun 23 2002

%E Thanks to _Zak Seidov_ who noticed that 1 had to be removed. - _Reinhard Zumkeller_, Nov 15 2012

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 16 13:33 EDT 2024. Contains 371712 sequences. (Running on oeis4.)