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!)
A157936 Numbers n divisible by the least prime >= sqrt(n). 5
2, 4, 6, 9, 10, 15, 20, 25, 28, 35, 42, 49, 55, 66, 77, 88, 99, 110, 121, 130, 143, 156, 169, 170, 187, 204, 221, 238, 255, 272, 289, 304, 323, 342, 361, 368, 391, 414, 437, 460, 483, 506, 529, 551, 580, 609, 638, 667, 696, 725, 754, 783, 812, 841, 868, 899, 930 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Contains A001248, A006094 and A157937 as subsequences.
LINKS
FORMULA
MATHEMATICA
dQ[n_]:=Module[{srn=Sqrt[n], x}, x=If [PrimeQ[srn], srn, NextPrime[srn]]; Divisible[n, x]]; Select [Range[1000], dQ] (* Harvey P. Dale, Mar 12 2011 *)
PROG
(PARI) for( n=1, 1999, n % nextprime(sqrtint(n-1)+1) | print1(n", ")) /* sqrtint(n-1)+1 avoids rounding errors but can be replaced by sqrt(n) for small n */
CROSSREFS
Cf. A157942.
Sequence in context: A219787 A331006 A065388 * A338348 A184978 A333231
KEYWORD
nonn
AUTHOR
M. F. Hasler, Mar 10 2009
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 April 16 09:52 EDT 2024. Contains 371698 sequences. (Running on oeis4.)