OFFSET
1,1
COMMENTS
All the numbers in this sequence are even.
LINKS
G. C. Greubel, Table of n, a(n) for n = 1..5000
EXAMPLE
If n=80 then(23*n^2) - 49 = 147151 (prime).
MATHEMATICA
Select[Range[700], PrimeQ[23*#^2 - 49] &] (* G. C. Greubel, Oct 19 2017 *)
PROG
(Magma) [n: n in [2..100000] |IsPrime((23*n^2)-49)] - Vincenzo Librandi, Nov 13 2010
(PARI) is(n)=isprime(23*n^2-49) \\ Charles R Greathouse IV, Jun 13 2017
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Parthasarathy Nambi, Oct 03 2005
STATUS
approved