A201308 Primes of the form k^3 + 6.
7, 131, 349, 2203, 4919, 68927, 389023, 456539, 1030307, 1092733, 2352643, 2924213, 3048631, 4173287, 5177723, 5929747, 6539209, 15813257, 19902517, 22665193, 25153763, 30664303, 34328131, 59776477, 61629881, 76765631, 97972187, 122763479, 127263533, 133432837
Offset: 1
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..2000
Programs
-
Magma
[a: n in [0..800] | IsPrime(a) where a is n^3+6];
-
Mathematica
Select[Range[0, 7000]^3 + 6, PrimeQ]