Our Network


Coming Soon


Coming Later

squares generator

world's simplest number tool

Quickly generate a list of squares of numbers in your browser. To get your list, just specify the starting value, the step and how many sequence members you need in the options below, and this utility will generate that many squares. Created by developers from team Browserling.

᠎᠎᠎          Tool Options

Start and Step

The first number of the
sequence you want to square.
The difference between the
numbers you want to square.

Count and Separator

The number of squares you
want to generate.
The character you want to
place between the squares.
(By default a line break.)

Output Numeral System

Adjust your custom base here.
(Possible values from 2 to 64.)

What is a squares generator?

This is an online browser-based utility for generating a sequence of squares of numbers. A square of a number (denoted by n²) is a number that is twice the product of itself (n*n). For example, the number 4 is a square, as it can be represented as 2*2. When squaring a negative number, you'll always get a positive number because (-2)² = (-2)*(-2) = 4. In this tool, you can specify the number n (the first number you want to square) and step (the difference between the numbers you want to square), and this utility will generate the following sequence: n², (n + step)², (n + step + step)², (n + 3*step)², and so on. You can also set the number of squares in the sequence and adjust the separator between them. As squares are often used in programming, you can convert squares to most common numeral systems, such as binary, octal, decimal (default), hex, or customize the desired base in the options field below. That's numberwang!


Squares generator examples

Click to try

First Fifty Squares

In this example, we generate the first fifty square numbers. We specify n = 0 and step = 1. Thus, the tool generate the following sequence: 0² = 0, (0 + 1)² = 1, (0 + 1 + 1)² = (2)² = 4, (0 + 1 + 1 + 1)² = (3)² = 9, and so on. With step equal to 1, we get an increasing sequence of squares of consecutive integers.

0 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 676 729 784 841 900 961 1024 1089 1156 1225 1296 1369 1444 1521 1600 1681 1764 1849 1936 2025 2116 2209 2304 2401
Required options
These options will be used automatically if you select this example.
The first number of the
sequence you want to square.
The difference between the
numbers you want to square.
The number of squares you
want to generate.
The character you want to
place between the squares.
(By default a line break.)

Squares with a Fractional Step

In this example, we set the step equal to a decimal fraction – 0.5. We start with 1, and get the following list of values: 1² = 1, (1.5)² = 2.25, 2² = 4, (2.5)² = 6.25, and so on. We generate a sequence of thirty squares and separate them with the comma character.

1, 2.25, 4, 6.25, 9, 12.25, 16, 20.25, 25, 30.25, 36, 42.25, 49, 56.25, 64, 72.25, 81, 90.25, 100, 110.25, 121, 132.25, 144, 156.25, 169, 182.25, 196, 210.25, 225, 240.25
Required options
These options will be used automatically if you select this example.
The first number of the
sequence you want to square.
The difference between the
numbers you want to square.
The number of squares you
want to generate.
The character you want to
place between the squares.
(By default a line break.)

Decreasing Squares in Base 16

In this example, we generate a sequence of squares in the hexadecimal numeral system. We start with the value of 100, for each next square we make a negative step -1, and we convert the square to base 16. This computes a descending sequence of squares in the hexadecimal base. Thus, we calculate the following sequence: 100² = 10000 = 2710 (in the base 16), (100 - 1)² = 99² = 9801 = 2649 (in the base 16), and so on.

2710 2649 2584 24c1 2400 2341 2284 21c9 2110 2059 1fa4 1ef1 1e40 1d91 1ce4 1c39 1b90 1ae9 1a44 19a1 1900 1861 17c4 1729 1690 15f9 1564 14d1 1440 13b1 1324 1299 1210 1189 1104 1081 1000 f81 f04 e89 e10 d99 d24 cb1 c40 bd1 b64 af9 a90 a29 9c4 961 900 8a1 844 7e9 790 739 6e4 691 640 5f1 5a4 559 510 4c9 484 441 400 3c1 384 349 310 2d9 2a4 271 240 211 1e4 1b9 190 169 144 121 100 e1 c4 a9 90 79 64 51 40 31 24 19 10 9 4 1
Required options
These options will be used automatically if you select this example.
The first number of the
sequence you want to square.
The difference between the
numbers you want to square.
The number of squares you
want to generate.
The character you want to
place between the squares.
(By default a line break.)

Pro tips Master online number tools

You can pass options to this tool using their codes as query arguments and it will automatically compute output. To get the code of an option, just hover over its icon. Here's how to type it in your browser's address bar. Click to try!

https://onlinetools.com/number/generate-sequence-of-squares?start=0&step=1&count=50&separator=%255Cn&decimal-base=true

All Number Tools

