A200957 Primes of the form 8n^3-5.
3, 59, 211, 1723, 4091, 5827, 110587, 140603, 262139, 287491, 474547, 551363, 830579, 1191011, 1481539, 1643027, 2000371, 2299963, 2515451, 2863283, 2985979, 4251523, 5088443, 7077883, 8489659, 10941043, 14526779, 17984723, 22425763
Offset: 1
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Programs
-
Magma
[a: n in [1..200] | IsPrime(a) where a is 8*n^3-5]
-
Mathematica
Select[Table[8n^3-5,{n,1,4000}],PrimeQ]