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”).

A086119
Numbers of the form p^3 + q^3, p, q primes.
13
16, 35, 54, 133, 152, 250, 351, 370, 468, 686, 1339, 1358, 1456, 1674, 2205, 2224, 2322, 2540, 2662, 3528, 4394, 4921, 4940, 5038, 5256, 6244, 6867, 6886, 6984, 7110, 7202, 8190, 9056, 9826, 11772, 12175, 12194, 12292, 12510, 13498, 13718, 14364
OFFSET
1,1
EXAMPLE
133 belongs to the sequence because it can be written as 2^3 + 5^3.
MATHEMATICA
sumList[x_List, y_List] := Module[{t = {}}, Do[t = Union[t, x[[i]] + y], {i, Length[x]}]; t]; nn = 10; Select[sumList[Prime[Range[nn]]^3, Prime[Range[nn]]^3], # < Prime[nn]^3 &]
CROSSREFS
KEYWORD
nonn
AUTHOR
EXTENSIONS
More terms from Alexander Adamchuk, Nov 10 2006
STATUS
approved