OFFSET
1,1
COMMENTS
See references of A176722.
For nonnegative integers k, (-k)^3 - 13 = -(k^3 + 13).
Necessarily, k = 6*j or k = 6*j + 2 as 4^3 - 13 = 3 * 17.
Values of k corresponding to terms of this sequence: 8, 14, 30, 36, 50, 74, 86, 98, 116, 120, 134, 144, 176, 186, 204, 218, 224, 228, 240, 266, 270, 284, 336, 350, 368, 396, 434, 476, 498, 534, 560, 564, 606, 620, 674, 704, 716, 746, 750, 756, 758, 914, 918, 924, 954, 966, 968, 974, 980, 1010.
k = 756 = 2^2 * 3^3 * 7 is the first positive integer (necessarily k = 6*j) such that both k^3 - 13 and k^3 + 13 are primes: p = 432081203 = prime(i), i = 22952658, p + 2*13 = prime(i+1).
LINKS
Muniru A Asiru, Table of n, a(n) for n = 1..2000
EXAMPLE
8^3 - 13 = 499 = prime(95) = a(1);
14^3 - 13 = 2731 = prime(399) = a(2).
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 *)
PROG
(Magma) [ a: n in [3..500] | IsPrime(a) where a is n^3-13 ] // Vincenzo Librandi, Nov 30 2010
(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
CROSSREFS
KEYWORD
nonn
AUTHOR
Eva-Maria Zschorn (e-m.zschorn(AT)zaschendorf.km3.de), May 18 2010
EXTENSIONS
More terms from Vincenzo Librandi, Jun 03 2010
STATUS
approved