A122723 Primes that are the sum of three distinct positive cubes.
73, 197, 251, 281, 307, 349, 521, 547, 577, 701, 757, 853, 863, 881, 919, 953, 1009, 1091, 1217, 1249, 1483, 1559, 1637, 1861, 1907, 2069, 2087, 2267, 2269, 2287, 2339, 2477, 2521, 2729, 2753, 2843, 2927, 2953, 2969, 3067, 3257, 3413, 3457, 3527, 3529
Offset: 1
Examples
a(1) = 73 = 1^3 + 2^3 + 4^3. a(7) = 521 = 1^3 + 2^3 + 8^3.
Links
- T. D. Noe, Table of n, a(n) for n=1..1000
Programs
-
Mathematica
lst={};Do[Do[Do[p=n^3+m^3+k^3;If[PrimeQ[p],AppendTo[lst,p]],{n,m+1,4!}],{m,k+1,4!}],{k,4!}];Take[Union[lst],30] (* Vladimir Joseph Stephan Orlovsky, May 23 2009 *)
Formula
Primes in A024975.
Extensions
Corrected and extended by Vladimir Joseph Stephan Orlovsky and T. D. Noe, Jul 16 2010
Comments