login
A196260
Positive integers b in (1/4)-Pythagorean triples (a,b,c) satisfying a<=b, in order of increasing a and then increasing b.
5
2, 4, 15, 32, 6, 70, 20, 192, 8, 30, 44, 10, 26, 64, 20, 12, 17, 45, 140, 220, 14, 40, 384, 32, 96, 884, 16, 60, 160, 18, 88, 210, 64, 20, 39, 52, 75, 128, 391, 60, 576, 22, 40, 102, 950, 228, 2080, 24, 34, 90, 280, 32, 160, 348, 26, 186, 440, 132, 28, 80, 105, 253, 768, 1100, 30, 64, 78, 192
OFFSET
1,1
COMMENTS
See A195770 for definitions of k-Pythagorean triple, primitive k-Pythagorean triple, and lists of related sequences.
LINKS
MAPLE
F:= proc(a)
sort(select(t -> subs(t, b) >= a and subs(t, c) > 0, [isolve](4*a^2 + 4*b^2 + a*b = 4*c^2)), (s, t) -> subs(s, b) <= subs(t, b))
end proc:
seq(op(map(t -> subs(t, b), F(a))), a=1..40); # Robert Israel, Dec 20 2024
MATHEMATICA
(See A196259.)
CROSSREFS
KEYWORD
nonn
AUTHOR
Clark Kimberling, Sep 30 2011
EXTENSIONS
Corrected by Robert Israel, Dec 20 2024
STATUS
approved