Questions tagged [triangular-numbers]

Numbers of the form $\sum_{i=1}^ni=1+2+3+4+...+n$.

Triangular numbers are named as such as they represent the number of dots in an equilateral triangle with $n$ dots a side. The sequence (OEIS sequence A000217) has the closed-form $$T_n=\sum\limits_{i=1}^ni=1+2+...+n=\frac{n\cdot(n+1)}2={n+1\choose2}$$

Use this tag solely if your question is about a property concerning this sequence.

40 questions
0
votes
0 answers

Why do multiples of triangular numbers appear in a specific logarithmic frequency?

I was looking at some cases of triangular numbers that are twice the amount of other triangular numbers, i.e. $\frac{n(n+1)}{2}=m(m+1)$ for some integers n and m. The first few cases of this are as follows in the form (n, m): (2, 3), (14, 20), (84,…
0
votes
2 answers

Reduce formular to triangular number

This formula is given: $$ n + (n-1) + (n-2) + (n-3) + (n-4) + \ldots + 1 \geq 100. $$ In the textbook it is written, the above is reduced using the triangular formula to $$ n (n+1) / 2 \geq 100. $$ But why can we reduce it? The general triangular…
jester
  • 324