login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A035496
Numbers of the form x*y^2 + y*z^2 + z*x^2, x,y,z >= 1.
1
3, 7, 13, 14, 21, 23, 24, 25, 31, 34, 38, 39, 40, 43, 47, 55, 56, 57, 59, 61, 62, 73, 78, 79, 80, 81, 82, 84, 89, 91, 93, 98, 104, 107, 109, 111, 112, 113, 115, 119, 121, 123, 133, 134, 136, 138, 139, 140, 142, 146, 147, 148, 150, 152, 155, 157, 163, 165, 166, 167
OFFSET
1,1
LINKS
MAPLE
N:= 1000: # for terms <= N
S:= {}:
for x from 1 while x + x^2 <= N do
for y from 1 to x while x*y^2 + y + x^2 <= N do
for z from 1 to x do
v:= x*y^2 + y*z^2 + z*x^2;
if v > N then break fi;
S:= S union {v};
od od od:
sort(convert(S, list)); # Robert Israel, Mar 23 2021
MATHEMATICA
Select[ Union[ Flatten[ Table[ x^2y+y^2z+z^2x, {x, 1, 13}, {y, 1, 13}, {z, 1, 13} ] ] ], #<14^2+14+1& ]
CROSSREFS
Sequence in context: A290642 A295009 A310251 * A310252 A056530 A341447
KEYWORD
nonn,easy
EXTENSIONS
More terms from Erich Friedman
STATUS
approved