OFFSET
1,1
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
EXAMPLE
a(3)=120 is a member because 120 = x^3 + x^2*y + x*y^2 + y^3 where x=2 and y=4, but has no such representation where x and y are coprime positive integers.
206312 is not a member because although 206312 = x^3 + x^2*y + x*y^2 + y^3 where x=32 and y=42 are not coprime, it also has such a representation where x=15 and y=53 are coprime.
MAPLE
N:= 10000: # for terms <= N
S1:= {}: S2:= {}:
for x from 1 while (x+1)*(x^2+1) < N do
C:= {seq(i, i=1..min(x, (N-x^3)/x^2))}:
C1, C2:= selectremove(y -> igcd(x, y)=1, C);
V1:= select(`<=`, map(y -> (x+y)*(x^2+y^2), C1), N);
V2:= select(`<=`, map(y -> (x+y)*(x^2+y^2), C2), N);
S1:= S1 union V1;
S2:= S2 union V2;
od:
sort(convert(S2 minus S1, list));
CROSSREFS
KEYWORD
nonn
AUTHOR
Robert Israel, Sep 21 2020
STATUS
approved