Every Catan session has a moment. You've spent six minutes carefully placing tiles by hand, someone inevitably puts two 6s right next to each other, the person who spots it insists on a redo, and suddenly 20 minutes have evaporated and no one is having fun yet. You haven't even placed settlements.

This is why the Catan board generator exists. One click, instant randomized board, and the algorithm gets blamed for any unfairness instead of you. Our free Settlers of Catan board generator handles the base game (3–4 players) and the 5–6 player expansion, includes a balanced mode that enforces the no-adjacent-6-and-8 rule, and shows pip counts on every number token so you can immediately eyeball which hexes are going to print resources and which are decorative geography.

This guide explains how the whole thing works — the math behind dice probability, what actually makes a board fair or broken, how to evaluate starting positions like a calculator instead of a hopeful optimist, and when to embrace full chaos mode for entertainment value.

Board game pieces and hex tiles spread on a table

How the Catan Randomizer Works

Under the hood, a Catan random board generator is doing two separate shuffle operations that need to stay coordinated:

  1. Terrain shuffle: The 19 terrain tiles (or 30 for the 5–6 expansion) are shuffled using a Fisher-Yates algorithm — the gold standard for unbiased randomization. Every arrangement is equally probable.
  2. Token shuffle: The 18 number tokens are shuffled independently, then placed on non-desert hexes in order.

The tricky part is balanced mode. A naive catan setup generator will occasionally produce a layout where two 8s sit side by side, or a single intersection touches three high-probability hexes. Balanced mode prevents this by checking whether any 6 or 8 token is adjacent to another 6 or 8 after placement. If the check fails, it reshuffles and tries again — up to 200 times. It almost always converges in under five attempts.

What "Adjacent" Means in Hex Grid Terms

Two hexes are adjacent if they share an edge — not just a corner. Each hex has six neighbors. When balanced mode checks the catan board generator no adjacent 6 and 8 rule, it's checking all six neighbors of every 6-token hex and every 8-token hex. Corner-only contact (touching at a single vertex) doesn't count as adjacent — a corner-shared 6 and 8 is allowed.

The Catan Probability Calculator You Didn't Know You Needed

The most misunderstood thing in Catan is 7. Seven is the most common roll — 6 out of 36 possible outcomes — but 7 doesn't produce resources. It moves the robber. So when you're evaluating hexes, you're actually evaluating the 30 out of 36 rolls that produce something useful.

Here's the complete catan dice probability chart — the one you should be staring at when you place your first settlement:

Number TokenWays to RollProbabilityPipsExpected Rolls per 36
21 (1+1)2.78%1
32 (1+2, 2+1)5.56%2
438.33%3
5411.11%4
6513.89%5
7616.67%— robber —6
8513.89%5
9411.11%4
1038.33%3
1125.56%2
121 (6+6)2.78%1

The pip dots printed on Catan number tokens are not decorative. They are a literal pip-count probability indicator — each dot represents one way to roll that number. Five red dots on 6 and 8 means "this hex will produce resources five times in every 36 rolls on average." One dot on 2 and 12 means "enjoy your single expected resource in the time it takes everyone else to build a city."

The Pip Math

Total pips across all 18 number tokens: 1+2+3+4+5+5+4+3+2+1 = 30, times two tokens each for 3–11 = actually the full pool has 1+2+2+3+3+4+4+5+5+5+5+4+4+3+3+2+2+1 = 54 pips across 18 tokens. Per 36 rolls across an average game, you're looking at 30 productive rolls. A single 6 or 8 hex fires every 7.2 rolls on average. A 2 or 12 hex fires every 36 rolls — roughly once per full round-trip of dice, assuming consistent play.

What Makes a Board Broken: The Catan Fairness Calculator

Not all random boards are created equal. A truly fair catan board generator catches layouts where the math conspires against someone. Here's what to look for when evaluating any catan random setup:

The Intersection Pip Count

Every settlement sits at an intersection of up to three hexes. Your total production value for that settlement is the sum of the pip counts for each adjacent hex. The theoretical maximum for a single settlement is 5+5+4 = 14 pips (touching an 8, a 6, and a 9 or 5). The theoretical minimum for a non-desert intersection is 1+1+1 = 3 pips (touching a 2, a 12, and anything terrible).

Experienced players aim for 10+ total pips on their first settlement and 8+ on their second. Any board where the best available intersection is below 9 pips is statistically weak — not broken, but meager.

What Actually Breaks a Board

A board becomes genuinely unfair — what experienced players call a broken catan board — when a single intersection has access to two 6/8 hexes. That's a minimum of 10 pips from just two hexes, leaving the third hex as pure upside. The player who claims that spot controls the most statistically productive corner on the board. With good resource diversity on those hexes, they effectively have a different game than everyone else.

This is exactly what balanced mode in a balanced catan board generator prevents. No two red-token hexes can share an edge, which eliminates the most extreme single-intersection pip concentration.

Adjacent 6 and 8 on the coast is actually worse than inland. Coastal hexes have fewer total intersection neighbors, meaning the broken intersection is harder to contest and easier for the first-pick player to monopolize entirely.

