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

A354968
Triangle read by rows: T(n, k) = n*k*(n+k)*(n-k)/6.
0
1, 4, 5, 10, 16, 14, 20, 35, 40, 30, 35, 64, 81, 80, 55, 56, 105, 140, 154, 140, 91, 84, 160, 220, 256, 260, 224, 140, 120, 231, 324, 390, 420, 405, 336, 204, 165, 320, 455, 560, 625, 640, 595, 480, 285, 220, 429, 616, 770, 880, 935, 924, 836, 660, 385, 286, 560, 810, 1024
OFFSET
2,2
COMMENTS
Given a Pythagorean triple (a,b,c), define S = c^4 - a^4 - b^4. Using Euclid's parameterization (a = 2*n*k, b = n^2 - k^2, c = n^2 + k^2), substituting to get S in terms of n and k gives S = 8*n^2*k^2*((n^2 - k^2))^2, which is a multiple of 288; T(n, k) = sqrt(S/288) = n*k*(n^2 - k^2)/6 = n*k*(n+k)*(n-k)/6.
EXAMPLE
Triangle begins:
n/k 1 2 3 4 5 6 7
2 1;
3 4, 5;
4 10, 16, 14;
5 20, 35, 40, 30;
6 35, 64, 81, 80, 55;
7 56, 105, 140, 154, 140, 91;
8 84, 160, 220, 256, 260, 224, 140;
...
For n = 3, k = 2, a = 5, b = 12, c = 13. T(3, 2) = sqrt((13^4 - 5^4 - 12^4)/288) = 5.
CROSSREFS
Cf. A120070 (b leg), A055096 (c hypotenuse).
Cf. A006414 (row sums), A000292 (column 1), A077414 (column 2), A000330 (diagonal), A107984 (transpose), A210440 (diagonal which begins with 4).
Sequence in context: A287578 A135104 A131780 * A102006 A118735 A002970
KEYWORD
nonn,easy,tabl
AUTHOR
Ali Sada and Yifan Xie, Jun 14 2022
STATUS
approved