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!)
A308966 Integers k > 1 whose least prime factor is greater than log_2(k). 2
2, 3, 5, 7, 11, 13, 17, 19, 23, 25, 29, 31, 37, 41, 43, 47, 49, 53, 59, 61, 67, 71, 73, 77, 79, 83, 89, 91, 97, 101, 103, 107, 109, 113, 119, 121, 127, 131, 137, 139, 143, 149, 151, 157, 163, 167, 169, 173, 179, 181, 187, 191, 193, 197, 199, 209, 211, 221, 223, 227, 229, 233 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
p^k is a member if p is prime and 1 <= k < p/log_2(p).
p*q is a member if p and q are primes and p < q < 2^p/p.
LINKS
EXAMPLE
a(24) = 77 is a member because its least prime factor is 7, and 7 > log_2(77) ~= 6.2668.
MAPLE
filter:= proc(n) 2^min(numtheory:-factorset(n)) > n end proc:
select(filter, [$2..1000]);
MATHEMATICA
filterQ[n_] := FactorInteger[n][[1, 1]] > Log[2, n];
Select[Range[2, 1000], filterQ] (* Jean-François Alcover, Jul 31 2020 *)
PROG
(Magma) [k:k in [2..250]| PrimeDivisors(k)[1] gt Log(2, k)]; // Marius A. Burtea, Jul 03 2019
CROSSREFS
Cf. A020639.
Sequence in context: A161578 A261271 A335284 * A186891 A206074 A325559
KEYWORD
nonn
AUTHOR
Robert Israel, Jul 03 2019
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 July 11 13:17 EDT 2024. Contains 374232 sequences. (Running on oeis4.)