OFFSET
1,3
COMMENTS
For 5, 6,...,18, the expression is negative, so the absolute value must be considered to get a (positive) prime. Thereafter, for 45, 53, 54, 58, 60, 63, 67, 68, 72, 74,... the values are composite. - M. F. Hasler, Jan 18 2015
LINKS
Eric Weisstein's World of Mathematics, Prime-Generating Polynomial
MATHEMATICA
Select[Range[0, 100], PrimeQ[(36 #^2 - 810 # + 2753)] &]
PROG
(Magma) [n: n in [0..100] | IsPrime(36*n^2-810*n+2753)];
(PARI) for(n=0, 999, isprime(abs(36*n^2-810*n+2753))&&print1(n", "))
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Nov 21 2014
EXTENSIONS
Corrected by M. F. Hasler, Jan 18 2015
STATUS
approved