A201717 Primes of the form 3*m^2 - 5.
7, 43, 103, 967, 1447, 1723, 2347, 3067, 3463, 4327, 6343, 6907, 9403, 11527, 13063, 21163, 23227, 28807, 32443, 33703, 44647, 47623, 52267, 65707, 71143, 74887, 80683, 88747, 90823, 99367, 110587, 137383, 142567, 150523, 175687
Offset: 1
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..5000
Crossrefs
Programs
-
Magma
[a: n in [2..300] | IsPrime(a) where a is 3*n^2-5];
-
Mathematica
Select[Table[3n^2-5,{n,2,1000}],PrimeQ]
Comments