Here are a few pthers to ponder.
*-- The sum of the first n positive odd integers, 1+3+5+.....+n, is n^2.
*-- The sum of the first n positive even integers, 2+4+6+.....+n, is n(n + 1)
*-- The sum of the first n positive integers, 1+2+3+.....+n, is n(n + 1)/2 or (n^2 + n)/2
*--The sum of the squares of the first n integers, 1^2+2^2+3^2+.....+n^2, is n(n+1)(2n+1)/6
*--The sum of the cubes of the first n integers, 1^3+2^3+3^3+.....+n^3, is [(n^2 + n)/2]^2
*--n^3 is always the sum of n odd integers beginning with (n^2 - n + 1) and ending with (n^2 + n - 1).
*--The sum of (n + 1) consecutive squares, beginning with the square of n(2n + 1), is equal to the sum of the squares of the next n consecutive squares, e.g., for n = 1, 3^2 + 4^2 = 5^2; for n = 2, 10^2 + 11^2 + 12^2 = 13^2 + 14^2; etc.
*--The product of any n consecutive positive integers is divisible by the product of the first n postitive integers.
*--Every even number equal to or greater than 6 is the sum of two odd primes.
*--Every odd number equal to or greater than 9 is the sum of three odd primes.
*--Every sum of two consecutive odd primes is the product of three integers, all greater than one.
*--The sum of two cubes is never a cube.
*--The nth term of the series 1 + 2 + 4 + 8 + 16 + .........= 2^(n-1).
*--The sum of the first n terms of the series 1 + 2 + 4 + 8 + 16 + ......, or 1, 3, 7, 15, ----- is 2^n - 1.
*--The sum of the first n cubes is [n(n-1)/2]^3.
*--The sum of the first n terms of the series 1 + x + x^2 + x^3 + ------x^(n-1) = (x^n - 1)/(x - 1).
*--1^3 + 2^3 + 3^3 + 4^3 + -----n^3 = (1 + 2 + 3 + 4 + -----n)^2.
*--The product of any n consecutive integers is divisible by the product of the first n integers.