Didn't find the tool you were looking for? Let us know what tool we are missing and we'll build it!
Generate an Arithmetic Progression

Quickly create a list of numbers in arithmetic series.

Generate a Geometric Progression

Quickly create a list of numbers in geometric series.

Draw Pascal's Triangle

Quickly calculate the coefficients of the binomial expansion.

Convert Numbers to a Picture

Quickly create a downloadable image from numbers.

Generate Random Numbers

Quickly create a list of random numbers.

Generate Random Prime Numbers

Quickly create a list of random primes from a specific interval.

Generate Random Matrices

Quickly create a matrix with random numbers as its elements.

Generate Random Vectors

Quickly create a random row or column vector.

Find the Transpose of a Matrix

Quickly exchange rows and columns of a matrix.

Find Matrix Inverse

Quickly find the inverse matrix of any square matrix.

Calculate Matrix Determinant

Quickly find the determinant of any square matrix.

Calculate Pi Digits

Quickly calculate any number of digits of number π.

Calculate e Digits

Quickly generate the specified number of Euler constant's digits.

Calculate Phi Digits

Quickly generate any number of golden ratio digits.

Generate Look and Say Numbers

Quickly generate numbers of say what you see sequence.

Calculate Fibonacci Numbers

Quickly calculate numbers of Fibonacci sequence.

Calculate Lucas Numbers

Quickly calculate numbers of Lucas series.

Calculate Fibonacci-like Series

Quickly generate Fibonacci-like series with custom start values.

Calculate Linear Recurrence Series

Quickly calculate members of a linear recurrence series.

Calculate Prime Numbers

Quickly create a sequence of prime numbers.

Number Primality Test

Quickly check if the given number is a prime.

Calculate Prime Factors

Quickly compute all prime factors of a number.

Calculate All Factors of a Number

Quickly compute all divisors of a number.

Find Greatest Common Divisor

Quickly calculate the GCD of two or more numbers.

Find Least Common Multiple

Quickly calculate the LCM of two or more numbers.

Generate an Integer Sequence

Quickly create a list of increasing or decreasing integers.

Generate Even Numbers

Quickly create a sequence of even numbers.

Generate Odd Numbers

Quickly create a sequence of odd numbers.

Generate a Sequence of Squares

Quickly create a list of squares.

Generate a Sequence of Cubes

Quickly create a list of cubes.

Generate Powers of Two

Quickly generate a series of numbers in the form 2^n.

Generate Powers of Ten

Quickly generate a series of numbers in the form 10^n.

Pick a Number

Quickly choose one or more numbers from a list of numbers.

Round a Number

Quickly round one or more numbers to the given accuracy.

Sort a List of Numbers

Quickly sort numbers in ascending or descending order.

Sort Digits in a Number

Quickly sort number's digits in ascending or descending order.

Shuffle Digits in a Number

Quickly randomize the order of digits in a number.

Filter a List of Numbers

Quickly filter numbers according to certain criteria.

Calculate Number Sum

Quickly add up all the numbers in the given list and find their sum.

Calculate Number Product

Quickly multiply all the numbers together and find their product.

Calculate Digit Sum

Quickly add up all the digits of the given numbers.

Calculate Digit Product

Quickly multiply all the digits of the given numbers.

Add Fractions

Quickly sum up all the fractions in the given list and find their total.

Find the Maximum Number

Quickly find the largest number in a number sequence.

Find the Minimum Number

Quickly find the smallest number in a number sequence.

Generate a Unit Matrix

Quickly create a diagonal matrix with ones on the main diagonal.

Convert Numbers to Words

Quickly spell cardinal and ordinal numbers using English words.

Convert Words to Numbers

Quickly convert spelled numbers to regular numbers.

Convert a Number to the Power of Two

Quickly convert a number to the form 2^x.

Convert a Number to the Power of Ten

Quickly express a number in the form 10^x.

Convert a Number to the Negadecimal Base

Quickly convert base 10 numbers to base -10.

Change a Number's Base

Quickly convert a number from one base to any other base.

Create Unicode Fractions

Quickly convert simple fractions to pretty Unicode fractions.

Create a Palindrome from a Number

Quickly add digits to a number so that it becomes a palindrome.

Check if a Number is a Palindrome

Quickly test if the given numbers are palindromes.


Coming Soon

These number tools are on the way!
Generate Numberwang Numbers

Create a list of numberwang numbers.

Generate Magic Numbers

Create a list of neat looking numbers.

Draw a Number as Color Spectrum

Visualize a number by drawing its digits as a color gradient.

Draw a Magic Square

Create a matrix of numbers with rows and cols having same sum.

Rewrite Numbers

Given numbers and a grammar, recursively rewrite them.

