
Macmillan J. answered 09/10/19
Former Software Engineer and Manager
Hi Mike,
Are you asking for an equation that would represent the described value in terms of n? If so then we just need to read the premise carefully. We are goind to sum n, and then its next consecutive integer, which would just be n + 1. That sum would be:
- n + ( n + 1)
- 2*n + 1
We then square that value:
- (2*n + 1)2
- 4*n2 + 4*n + 1
There you go!