First there are an infinite number of perfectly valid continuations of that sequence. To find
one you can use the fact that, given n points, there exist a unique polynomial, of degree n-1 or less, passing through those n points.
Here, taking the "x" values to be 0, 1, 2, and 3, we have four points (0, -145), (1, -91), (2, -49), and (3, -19) so we can find a polynomial of degree 3,
y=ax3+bx2+cx+d. Taking x= 0, y= -145,
a(03)+b(02)+c(0)+d=d=−145. Taking x= 1, y= -91,
a(13)+b(12)+c(1)+d=a+b+c+d=−91,
a(23)+b(22)+c(2)+2=8a+4b+2c+d=−49, and
a(33)+b(32)+c(3)+d=27a+9b+3c+d=−19.
Since d= -145, we have a+ b+ c- 145= -91 so a+ b+ c= 54, 8a+ 4b+ 2c- 145= -49 so 8a+ 4b+ 2c= 96, and 27a+ 9b+ 3c- 145= -19 so 27a+ 9b+ 3c= 126.
Now we have three linear equations to solve for a, b, and c.