A200849 Primes of the form 3n^3-5.
19, 643, 1531, 5179, 17491, 41467, 65851, 98299, 862483, 1316923, 2044411, 3779131, 4214779, 4929091, 6899899, 8589859, 9336403, 12754579, 16919251, 18085699, 26225443, 30233083, 48009019, 56463283, 70180963, 74691259, 82630819
Offset: 1
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Programs
-
Magma
[a: n in [2..400] | IsPrime(a) where a is 3*n^3-5]
-
Mathematica
Select[Table[3n^3-5,{n,2,2500}],PrimeQ]