<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Project Euler problem 28</title>
	<atom:link href="http://duncan99.wordpress.com/2009/02/01/project-euler-problem-28/feed/" rel="self" type="application/rss+xml" />
	<link>http://duncan99.wordpress.com/2009/02/01/project-euler-problem-28/</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Fri, 01 Mar 2013 18:26:06 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Daniel Robert Webb</title>
		<link>http://duncan99.wordpress.com/2009/02/01/project-euler-problem-28/#comment-480</link>
		<dc:creator><![CDATA[Daniel Robert Webb]]></dc:creator>
		<pubDate>Tue, 24 Apr 2012 04:31:50 +0000</pubDate>
		<guid isPermaLink="false">http://duncan99.wordpress.com/?p=915#comment-480</guid>
		<description><![CDATA[Please disregard my post.  I realize my error.  Garbage in, Garbage out!]]></description>
		<content:encoded><![CDATA[<p>Please disregard my post.  I realize my error.  Garbage in, Garbage out!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel Robert Webb</title>
		<link>http://duncan99.wordpress.com/2009/02/01/project-euler-problem-28/#comment-479</link>
		<dc:creator><![CDATA[Daniel Robert Webb]]></dc:creator>
		<pubDate>Tue, 24 Apr 2012 03:16:17 +0000</pubDate>
		<guid isPermaLink="false">http://duncan99.wordpress.com/?p=915#comment-479</guid>
		<description><![CDATA[This 3 years after the last post so I don&#039;t know if any one is following this.  With to above formula, I now have two ways to come up with the same answer that gets rejected.  Please allow me to post both python programs.

 S=1
for i in range(3,10002,2):
    t=i*i
    t2 = t-(i-1)
    t3 = t2-(i-1)
    t4 = t3-(i-1)
    S = S+t+t2+t3+t4
    
print S
    
# and 
n=10001
S = (4*n**3+3*n**2+8*n-9)/6
print S
###########

And the answer I get is: 666916710001 

Any Ideas?]]></description>
		<content:encoded><![CDATA[<p>This 3 years after the last post so I don&#8217;t know if any one is following this.  With to above formula, I now have two ways to come up with the same answer that gets rejected.  Please allow me to post both python programs.</p>
<p> S=1<br />
for i in range(3,10002,2):<br />
    t=i*i<br />
    t2 = t-(i-1)<br />
    t3 = t2-(i-1)<br />
    t4 = t3-(i-1)<br />
    S = S+t+t2+t3+t4</p>
<p>print S</p>
<p># and<br />
n=10001<br />
S = (4*n**3+3*n**2+8*n-9)/6<br />
print S<br />
###########</p>
<p>And the answer I get is: 666916710001 </p>
<p>Any Ideas?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Project Euler problem 58 &#171; Duncan&#8217;s blog</title>
		<link>http://duncan99.wordpress.com/2009/02/01/project-euler-problem-28/#comment-304</link>
		<dc:creator><![CDATA[Project Euler problem 58 &#171; Duncan&#8217;s blog]]></dc:creator>
		<pubDate>Sun, 13 Dec 2009 09:08:22 +0000</pubDate>
		<guid isPermaLink="false">http://duncan99.wordpress.com/?p=915#comment-304</guid>
		<description><![CDATA[[...] problem has some similarities to problem 28. In that case the spiral went clockwise; this one it goes anti-clockwise. For our purposes [...]]]></description>
		<content:encoded><![CDATA[<p>[...] problem has some similarities to problem 28. In that case the spiral went clockwise; this one it goes anti-clockwise. For our purposes [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ggse</title>
		<link>http://duncan99.wordpress.com/2009/02/01/project-euler-problem-28/#comment-281</link>
		<dc:creator><![CDATA[ggse]]></dc:creator>
		<pubDate>Wed, 15 Jul 2009 10:57:19 +0000</pubDate>
		<guid isPermaLink="false">http://duncan99.wordpress.com/?p=915#comment-281</guid>
		<description><![CDATA[The sum is also given by a formula : for a n by n spiral, S = (4*n^3+3*n^2+8*n-9)/6.]]></description>
		<content:encoded><![CDATA[<p>The sum is also given by a formula : for a n by n spiral, S = (4*n^3+3*n^2+8*n-9)/6.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
