login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 


A180099
Primes which are the sum of three distinct positive cubes of prime numbers in two or more distinct ways.
2
185527, 451837, 591751, 1265471, 1266929, 1618973, 1626227, 1664713, 2586277, 2754683, 2765519, 2805193, 3422303, 3740309, 3748499, 4154779, 5336479, 5483953, 5557987, 6130151, 6586091, 7231013, 7361801, 7726571, 8205553
OFFSET
1,1
EXAMPLE
185527 = 47^3+43^3+13^3=53^3+31^3+19^3.
MATHEMATICA
lst={}; Do[Do[Do[If[PrimeQ[p=Prime[a]^3+Prime[b]^3+Prime[c]^3], AppendTo[lst, p]], {c, b-1, 1, -1}], {b, a-1, 1, -1}], {a, 88}]; lst1=Sort@lst; lst={}; Do[If[lst1[[n]]==lst1[[n+1]], AppendTo[lst, lst1[[n]]]], {n, Length[lst1]-1}]; lst
Select[Tally[Select[Total/@Subsets[Prime[Range[50]]^3, {3}], PrimeQ]], #[[2]]> 1&] [[All, 1]]//Sort (* Harvey P. Dale, Sep 26 2020 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified September 20 17:28 EDT 2024. Contains 376075 sequences. (Running on oeis4.)