login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A157938
Numbers n divisible by the least prime >= sqrt(n) but not by the largest prime <= sqrt(n).
3
10, 20, 28, 42, 55, 66, 88, 99, 110, 130, 156, 170, 187, 204, 238, 255, 272, 304, 342, 368, 391, 414, 460, 483, 506, 551, 580, 609, 638, 696, 725, 754, 783, 812, 868, 930, 962, 999, 1036, 1073, 1110, 1184, 1221, 1258, 1295, 1332, 1394, 1435, 1476, 1558
OFFSET
1,1
COMMENTS
Also: Numbers n divisible by the least prime >= sqrt(n) which are not in A001248 (primes squared) or A006094 (product of two consecutive primes). A subsequence of A157937.
LINKS
EXAMPLE
a(1)=10 and a(2)=20 are divisible by 5 = nextprime(sqrt(10)) = nextprime(sqrt(20)) and neither a prime squared (as are 4 and 9) nor product of consecutive primes (as are 6 and 15).
5,7,8 are not in this sequence, since not a multiple of 3=nextprime(sqrt(5))=nextprime(sqrt(8)).
MATHEMATICA
dpQ[n_]:=Module[{srn=Sqrt[n], a, b}, a=If[PrimeQ[srn], srn, NextPrime[ srn]]; b=If[PrimeQ[srn], srn, NextPrime[srn, -1]]; Divisible[n, a]&& !Divisible[ n, b]]; Select[Range[2000], dpQ] (* Harvey P. Dale, Oct 10 2011 *)
PROG
(PARI) for( n=5, 1999, n % nextprime(sqrtint(n-1)+1) & next; n % precprime(sqrtint(n)) & print1(n", "))
CROSSREFS
Cf. A157940.
Sequence in context: A175229 A242964 A063117 * A095208 A291625 A172260
KEYWORD
nonn
AUTHOR
M. F. Hasler, Mar 10 2009
STATUS
approved