Is the summed cubes equal to the squared sum of counting integer series?

https://twitter.com/standupmaths/status/524470545199673344 R can tell us: DF.numbers = data.frame(cubesum=numeric(),sumsquare=numeric()) #initial dataframe for (n in 1:100){ #loop and fill in   DF.numbers[n,"cubesum"] = sum((1:n)^3)   DF.numbers[n,"sumsquare"] = sum(1:n)^2 } library(car) #for the…

Continue ReadingIs the summed cubes equal to the squared sum of counting integer series?