Skip to content
Allin

Square numbers list

Generate a list of perfect squares — n² for consecutive integers from any starting point. Choose how many and where to begin, and it returns the squares and their sum with exact big-integer arithmetic, handy for spotting patterns and differences.

Cube numbers listGenerate a list of perfect cubes — n³ for consecutive integers from any starting point. Set how many you want and where to start, and it returns the cubes, their sum and the underlying roots, computed with exact big-integer arithmetic.List of Fibonacci numbersGenerate the first n Fibonacci numbers exactly, with big-integer precision — each term the sum of the two before it, starting 0, 1, 1, 2, 3, 5, 8… The sequence hides the golden ratio and shows up throughout nature and mathematics. Returns the list and its sum.List of prime numbersList every prime number up to a chosen limit, using the Sieve of Eratosthenes. Enter an upper bound (up to 100,000) and it returns all primes at or below it, how many there are and their sum — a quick reference for factoring and number theory.First n prime numbersList the first n prime numbers — the building blocks of arithmetic that have no divisors but 1 and themselves. Enter how many you want (up to 10,000) and it returns the sequence, the nth prime itself and the sum of them all.Chi-Square Test Calculatorχ² test of independence on any contingency table, showing observed, expected, the contribution and the standardised residual of every cell, plus Cramér's V. Cells with an expected count below 5 are flagged, because that is when the test stops being valid.Completing the Square CalculatorRewrite ax² + bx + c into vertex form a(x − h)² + k, with the vertex, the completed-square steps and the real or complex roots.Magic square generatorGenerate a magic square of any order from 3 to 20 — a grid of the numbers 1…N² where every row, column and diagonal adds to the same magic constant. It picks the right construction automatically: the Siamese method for odd orders, diagonal complements for multiples of four, and the Strachey method otherwise.Root Mean Square CalculatorRMS shown next to the plain mean, because on signed data the mean collapses to nearly zero while the RMS holds the magnitude that actually matters. Also gives the crest factor, the sum of squares and each value's share of it.

The Square numbers list turns How many squares (1–1000), Start from into Squares, Sum of the squares, instantly and for free. For instance, with How many squares (1–1000) = 25 and Start from = 1 it returns Squares = 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625 and Sum of the squares = 5525.

How to use it

  1. Enter your values: How many squares (1–1000), Start from.
  2. Read the result instantly: Squares, Sum of the squares.

Frequently asked questions

What does the Square numbers list actually compute?

It takes How many squares (1–1000) and Start from and derives Squares and Sum of the squares from them. The calculation is live as you type, so the result updates on every change.

What information do I need to provide?

2 values: How many squares (1–1000) and Start from. Nothing else is required — no account, no file upload.

Can you show a worked example?

With How many squares (1–1000) = 25 and Start from = 1, the calculator returns Squares = 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625 and Sum of the squares = 5525. Those figures come from running this exact tool, so you can reproduce them by entering the same values.

When would I actually use this?

Finding the nth term without listing every one before it, summing a long run in one step, and recognising which family a sequence belongs to.

What is the most common mistake?

Starting the index at the wrong end. Whether the first term is a₀ or a₁ shifts every result by one position, and the two conventions are both common.

What is the difference between the Square numbers list and the Cube numbers list?

This one returns Squares and Sum of the squares; the Cube numbers list returns Cubes and Sum of the cubes. That is the whole difference — open the one whose figure you need.

Is there a tool for the next step?

List of Fibonacci numbers is the closest one after this: Generate the first n Fibonacci numbers exactly, with big-integer precision — each term the sum of the two before it, starting 0, 1, 1, 2, 3, 5, 8… The sequence hides the golden ratio and shows up throughout nature and mathematics. Returns the list and its sum.

What else is worth having open alongside it?

List of prime numbers and First n prime numbers — they come up in the same task often enough to be worth a second tab.

Where do the figures come from, and how current are they?

The closed forms are the standard ones, and the tool states the indexing convention it uses so a result can be compared against a textbook without ambiguity.

Further reading

All guides