A191345 Numbers n with property that n and 2n are sums of two distinct positive cubes.
728, 756, 2457, 5824, 6048, 9288, 14364, 15561, 19656, 19684, 20412, 25327, 25389, 39816, 46592, 48384, 66339, 70336, 74304, 76167, 76895, 82251, 91000, 94500, 114912, 119574, 124488, 150444, 152208, 157248, 157472, 163296, 202616, 203112, 240002, 248976
Offset: 1
Keywords
Links
- Chai Wah Wu, Table of n, a(n) for n = 1..10000
Crossrefs
Cf. A024670.
Programs
-
Mathematica
tdpcQ[n_]:=Module[{pr1=PowersRepresentations[n,2,3],pr2= PowersRepresentations[ 2n,2,3]},Length[pr1]>0&& Length[pr2]>0 && !MemberQ[Flatten[pr1],0] &&!MemberQ[Flatten[pr2],0]]; Select[Range[ 250000],tdpcQ] (* Harvey P. Dale, Jul 11 2014 *)
Comments