OFFSET
1,1
COMMENTS
See A195770 for definitions of k-Pythagorean triple, primitive k-Pythagorean triple, and lists of related sequences.
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
EXAMPLE
Primitive (1/4)-Pythagorean triples a,b,c where c^2=a^2+b^2+(1/4)*a*b:
2, 2, 3
4, 15, 16
5, 32, 33
6, 70, 71
7, 20, 22
7,192,193
9, 44, 46
10, 26, 29
11, 20, 24
12, 17, 22
MAPLE
F:= proc(a)
sort(select(t -> subs(t, b) >= a and subs(t, c) > 0 and igcd(a, subs(t, b), subs(t, c)) = 1, [isolve](4*a^2 + 4*b^2 + a*b = 4*c^2)), (s, t) -> subs(s, b) <= subs(t, b))
end proc:
seq(a$nops(F(a)), a=1..100); # 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