OFFSET
1,1
COMMENTS
The integer square root of an integer x >= 0 can be defined as floor(sqrt(x)) and the remainder of this as x - (floor(sqrt(x)))^2.
LINKS
Wikipedia, Integer square root
PROG
(PARI) { forprime(p=2, 2000, isr = sqrtint(p); if (!isprime(isr), print1(p, ", ") ) ) }
CROSSREFS
KEYWORD
nonn
AUTHOR
Harry J. Smith, Dec 07 2007
STATUS
approved