[go: up one dir, main page]

login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A176871
Prime numbers p such that p-q^3 is a prime number, (q is a prime number, q^3=LargestCube, LargestCube <= p).
1
11, 13, 19, 29, 127, 24391, 357913, 571789
OFFSET
1,1
COMMENTS
3-1^3=2, 11-2^3=3, 13-2^3=5, 19-2^3=11, 29-3^3=2, 127-5^3=2,..
MATHEMATICA
lst={}; Do[q=Floor[n^(1/3)]; p=n-q^3; If[PrimeQ[p]&&PrimeQ[n]&&PrimeQ[q], AppendTo[lst, n]], {n, 2*9!}]; lst
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved