|
| |
|
|
A055398
|
|
Result of fourth stage of sieve of Eratosthenes (after eliminating multiples of 2, 3, 5, 7).
|
|
1
| |
|
|
2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 89, 97, 101, 103, 107, 109, 113, 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, 239
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 1,1
|
|
|
COMMENTS
| Essentially the same as A052424. [From R. J. Mathar (mathar(AT)strw.leidenuniv.nl), Oct 13 2008]
|
|
|
LINKS
| H. B. Meyer, Eratosthenes' sieve
|
|
|
MATHEMATICA
| Join[{2, 3, 5, 7}, Select[Table[n, {n, 2, 500}], Mod[#, 2]!=0&&Mod[#, 3]!=0&&Mod[#, 5]!=0&&Mod[#, 7]!=0&]] (*From Vladimir Joseph Stephan Orlovsky, Feb 18 2011*)
|
|
|
CROSSREFS
| Cf. A000040, A004280, A038179, A055396-A055399.
Sequence in context: A110923 A137589 A052424 * A070159 A158611 A182986
Adjacent sequences: A055395 A055396 A055397 * A055399 A055400 A055401
|
|
|
KEYWORD
| nonn
|
|
|
AUTHOR
| Henry Bottomley (se16(AT)btinternet.com), May 15 2000
|
| |
|
|