Let the increasing sequence of integers D: d
1, d
2, d
3, ...d
n-1, d
n...
represent the sequence of consecutive differences of another sequence T: t
1, t
2, t
3, ...t
n-1, t
n.
Given t1=0 , and tk-tk-1=dk-1=k, provide definition and formula for the sequence T.
I assume T is also infinite (..., tn, ...)
with d_k-1 = k
D: 2, 3, 4, 5,...
so, adding
T: 0, 2, 5, 9, 14...
so tn = sum[{i=2:n} i ] = sum[ {i=1:n} i ] -1 = n(n+1)/2 -1