Problem 240. Project Euler: Problem 6, Natural numbers, squares and sums.
The sum of the squares of the first ten natural numbers is,
1^2 + 2^2 + ... + 10^2 = 385 The square of the sum of the first ten natural numbers is,
(1 + 2 + ... + 10)^2 = 55^2 = 3025 Hence the difference between the sum of the squares of the first ten natural numbers and the square of the sum is 3025 - 385 = 2640.
Find the difference between the sum of the squares of the first N (where N is the input) natural numbers and the square of the sum.
Thank you to Project Euler Problem 6
Solution Stats
Problem Comments
-
2 Comments
A problem where one must be at least a little careful about floating point arithmetic. It might have been interesting if one of the test cases were x=1e5 or larger. Even more interesting if the execution time were a factor in the "score". These factors might impact how the problem would be best solved.
@ Doug Hall, I have solved all the problems in the series. However, I have not received the badge and the associated scores on completion of the series. Can you please look into this?
Solution Comments
Show commentsGroup

Project Euler I
- 10 Problems
- 852 Finishers
- Project Euler: Problem 1, Multiples of 3 and 5
- Project Euler: Problem 2, Sum of even Fibonacci
- Project Euler: Problem 3, Largest prime factor
- Project Euler: Problem 4, Palindromic numbers
- Project Euler: Problem 5, Smallest multiple
- Project Euler: Problem 6, Natural numbers, squares and sums.
- Project Euler: Problem 7, Nth prime
- Project Euler: Problem 8, Find largest product in a large string of numbers
- Project Euler: Problem 9, Pythagorean numbers
- Project Euler: Problem 10, Sum of Primes
Problem Recent Solvers2322
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!