Create a Floating Point Number

Create a number from the mantissa, base, and exponent.

Visualize a Floating Point Number

Show how a fp number is represented in a computer.

Convert a Number to the Scientific Notation

Convert a number to the a×10<sup>b</sup> form.

Convert Scientific Notation to a Number

Convert a number in scientific notation to a regular number.

Generate Unary Numbering

Create a list of unary numbers (1, 11, 111, 1111, …).

Generate Symbolic Numbering

Create a list of alphabetic numbers (a, b, c, …, z, aa, ab, …).

Generate Roman Numbering

Create a list of Roman numbers (i, ii, iii, iv, v…).

Generate Braille Numbering

Create a list of Braille numbers (⠂, ⠆, ⠒, ⠲, ⠢, …).

Generate Random Binary Numbers

Create a list of random binary numbers.

Generate Random Octal Numbers

Create a list of random octal numbers.

Generate Random Decimal Numbers

Create a list of random decimal numbers.

Generate Random Hex Numbers

Create a list of random hexadecimal numbers.

Calculate a Running Sum

Calculate a cumulative sum of a list of numbers.

Calculate a Running Difference

Calculate a cumulative difference of a list of numbers.

Calculate a Running Product

Calculate a cumulative product of a list of numbers.

Calculate Number Quotient

Divide two numbers and find their quotient.

Calculate Digit Quotient

Divide the digits of the given number.

Calculate the Factorial

Find the factorial of a number.

Calculate the Average

Find the average of multiple numbers.

Calculate the Mean

Find the mean of multiple numbers.

Calculate the Mode

Find the mode of multiple numbers.

Create Number Anagrams

Create one or more anagrams of a number.

Generate Number Bigrams

Create a list of digit bigrams from a number.

Generate Number Trigrams

Create a list of digit trigrams from a number.

Generate Number N-grams

Create a list of digit ngrams from a number.

Generate a Polynomial Sequence

Create a list of polynomial progression numbers.

Generate SI Prefixes

Create a list of metric prefixes.

Analyze a Number

Report how many digits appear how many times.

Convert a Number to an Ordinal

Convert a cardinal number to an ordinal number.

Convert an Ordinal to a Number

Convert an ordinal number to a cardinal number.

Convert a Number to Roman Number

Convert Arabic numerals to Roman numerals.

Convert a Roman Number to Regular Number

Convert Roman Numerals to Arabic numerals.

Generate Negafibonacci Numbers

Calculate a series of extended Fibonacci numbers.

Generate Fibonacci Primes

Find numbers that are both Fibonacci numbers and primes.

Fibonacci Number Test

Check if a number is a Fibonacci number.

Fibonacci Prime Test

Check if a number is both a Fibonacci number and a prime.

Construct Fibonacci Words

Create a sequence of Fibonacci words.

Construct Tribonacci Words

Create a sequence of Tribonacci words.

Construct Tetranacci Words

Create a sequence of Tetranacci words.

Construct Pentanacci Words

Create a sequence of Pentanacci words.

Generate Negalucas Numbers

Calculate a series of extended Lucas numbers.

Generate Lucas Primes

Calculate a series of extended Lucas numbers.

Lucas Prime Test

Check if a number is both a Lucas number and a prime.

Generate Moser de Bruijn Numbers

Calculate a sequence of Moser-Bruijn numbers.

Generate Kolakoski Numbers

Calculate a sequence of Oldenburger-Kolakoski numbers.

Generate Stanley Numbers

Calculate a sequence of Stanley numbers.

Generate Gijswijt Numbers

Calculate a sequence of self-describing Gijswijt numbers.

Generate Rudin-Shapiro Numbers

Calculate a sequence of Rusin-Shapiro numbers.

Generate Baum-Sweet Numbers

Calculate a sequence of Baum-Sweet numbers.

Generate Thue-Morse Sequence

Calculate members of Thue-Morse number series.

Generate Perfect Numbers

Create a list of perfect numbers.

Generate Almost Perfect Numbers

Create a list of almost perfect numbers.

Generate Excessive Number Sequence

Calculate a sequence of abundant numbers.

Generate Deficient Number Sequence

Calculate a sequence of deficient numbers.

Calculate Dragon Curve Numbers

Generate a list of paperfolding sequence numbers.

Generate Composite Numbers

Create a list of numbers that are not prime.

Draw a Number on an LCD

Generate an LCD display that shows the given number.

Draw a Numbers Table

Generate a table of numbers.

Test if a Number is Perfect

Check if the given number is a perfect number.

Test if a Number is Abundant

Check if the given number is an abundant number.

Test if a Number is Deficient

Check if the given number is a deficient number.

Calculate the Modulo

Find the modulus of a number.

