OFFSET
1,1
COMMENTS
This same list will also appear for 0<=x<=39 using the form 4x^2-158x+1601.
The substitution 2n = m changes this quadratic form into Euler's famous quadratic form m^2+m+41 (see A005846). Concerning the conjectured extremal properties of these forms, one should note the comment from T. D. Noe in A005846. For another quadratic form similar to this one, see A145096. - N. J. A. Sloane, Dec 17 2016
MAPLE
s1:=[]; f:=n->4*n^2+2*n+41;
for n from -20 to 19 do if isprime(abs(f(n))) then s1:=[op(s1), abs(f(n))]; fi; od:
s1; # From N. J. A. Sloane, Dec 17 2016. This does nothing more than produce the primes mentioned in the definition
CROSSREFS
KEYWORD
fini,nonn
AUTHOR
Charles Kusniec, Dec 08 2016
EXTENSIONS
Edited by N. J. A. Sloane, Dec 17 2016
STATUS
approved