(Shoutout to camelman for the problem)
The problem:
Given a pizza, what is the most amount of slices one can obtain by cutting it with straight lines times?
Some experimentation:

The way to generate the most slices:
The trick for getting as many slices as possible every time is to draw a line that intersects every other line that has been drawn. That is, if there have been slices, the
th slice must intersect all of those lines. The problem now is to express this as a formula of the form
.
Expressing it as :
Note that if the th line crosses
lines then it has cut through
old slices. Therefore, given
, we have:
These are precisely the triangular numbers plus 1, and the formula for the th triangular number is
so our desired formula is