cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A308966 Integers k > 1 whose least prime factor is greater than log_2(k).

This page as a plain text file.
%I A308966 #22 Sep 08 2022 08:46:21
%S A308966 2,3,5,7,11,13,17,19,23,25,29,31,37,41,43,47,49,53,59,61,67,71,73,77,
%T A308966 79,83,89,91,97,101,103,107,109,113,119,121,127,131,137,139,143,149,
%U A308966 151,157,163,167,169,173,179,181,187,191,193,197,199,209,211,221,223,227,229,233
%N A308966 Integers k > 1 whose least prime factor is greater than log_2(k).
%C A308966 p^k is a member if p is prime and 1 <= k < p/log_2(p).
%C A308966 p*q is a member if p and q are primes and p < q < 2^p/p.
%H A308966 Robert Israel, <a href="/A308966/b308966.txt">Table of n, a(n) for n = 1..10000</a>
%e A308966 a(24) = 77 is a member because its least prime factor is 7, and 7 > log_2(77) ~= 6.2668.
%p A308966 filter:= proc(n) 2^min(numtheory:-factorset(n)) > n end proc:
%p A308966 select(filter, [$2..1000]);
%t A308966 filterQ[n_] := FactorInteger[n][[1, 1]] > Log[2, n];
%t A308966 Select[Range[2, 1000], filterQ] (* _Jean-François Alcover_, Jul 31 2020 *)
%o A308966 (Magma) [k:k in [2..250]| PrimeDivisors(k)[1] gt Log(2,k)]; // _Marius A. Burtea_, Jul 03 2019
%Y A308966 Cf. A020639.
%K A308966 nonn
%O A308966 1,1
%A A308966 _Robert Israel_, Jul 03 2019