Resource Isolation

A board is also broken if all four ore hexes cluster together, or all three brick hexes end up in a corner. This creates a spatial monopoly where the player closest to the cluster controls that resource type disproportionately. Our catan random map generator doesn't explicitly check for resource clustering (that would make balanced mode take forever), but pure randomness usually distributes terrain well enough — and re-randomizing is one click.

Two dice showing numbers representing Catan probability

Catan Starting Position Calculator: Where Should You Build?

This is the question. You've got a beautiful randomized board, balanced mode did its job, and now four people are staring at the hexes making increasingly confident noises about which intersection is "obviously" the best. Let's end the debate with math.

The Catan Best Starting Position Formula

Evaluate each candidate intersection on two axes:

Position Score = (pip₁ + pip₂ + pip₃) × diversity_bonus Where: pip_n = number of pips on adjacent hex n (0 for desert) diversity_bonus = 1.0 if 1 resource type 1.1 if 2 resource types 1.25 if 3 different resource types +0.15 additional if touching a 2:1 port for your top resource

This isn't an official formula — Catan doesn't publish one — but it captures the core tradeoffs that every experienced player understands intuitively. Pure pip maximization ignores the fact that producing only ore is useless without grain. Diversity alone ignores the fact that a 1+1+1 pip spread across three resources is still terrible.

The Catan Expected Resource Calculator in Practice

Say your first settlement is at an intersection touching an 8-ore (5 pips), a 5-grain (4 pips), and a 3-brick (2 pips). Your pip total is 11. Your three different resource types give you a 1.25 diversity bonus. Score: 11 × 1.25 = 13.75.

Compare that to a 9-ore (4 pips), 6-ore (5 pips), 4-grain (3 pips) intersection. Pip total 12, but only two resource types, score: 12 × 1.1 = 13.2. And you're drowning in ore with no path to progress unless someone trades.

The first position wins on both math and playability, even though the raw pip count is lower. This is why the catan best placement tool conversation is always about diversity, not just big numbers.

Settlement LocationPipsResourcesScoreVerdict
8-grain, 6-wood, 5-brick143 types17.5God tier — grab it first
8-ore, 5-grain, 4-wool123 types15.0Excellent — take it
9-wood, 6-brick, 4-ore123 types15.0Excellent — strong hand
8-ore, 8-wood (adjacent — impossible with balanced mode)10+2 typesBroken — banned by balanced mode
6-grain, 5-ore, 3-wool113 types13.75Good — solid start
9-ore, 9-ore, 4-grain112 types12.1Mediocre — ore prison
4-brick, 3-wood, 2-grain63 types7.5Bad — politely decline
2-wool, 12-ore, desert22 types2.2RNG is punishing you specifically

Generate Your Board Right Now

Free, browser-based, no sign-up. Base game or 5–6 player expansion. Balanced mode on by default. Hit randomize until the universe cooperates.

Open Catan Board Generator →

Base Game vs. 5–6 Player Expansion: What Changes

The catan 5-6 player board generator isn't just "more tiles." The math changes meaningfully.

3–4 Player Board (Base Game)

5–6 Player Expansion Board

The expansion board isn't just bigger — it's proportionally denser with productive hexes, which means the game plays faster and more chaotically. Five and six player Catan is already a different experience psychologically (longer wait between turns, more trading pressure, more robber chaos); the catan random balanced map generator for expansion play should always be run with balanced mode on, because the increased red token count makes broken positions even more powerful.

Metric3–4 Players5–6 Players
Total hexes1930
Desert hexes12
Number tokens1828
Total pips in pool54~86
6/8 tokens on board4 (two 6s, two 8s)6 (three 6s, three 8s)
Board layout3-4-5-4-33-4-5-6-5-4-3
Balanced mode pairs to check6 pairs max15 pairs max

Chaos Mode: When You Want a Terrible Board on Purpose

Look, not every game needs to be fair. Sometimes you want a random crazy catan board where three 6s cluster in one corner, brick is only available on the 2 and 12 hexes, and everyone has to improvise desperately. This is Catan chaos mode — turn balanced mode OFF, hit randomize, and embrace the madness.

The catan chaos mode generator (balanced mode disabled) can produce:

Some of the most memorable Catan games come from broken boards. The chaos creates stories. The guy who won with a settlement on the 12-ore hex because somehow 12 rolled six times in a row. The person who boxed out all three brick hexes and then couldn't get wood to build a road. These things happen. Let them happen sometimes.

The Hardest Map Generator Setting

For maximum difficulty and minimum fairness, disable balanced mode and keep hitting randomize until you find a layout where the highest-pip intersection available has fewer than 9 pips. Those games produce genuine problem-solving under resource scarcity. It's basically Catan on Hard Mode.

Competitive Catan: Using the Generator for Tournament Play

For serious players, a catan tournament board generator eliminates three problems simultaneously: setup time, human placement bias, and the accusation that the person who set up the board gave themselves an advantage. (You know who you are.)

Tournament Setup Checklist

