- #1
IntegrateRSC
- 1
- 0
Sorry if this is a well known thing, but I've noticed this and decided to see how well known it is, also if there is a way to prove it other than the recursive series.
an=(an-1-an-2+2)+an-1
This recursive series will in fact generate every square number. Take in example:
a0=0
a1=1
So if you use the recursive series above:
a2=(a1-a0+2)+a1
a2=(1-0+2)+1
Any comments? I'm praying I used the 'sub' tags right
an=(an-1-an-2+2)+an-1
This recursive series will in fact generate every square number. Take in example:
a0=0
a1=1
So if you use the recursive series above:
a2=(a1-a0+2)+a1
a2=(1-0+2)+1
Any comments? I'm praying I used the 'sub' tags right