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!)
A285801 Numbers having at most one odd prime factor to an odd power in their prime factorization. 4

%I #12 Dec 07 2019 13:03:27

%S 1,2,3,4,5,6,7,8,9,10,11,12,13,14,16,17,18,19,20,22,23,24,25,26,27,28,

%T 29,31,32,34,36,37,38,40,41,43,44,45,46,47,48,49,50,52,53,54,56,58,59,

%U 61,62,63,64,67,68,71,72,73,74,75,76,79,80,81,82,83,86,88,89

%N Numbers having at most one odd prime factor to an odd power in their prime factorization.

%C The sequence is of asymptotic density zero. It seems to grow faster than n*(log_10(n)-1), which is a fair approximation in the range 10^3 .. 10^6 or beyond, cf. examples.

%H N. J. A. Sloane, <a href="/A285801/b285801.txt">Table of n, a(n) for n = 1..10001</a>

%e A285800(1) = 15 = 3*5 is the smallest positive integer to have two odd prime factors to an odd power (here 1) in its factorization, therefore it's the first number not in this sequence.

%e A285800(2) = 21 = 3*7, A285800(3) = 30 = 2*A285800(1) and A285800(3) = 33 = 3*11 are the next three numbers not in this sequence.

%e a(10) = 10, a(100) = 137, a(10^3) = 2066, a(10^4) = 29996, a(10^5) = 402878, a(10^6) = 5083823.

%p s800:=[]; s801:=[1];

%p for n from 2 to 1000 do

%p c:=0;

%p t2:=ifactors(n)[2];

%p for t3 in t2 do if t3[1]>2 and (t3[2] mod 2 = 1) then c:=c+1; fi; od:

%p if c <= 1 then s801:=[op(s801),n]; else s800:=[op(s800),n]; fi;

%p od:

%p s800; # A285800

%p s801; # A285801 - _N. J. A. Sloane_, Sep 30 2017

%o (PARI) is(n)=2>#select(t->bittest(t,0),factor(n>>valuation(n,2))[,2])

%Y Complement of A285800.

%K nonn,easy

%O 1,2

%A _M. F. Hasler_, Apr 26 2017

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 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)