2 pix - number of primes not exceeding specified number
11 return nonnegative integer, or err
14 If n is fractional or n >= 2^32, pix(n) causes an error,
15 pix(n, err) returns the value of err.
17 If n is an integer < 2^32, pix(n) returns the number of primes
18 (2, 3, 5, ...) less or equal to n.
21 ; for (i = 0; i <= 20; i++) print pix(i),:;
22 0 0 1 2 2 3 3 4 4 4 4 5 5 6 6 6 6 7 7 8 8
24 ; print pix(100), pix(1000), pix(1e4), pix(1e5), pix(1e6)
25 25 168 1229 9592 78498
27 ; print pix(2^32 - 1, -1), pix(2^32, -1)
38 factor, isprime, lfactor, nextcand, nextprime, prevcand, prevprime,
41 ## Copyright (C) 1999-2006 Landon Curt Noll
43 ## Calc is open software; you can redistribute it and/or modify it under
44 ## the terms of the version 2.1 of the GNU Lesser General Public License
45 ## as published by the Free Software Foundation.
47 ## Calc is distributed in the hope that it will be useful, but WITHOUT
48 ## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
49 ## or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
50 ## Public License for more details.
52 ## A copy of version 2.1 of the GNU Lesser General Public License is
53 ## distributed with calc under the filename COPYING-LGPL. You should have
54 ## received a copy with calc; if not, write to Free Software Foundation, Inc.
55 ## 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
57 ## @(#) $Revision: 30.1 $
58 ## @(#) $Id: pix,v 30.1 2007/03/16 11:10:42 chongo Exp $
59 ## @(#) $Source: /usr/local/src/cmd/calc/help/RCS/pix,v $
61 ## Under source code control: 1995/12/18 12:34:58
62 ## File existed as early as: 1995
64 ## chongo <was here> /\oo/\ http://www.isthe.com/chongo/
65 ## Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/