A038600 Primes of the form n^3 - 2.
727, 3373, 6857, 19681, 29789, 50651, 300761, 753569, 970297, 1295027, 1771559, 2146687, 2460373, 3048623, 3442949, 4492123, 6539201, 6751267, 8120599, 8869741, 9393929, 10218311, 13997519, 17373977, 18609623, 19034161, 21253931
Offset: 1
Keywords
Examples
a(2) = 3373 = 15^3 - 2 = A038599(2)^3 - 2.
Links
- Nathaniel Johnston, Table of n, a(n) for n = 1..10000
Crossrefs
Cf. A038599.
Programs
-
Mathematica
lst={};Do[s=n^3;If[PrimeQ[p=s-2], AppendTo[lst, p]], {n, 6!}];lst (* Vladimir Joseph Stephan Orlovsky, Sep 26 2008 *) Select[Range[300]^3-2,PrimeQ] (* Harvey P. Dale, Jul 18 2015 *)
Extensions
Corrected and extended by Jud McCranie, Jan 04 2001