Talk:Sequence of primes by trial division

From Rosetta Code
Revision as of 17:09, 15 April 2015 by Rdm (talk | contribs) (→‎Fortran implementation: new section)

For the context to this, see Sieve of Eratosthenes talk page. -- WillNess (talk) 14:09, 13 September 2014 (UTC)

Fortran implementation

The comments on the fortran implementation currently state:

"Likewise, although the last possible factor to try for n up to the integer limit of 32767 is 16381 because the square of the next prime (16411) exceeds 32767, in order for the method to be able to know this, the PRIME array must have space for this surplus prime."

And, indeed, both 16381 and 16411 are prime numbers.

But the first prime whose square exceeds 32767 is 191.

What is really going on here? --Rdm (talk) 17:09, 15 April 2015 (UTC)