A214696 Sum of next a(n) > 1 positive triangular numbers is a triangular number.
3, 7, 13, 17, 4919, 73789919
Offset: 1
Examples
1+3+6 = 10 is a triangular number, so a(1)=3, then 10+15+21+28+36+45+55 = 210 is a triangular number, seven summands, so a(2)=7.
Formula
a(n) is the smallest integer k > 1 such that (4*k^3 + 12*s*k^2 + 4*(3*s^2-1)*k)/3 + 1 is a square, where s = 1 + a(1) + a(2) + ... + a(n-1). - Max Alekseyev, Jan 30 2014
Comments