Some catan esports board generator tools go further — seeding boards so they're reproducible, generating a shareable link or code, or scoring boards for fairness before the game begins. Our generator currently doesn't seed or share boards (every randomize is fresh), but the balanced mode check is exactly what competitive play needs for a fair resource distribution.

The "Catan Pro Setup Generator" Argument

There's a recurring debate in competitive communities about whether generator-based setup is more or less fair than the beginner board printed in the rulebook. The beginner board is static and fully memorized by experienced players — whoever goes first has perfect information about every intersection. A randomized board levels this. The argument for generators in catan competitive board setup is the same as the argument for random seeding in any competitive game: eliminate preparation asymmetry.

Friends gathered around a board game table for a competitive game night

The Catan Number Token Distribution Explained

People often ask why there's no 7 token. The answer is game design — 7 is the robber number, and making it produce resources would break the game's entire threat-and-negotiation dynamic. A 7 already does something powerful (move the robber, steal a card); letting it also generate resources would make it strictly dominant over every other number.

The catan number token distribution in the base game is also deliberately symmetric around 7:

Token pool: 2, 3, 3, 4, 4, 5, 5, 6, 6, [7 = robber], 8, 8, 9, 9, 10, 10, 11, 11, 12 Mirror pairs: (2,12), (3,11), (4,10), (5,9), (6,8) — all symmetric probability Pip counts: 1 2 3 4 5

This symmetry is elegant. 6 and 8 are equidistant from 7 in both directions and share identical probability (5/36). Placing them on the same hex intersection would double-stack the most productive probability window in one location — which is exactly what balanced mode prevents.

The Dice Roll Frequency Reality Check

Theory is tidy. Reality is dice. In an actual game of Catan, you'll roll somewhere between 50 and 80 times total (more in a long competitive game). Here's what that means for a 5-pip hex:

Expected productions for a 6 or 8 hex per game: Short game (~50 rolls): 50 × (5/36) ≈ 6.9 productions Standard game (~65 rolls): 65 × (5/36) ≈ 9.0 productions Long game (~80 rolls): 80 × (5/36) ≈ 11.1 productions For a 2 or 12 hex (1 pip): Short game: 50 × (1/36) ≈ 1.4 productions Standard game: 65 × (1/36) ≈ 1.8 productions Long game: 80 × (1/36) ≈ 2.2 productions

The expected gap between a 5-pip hex and a 1-pip hex in a standard game is about 7 resource productions. That's the difference between building two cities and building nothing. This is why pip count is the most important number in catan resource distribution math, and why the catan production value calculator logic always starts there.

Dice variance is real though. A 6 hex that hasn't fired in 20 rolls is statistically behind expectation but not impossible — dice have no memory. The 2 or 12 hex that hit three times in six rolls is likewise possible and will make the person who settled there irrationally confident for the rest of the game. This is called variance-based cope and it is the engine of Catan's emotional drama.

Catan Board Generator FAQ

What is a Catan board generator?
A tool that randomly shuffles the 19 terrain tiles and 18 number tokens for a Settlers of Catan game board. It replaces the manual tile-drawing process with an instant, unbiased randomization — plus optional balanced mode to prevent the most broken outcomes.
What does balanced mode do in a Catan setup generator?
Balanced mode ensures no two 6 or 8 number tokens land on hexes that share an edge. These are the highest-probability tiles (5/36 each), and placing them adjacent creates an intersection that's mathematically dominant. Balanced mode retries the token shuffle up to 200 times until this constraint is satisfied.
How does Catan dice probability work?
Two six-sided dice produce sums from 2–12. Seven has the most combinations (6/36 = 16.7%) but activates the robber. The production number with highest probability is 6 and 8 — each has 5/36 ≈ 13.9% chance. The pip dots on tokens represent these odds directly: five dots = five ways to roll it = highest production frequency.
Is the 5–6 player Catan board harder to balance?
Yes — the expansion uses three 6 tokens and three 8 tokens instead of two each. That means more pairs to check for adjacency, and balanced mode has to work harder (more retry attempts). Our generator handles it, but on very unlucky seeds it falls back to the best available unbalanced layout rather than running forever.
What's the best starting position in Catan?
Maximize pip count (aim for 10+ across your two settlement hexes) while touching at least 3 different resource types. The best locations touch an 8 or 6 hex plus two other mid-range hexes with diverse resources. A 2:1 port adjacent to your top resource is a major secondary bonus worth planning around.
Can I use this Catan board generator for tournaments?
Absolutely. Enable balanced mode, generate with all players watching, and optionally screenshot the result for reference. This eliminates setup bias and saves the 10 minutes of negotiation that inevitably happens when someone sets the board by hand.
What makes a Catan board "broken"?
A broken board has an intersection where a single player can access two 6/8 hexes. That intersection has 10+ pips from just two hexes, making it statistically unassailable. Balanced mode specifically prevents this. A board can also be functionally broken if all copies of one resource cluster in one region, even if the number tokens are well spread.

Ready to Roll? Generate Your Board

Free, instant, no account needed. Supports the base game and 5–6 player expansion. Balanced mode on by default — toggle it off for chaos. Your friends are waiting.

Open Catan Board Generator →

Related Tools