OFFSET
1,1
COMMENTS
Not every term is cubefree; some are sb^3 where s is in A159843 and b > 1.
LINKS
Rosalie Fay, Table of n, a(n) for n = 1..100
EXAMPLE
14916727 = 246^3 + 31^3 = 240^3 + 103^3 and 246 & 31 are coprime, as are 240 & 103, but it is not also the sum of cubes of 2 non-coprime positive integers, so 14916727 is in the sequence.
MATHEMATICA
Module[{smax = 2*10^8 (* upper limit of terms *), m, f, s}, m = smax^(1/3) // Ceiling; f[_] = {}; Reap[Do[AppendTo[f[s = i^3 + j^3], {i, j}]; If[s <= smax && Length[f[s]] >= 2 && AllTrue[f[s], CoprimeQ @@ #&], Sow[s]], {i, 1, m}, {j, i, m}]][[2, 1]]] // Sort (* Jean-François Alcover, Jun 29 2023 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Rosalie Fay, Oct 16 2017
STATUS
approved