OFFSET
1,2
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..1000
Emre Alkan, Alexandru Zaharescu, Nonvanishing of the Ramanujan tau function in short intervals, International Journal of Number Theory, Vol. 1, No. 1 (2005) 45-51.
EXAMPLE
23*101^2 + 36 = 234659 (prime).
MATHEMATICA
Select[Range[1, 501, 2], PrimeQ[23#^2+36]&] (* Harvey P. Dale, Sep 01 2024 *)
PROG
(Magma) [ n: n in [0..1500] | IsPrime( 23*n^2 + 36) ]; // Vincenzo Librandi, Jan 31 2011
(PARI) is(n)=isprime(23*n^2+36) \\ Charles R Greathouse IV, Jun 13 2017
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Parthasarathy Nambi, Sep 26 2005
EXTENSIONS
Edited by Don Reble, Nov 08 2005
STATUS
approved