A178044 Primes of the form k^3 - 13.
499, 2731, 26987, 46643, 124987, 405211, 636043, 941179, 1560883, 1727987, 2406091, 2985971, 5451763, 6434843, 8489651, 10360219, 11239411, 11852339, 13823987, 18821083, 19682987, 22906291, 37933043, 42874987, 49836019
Offset: 1
Keywords
Examples
8^3 - 13 = 499 = prime(95) = a(1); 14^3 - 13 = 2731 = prime(399) = a(2).
Links
- Muniru A Asiru, Table of n, a(n) for n = 1..2000
Programs
-
GAP
o := [];; for k in [1..10^4] do if IsPrime(k^3-13) then Add(o,k^3-13); fi; od; o; # Muniru A Asiru, Jan 21 2018
-
Magma
[ a: n in [3..500] | IsPrime(a) where a is n^3-13 ] // Vincenzo Librandi, Nov 30 2010
-
Maple
for k from 1 to 10^4 do if isprime(k^3-13) then print(k^3-13); fi; od; # Muniru A Asiru, Jan 21 2018
-
Mathematica
Select[Range[3, 500]^3 - 13, PrimeQ] (* Michael De Vlieger, Jan 21 2018 *)
Extensions
More terms from Vincenzo Librandi, Jun 03 2010
Comments