A183150 Semiprimes s such that s^2 is expressible as the sum of two positive cubes.
4, 671, 1261, 6371, 127499, 377567, 897623, 1984009, 4266107, 4870741, 4974061, 5491823, 24923137, 26784757, 28192247, 33601933, 36295069, 44091347, 44988481, 61717319, 95327051, 97587433, 99712367, 142798573, 149982097, 193405967
Offset: 1
Keywords
Examples
a(1) = 4 = 2*2 because 4^2 = 16 = 2^3 + 2^3 . a(2) = 671 = 11 * 61 and 56^3 + 65^3 = 671^2 = 450241. a(3) = 1261 = 13 * 97 and 1261^2 = 57^3 + 112^3. a(6) = 897623 = 107 * 8389.
Programs
-
Mathematica
Select[Range[194*10^6],PrimeOmega[#]==2&&Length[ PowersRepresentations[ #^2,2,3]]>0&] (* The program takes a long time to run. *) (* Harvey P. Dale, Feb 27 2016 *)
Extensions
a(9)-a(26) from Donovan Johnson, Feb 11 2011
Comments