|
|
A018252
|
|
The nonprime numbers: 1 together with the composite numbers, A002808.
|
|
376
|
|
|
1, 4, 6, 8, 9, 10, 12, 14, 15, 16, 18, 20, 21, 22, 24, 25, 26, 27, 28, 30, 32, 33, 34, 35, 36, 38, 39, 40, 42, 44, 45, 46, 48, 49, 50, 51, 52, 54, 55, 56, 57, 58, 60, 62, 63, 64, 65, 66, 68, 69, 70, 72, 74, 75, 76, 77, 78, 80, 81, 82, 84, 85, 86, 87, 88
(list;
graph;
refs;
listen;
history;
text;
internal format)
|
|
|
OFFSET
|
1,2
|
|
COMMENTS
|
The nonnegative nonprimes A141468 without zero; the natural nonprimes; the whole nonprimes; the counting nonprimes. If the nonprime numbers A141468 which are also the nonnegative integers A001477, then the nonprimes A141468 also called the nonnegative nonprimes. If the nonprime numbers A018252 which are also the natural (or whole or counting) numbers A000027, then the nonprimes A018252 also called the natural nonprimes, the whole nonprimes and the counting nonprimes. - Juri-Stepan Gerasimov, Nov 22 2009
|
|
REFERENCES
|
G. H. Hardy and E. M. Wright, An Introduction to the Theory of Numbers. 3rd ed., Oxford Univ. Press, 1954, p. 2.
|
|
LINKS
|
|
|
FORMULA
|
Let b(0) = n + pi(n) and b(n+1) = n + pi(b(n)), with pi(n) = A000720(n); then a(n) is the limit value of b(n). - Floor van Lamoen, Oct 08 2001
|
|
MAPLE
|
with(numtheory); sort(convert(convert([ seq(i, i=1..541) ], set) minus convert([ seq(ithprime(i), i=1..100) ], set), list));
seq(`if`(not isprime(n), n, NULL), n=1..88); # Peter Luschny, Jul 29 2009
A018252 := proc(n) option remember; if n = 1 then 1; else for a from procname(n-1)+1 do if not isprime(a) then return a; end if; end do; end if; end proc: # R. J. Mathar, Oct 22 2010
|
|
MATHEMATICA
|
max = 90; Complement[Range[max], Prime[Range[PrimePi[max]]]] (* Harvey P. Dale, Aug 12 2011 *)
|
|
PROG
|
(Magma) [n : n in [1..100] | not IsPrime(n) ];
(PARI) isA018252(n) = !isprime(n)
(Sage)
return [k for k in (1..n) if not k.is_prime()]
(Haskell)
a018252 n = a018252_list !! (n-1)
a018252_list = filter ((== 0) . a010051) [1..]
(Python)
from sympy import isprime
def ok(n): return not isprime(n)
(Python)
from sympy import composite
|
|
CROSSREFS
|
|
|
KEYWORD
|
nonn,nice,easy,core
|
|
AUTHOR
|
|
|
STATUS
|
approved
|
|
|
|