OFFSET
1,1
COMMENTS
Also primes of the form 5*j^2 + 18*j + 17. (Proof: this format implies that j=2*k, even, because otherwise 5*j^2 + 18*j + 17 is even and cannot be prime. So 5*j^2 + 18*j + 17 = 20*k^2 + 36*k + 17.) - R. J. Mathar, Jan 12 2009
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..1000
MATHEMATICA
Select[Table[20n^2+36n+17, {n, 0, 6001}], PrimeQ] (* Vincenzo Librandi, Jul 23 2012 *)
PROG
(Magma)[a: n in [0..100] | IsPrime(a) where a is 20*n^2+36*n+17]; // Vincenzo Librandi, Jul 23 2012
(PARI) select(isprime, vector(100, n, 20*(n-1)^2 + 36*(n-1) + 17)) \\ Robert C. Lyons, Feb 27 2025
CROSSREFS
KEYWORD
nonn,easy,changed
AUTHOR
Vincenzo Librandi, Jan 09 2009
STATUS
approved