A373051 Number of non-similar triangles possible with distinct positive integer side lengths of at most n units.
0, 0, 0, 1, 3, 7, 13, 21, 33, 47, 67, 87, 117, 147, 187, 227, 283, 331, 403, 467, 551, 631, 741, 829, 959, 1073, 1217, 1349, 1531, 1667, 1877, 2053, 2273, 2473, 2737, 2941, 3247, 3499, 3811, 4083, 4463, 4739, 5159, 5499, 5907, 6281, 6787, 7155, 7701, 8131, 8675, 9155, 9805
Offset: 1
Keywords
Examples
For n = 5, the 3 solutions are (4, 3, 2), (5, 4, 2), and (5, 4, 3).
Links
- David A. Corneth, Table of n, a(n) for n = 1..10000 (first 2893 terms from Andrés Sancho)
- David A. Corneth, PARI program
Programs
-
PARI
\\ See PARI link
Formula
a(n) = 1 + 2*Sum_{k=5..n} A373041(k) for n >= 5.
Comments