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”).

A347190
Numbers k with positive integer solutions a,b,c such that 2*a^2 + b^2 = c^2, k = a + b + c, and a <= b <= c.
0
20, 24, 40, 42, 48, 60, 72, 80, 84, 96, 100, 110, 112, 120, 126, 130, 140, 144, 156, 160, 168, 180, 192, 198, 200, 210, 216, 220, 224, 238, 240, 252, 260, 264, 266, 272, 280, 286, 288, 294, 300, 304, 308, 312, 320, 330, 336, 340, 342, 360, 364, 378, 380, 384, 390, 396, 400, 408
OFFSET
1,1
EXAMPLE
20 is in the sequence since 20 = 4 + 7 + 9 and 2*4^2 + 7^2 = 9^2.
MATHEMATICA
Select[Range[400], Length @ Reduce[a + b + c == # && 0 < a <= b <= c && 2*a^2 + b^2 == c^2, {a, b, c}, Integers] > 0 &] (* Amiram Eldar, Nov 07 2021 *)
CROSSREFS
Sequence in context: A060461 A214177 A044996 * A263016 A107302 A219392
KEYWORD
nonn
AUTHOR
Wesley Ivan Hurt, Nov 07 2021
STATUS
approved