Group Number Digits

Group together digits of a number.

Split a Number into Digits

Create a list of digits from a number.

Printf Numbers

Apply sprintf or printf function to numbers.

Create Zalgo Numbers

Let Zalgo destroy your numbers.

Repeat a Number

Repeat a number multiple times.

Mirror a Number

Create a mirror copy of a number.

Zero-pad a Number

Add zeros to a number.

Custom-pad a Number

Add a padding of custom symbols to a number.

Reverse a Number

Reverse the order of digits of a number.

Rotate a Number

Cyclically rotate digits of a number to the left or right.

Increase a Number

Add one to the given number.

Increase All Digits in a Number

Add one to every digit in a number.

Decrease a Number

Subtract one from the given number.

Decrease All Digits in a Number

Subtract one from every digit in a number.

Find Patterns in Numbers

Discover patterns in sequences of numbers.

Count Number Occurrences

Find how often numeric values occur.

Calculate Percentages

Find x% of a number.

Generate Custom Numbers

Create numbers of arbitrary length and properties.

Print Googol

Print the Googol/Google number, which is 10<sup>100</sup>.

Generate Big Numbers

Create a list of big numbers.

Generate Small Numbers

Create a list of small numbers.

Generate Natural Numbers

Create a list of natural numbers.

Generate Rational Numbers

Create a list of rational numbers.

Generate Constant Sequence

Create a series of numbers where all terms are the same.

Generate Real Numbers

Create a sequence of real numbers.

Generate Complex Numbers

Create a list of complex numbers.

Generate Binary Numbers

Create a sequence of binary numbers.

Generate Pairs of Numbers

Create a sequence of number pairs.

Generate Triples of Numbers

Create a sequence of number triples.

Generate Tuples of Numbers

Create a sequence of number n-tuples.

Generate a Short Number

Create a number with not that many digits.

Generate a Long Number

Create a number with many digits.

Interweave Numbers

Interweave two or more number digit-by-digit.

Find the Decimal Expansion of a Number

Rewrite a number in the decimal representation.

Convert a Fraction to a Decimal

Convert a fraction to a decimal number.

Convert a Decimal to a Fraction

Convert a decimal number to a fraction.

Convert a Binary Number to Octal Number

Convert a base two number to base eight number.

Convert a Binary Number to Decimal Number

Convert a base two number to base ten number.

Convert a Binary Number to Hex Number

Convert a base two number to base sixteen number.

Convert a Octal Number to Binary Number

Convert a base eight number to base two number.

Convert a Octal Number to Decimal Number

Convert a base eight number to base ten number.

Convert a Octal Number to Hex Number

Convert a base eight number to base sixteen number.

Convert a Decimal Number to Binary Number

Convert a base ten number to base two number.

Convert a Decimal Number to Octal Number

Convert a base ten number to base eight number.

Convert a Decimal Number to Hex Number

Convert a base ten number to base sixteen number.

Convert a Hex Number to Binary Number

Convert a base sixteen number to base two number.

Convert a Hex Number to Octal Number

Convert a base sixteen number to base eight number.

Convert a Hex Number to Decimal Number

Convert a base sixteen number to base ten number.

Convert Any Number to Any Base

Convert any number in any base to any other base.

Change Number's Mantissa

Change the significand of a number.

Change Number's Exponent

Change the power of a number.

Replace Digits with Letters

Replace digits in a number with alphabet letters.

Create a Number Spiral

Form a spiral from the digits of a number.

Create a Number Circle

Form a circle from the digits of a number.

Create a Number Tree

Form a tree from the given numbers.

Create a Number Digit Tree

Form a tree from the digits of a number.

Remove Decimal Point

Remove the decimal separator from a decimal number.

Add Errors to Numbers

Modify numbers so they are almost the same but have errors.

Create Number Typos

Generate various number typos.

Change Number Font

Write numbers in a different font.

Generate Bold Numbers

Write numbers in a bold font.

Generate Underline Numbers

Write numbers with an underline below them.

Generate Strikethrough Numbers

Write numbers with a strikethrough on them.

Generate Superscript Numbers

Write numbers in a superscript font.

Generate Subscript Numbers

Write numbers in a subscript font.

Create Fake Numbers

Change digits in a number to Unicode look-alikes.

Perturb Numbers

Change the given numbers a little bit.

Perturb Number Digits

Change the digits of the given numbers a little bit.

Find Entropy of a Number

Calculate the complexity (entropy) of a number.

Numberwang Number Test

Test if the given number is numberwang.


Subscribe!

Subscribe to our updates. We'll let you know when we release new tools, features, and organize online workshops.

Enter your email here


Feedback. We'd love to hear from you! 👋