OFFSET
1,2
LINKS
G. C. Greubel, Table of n, a(n) for n = 1..5000
EXAMPLE
If n=133 then 23*n^2 - 36 = 406811 (prime).
MATHEMATICA
Select[Range[800], PrimeQ[23*#^2 - 36] &] (* Stefan Steinerberger, Feb 28 2006 *)
PROG
(Magma) [n: n in [0..1000]| IsPrime(23*n^2- 36)]; // Vincenzo Librandi, Feb 03 2011
(PARI) is(n)=isprime(23*n^2-36) \\ Charles R Greathouse IV, Jun 13 2017
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Parthasarathy Nambi, Oct 03 2005
EXTENSIONS
More terms from Stefan Steinerberger, Feb 28 2006
STATUS
approved