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!)
A161424 Numbers k whose largest divisor <= sqrt(k) equals 4. 28
16, 20, 24, 28, 32, 44, 52, 68, 76, 92, 116, 124, 148, 164, 172, 188, 212, 236, 244, 268, 284, 292, 316, 332, 356, 388, 404, 412, 428, 436, 452, 508, 524, 548, 556, 596, 604, 628, 652, 668, 692, 716, 724, 764, 772, 788, 796, 844, 892, 908, 916, 932, 956, 964 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Define a sieve operation with parameter s that eliminates integers of the form s^2 + s*i (i >= 0) from the set A000027 of natural numbers. The sequence lists those natural numbers that are eliminated by the sieve s=4 and cannot be eliminated by any sieve s >= 5. - R. J. Mathar, Jun 24 2009
See A161344 for more information. - Omar E. Pol, Jul 05 2009
See also the array in A163280, the main entry for this sequence. - Omar E. Pol, Oct 24 2009
LINKS
FORMULA
Numbers n such that A033676(n)=4. - Omar E. Pol, Jul 05 2009
MAPLE
isA := proc(n, s) if n mod s <> 0 then RETURN(false); fi; if n/s-s >= 0 then RETURN(true); else RETURN(false); fi; end: isA161424 := proc(n) for s from 5 to n do if isA(n, s) then RETURN(false); fi; od: isA(n, 4) ; end: for n from 1 to 3000 do if isA161424(n) then printf("%d, ", n) ; fi; od; # R. J. Mathar, Jun 24 2009
MATHEMATICA
Select[Range[1, 1000], Function[m, Max[Select[Divisors[m], # <= Sqrt[m] &]] == 4]] (* Ashton Baker, Nov 03 2013 *)
CROSSREFS
Cf. Fourth column of array in A163280. Also, fourth row of array in A163990. - Omar E. Pol, Oct 24 2009
Sequence in context: A163901 A044860 A272533 * A248428 A088449 A104010
KEYWORD
easy,nonn
AUTHOR
Omar E. Pol, Jun 20 2009
EXTENSIONS
Terms beyond a(8) from R. J. Mathar, Jun 24 2009
Definition added by R. J. Mathar, Jun 28 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 May 3 07:04 EDT 2024. Contains 372206 sequences. (Running on oeis4.)