<div>Thanks for the reply,  Franklin,</div>
<div> </div>
<div>Could you also explain why the pattern (at least up to n=60) keeps steadily alternating between 4 terms and 6 terms in the each two consecutive groups, with the difference remaining the same within each such 4-term or 6-term group (while during the switch from the 4-group to the 6-group and then back to the next 4-group, etc. the difference is getting bumped by 1) ?  
</div>
<div>How you explain the fact that the sum of number of terms for each two consecutive groups is  4+ 6= 10 ?</div>
<div> </div>
<div>Note that if the pattern indeed could be described as discuseed in the predictable manner,</div>
<div>then one could resolve the iteration and derive the following formula (non trivial identity ?)</div>
<div> </div>
<div>n = (floor(n*n/10)+10 - someFunction(n) ) /2</div>
<div> </div>
<div>Thanks,</div>
<div>Alexander R. Povolotsky<br> </div>
<div><span class="gmail_quote">On 1/11/08, <b class="gmail_sendername"><a href="mailto:franktaw@netscape.net">franktaw@netscape.net</a></b> <<a href="mailto:franktaw@netscape.net">franktaw@netscape.net</a>> wrote:</span>

<blockquote class="gmail_quote" style="PADDING-LEFT: 1ex; MARGIN: 0px 0px 0px 0.8ex; BORDER-LEFT: #ccc 1px solid">It's pretty much obvious.<br><br>First of all, simple arithmetic lets us simplify the expression to<br>
<br>a(n) = floor(n^2/10) - floor((n-1)^2/10) + 2<br><br>The "+ 2" obviously doesn't affect the pattern of differences,<br>so what we are really looking at is the pattern of differences in<br>floor(n^2)/10.   Since the final digit of n^2 depends only
<br>on n modulo 10, and the difference in the squares is 2n-1, this<br>will have a pattern of changes depending only on the final<br>digit.<br><br>Franklin T. Adams-Watters<br><br>-----Original Message-----<br>From: Alexander Povolotsky 
<a href="mailto:apovolot@gmail.com">apovolot@gmail.com</a><br>.<br>Consider calculating (in decimal system):<br><br>floor(n*n/10) + 10<br><br>and then looking between the  difference of calculated above and<br>"doubled" value of n :
<br><br>(floor(n*n/10) + 10)  - 2*n<br><br>and then look at the differences between in above expression for two<br>consecutive integers n and (n-1)<br><br>a(n) = ((floor(an*n/10) + 10) - 2*n) - ((floor((n-1)*(n-1)/10) + 10 -
<br>2*(n-1))<br>...<br><br>So you could notice that starting from a(4) and on - the difference is<br>kept the same for first 4 terms and then the difference gets<br>incremented by 1 and as such is kept constant for next 6 terms, then it
<br>increments by 1 again and is kept the same for 4 terms, etc, etc ....<br>...<br>Is this well known and/or obvious ?<br>____________________________________________________________________<br></blockquote></div><br>