Draw Pascal's Triangle
Generate Pascal's triangle with binomial coefficients for any row count
Maximum 60 rows.
Examples:
- 1 row → 1
- 3 rows → 1 / 1 1 / 1 2 1
- 5 rows includes the binomial coefficients for n = 0…4
Related tools
Generate a Sierpinski Triangle
Draw the Sierpinski triangle fractal at a chosen recursion depth
SierpinskiFractal
Calculate Number Sum
Paste a list of numbers and get the sum, count, and average
SumNumbers
Generate a Hilbert Curve
Draw a Hilbert space-filling curve for a chosen order
HilbertFractal
Generate Look and Say Sequence
Generate Conway's look-and-say sequence from any digit seed
Look and SayMath
What is Pascal's Triangle?
Pascal's triangle is a triangular array of binomial coefficients. The edges are 1, and every interior value is the sum of the two numbers above it. Row n (0-based) contains the coefficients of (a + b)^n.
Why Draw It?
- Education: Introduce combinatorics and binomial expansions
- Reference: Quickly list coefficients for a power
- Patterns: Spot powers of two, Fibonacci relationships, and symmetries
How This Tool Works
Choose how many rows to generate. The tool builds each row from the previous using integer addition and displays a plain-text triangle you can copy. Nothing leaves your browser.
Related Tools
- Generate Number Sequence: Arithmetic sequences
- Generate Look and Say Sequence: Conway's sequence
- Generate Pi Digits: Digits of π