Home·Numbers
Ad

Claim your crypto exchange bonus

Bonuses you get just for signing up. Terms are copied straight from each exchange.

Every number from 1 to 200

Prime factors, divisors, bases and Roman numerals — all worked out from the number itself. Nothing here was copied from a table.

The grid

Ten per row, twenty rows. The filled cells are primes — you can see the multiples of 2 and 5 drop out in columns.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240
PrimeComposite

Powers of two

This is why a byte stops at 256 and a port number stops at 65535.

2562^89 bits5122^910 bits10242^1011 bits20482^1112 bits40962^1213 bits81922^1314 bits163842^1415 bits327682^1516 bits655362^1617 bits

Prime52

Nothing divides it but 1 and itself.

2357111317192329313741434753596167717379838997101103107109113127131137139149151157163167173179181191193197199211223227229233239

Square20

A number times itself — the dots lay out as a square.

149162536496481100121144169196225256102440961638465536

Cube9

A number times itself three times — the dots stack into a cube.

182764125216512409632768

Triangular21

The running total of 1, 2, 3 … — the dots stack into a triangle.

13610152128364555667891105120136153171190210231

Fibonacci12

It sits in the run where each number is the sum of the two before it.

123581321345589144233

Power of two17

Two multiplied by itself. Every extra bit doubles it.

12481632641282565121024204840968192163843276865536

Perfect2

Add up its divisors except itself and you get the number back.

628

How to read this

  • The prime factors are what the number is made of. The count and sum of divisors both follow from them.
  • Add the divisors, take the number away, and you get perfect, abundant or deficient.
  • The length of the binary form is the bit count. 255 taking eight digits is what a byte is.
  • Collatz: halve it if even, triple it and add one if odd. The count is how many moves reach 1.

Frequently asked questions

QHow many primes are there?

46 primes at or below 200. They are the filled cells in the grid.

QWhat is a perfect number?

One whose divisors, itself excluded, add back up to it. Below 200 there are only two: 6 and 28.

QWhy list powers of two separately?

Because people looking up 255, 1024 or 65535 usually want where a byte or a port number ends, not number theory.

QHow far do Roman numerals go?

To 3999. Above that there is no single agreed notation, so none is shown.

QWhere does the data come from?

There is no data. Every value on these pages is computed from the number.