OFFSET
1,1
COMMENTS
Or: Positive numbers n such that n + k^2 is composite for all 1 <= k^2 <= n.
The next term a(105), if it exists, is > 156*10^6. - M. F. Hasler, May 07 2018
LINKS
N. J. A. Sloane, Table of n, a(n) for n = 1..104 (cf. Jagy & Kaplansky).
William C. Jagy and Irving Kaplansky, Positive definite binary quadratic forms that represent the same primes [Cached copy]
PROG
(PARI) is(n)=!for(k=1, sqrtint(n), isprime(n+k^2)&&return) \\ M. F. Hasler, May 07 2018
CROSSREFS
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Jun 22 2014
EXTENSIONS
Added "n>1" as suggested by David J. Seal. - N. J. A. Sloane, May 19 2018
STATUS
approved