Skip to content
2048
Modern variant2048

2584 (Fibonacci)

Same board, same swipes — but tiles merge only when their values are consecutive Fibonacci numbers. A re-tuning that forces a completely different strategy.

Hard 10-30 min merge · sliding · fibonacci · variant · strategy

2048, retuned

2584 keeps the entire 2048 framework — 4×4 grid, swipe to slide, new tile after every move — but changes one rule: two tiles merge if and only if their values are consecutive Fibonacci numbers (1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, 377, 610, 987, 1597, 2584).

The doubling rhythm of 2048 becomes the additive rhythm of Fibonacci. This sounds like a small change. It isn't.

Why the strategy breaks

In 2048, your tile chain is 1, 2, 4, 8, 16, 32, 64... — every step is a doubling, every merge takes two equal tiles and produces one of double value. Strategy is "build a single descending chain."

In 2584, your tile chain is 1, 1, 2, 3, 5, 8, 13, 21... — every step is the sum of the previous two. To build a 2584 tile, you need a 1597 next to it, which needs a 987 next to that, and so on. The chain is longer, the merges are rarer, and the discipline required is much higher.

The win condition is reaching the 2584 tile — the 18th Fibonacci number.

How to play

  1. Same 4×4 board, same swipe mechanic as 2048.
  2. Tiles merge only when their values are consecutive Fibonacci numbers (1+1=2, 1+2=3, 2+3=5, 3+5=8...).
  3. New tiles spawn 1s (and occasionally 2s).
  4. Reach the 2584 tile to win.
  5. Equal non-consecutive tiles (e.g., 8 and 8) do not merge — they just slide past each other.

Strategy tips

  • Build a single Fibonacci chain along one row. 1, 1, 2, 3, 5, 8, 13, 21, 34 — left to right.
  • Equal values are useless. Don't waste moves trying to pair two 8s; they'll never merge.
  • Plan around the 1+1=2 opening. You'll spawn many 1s; manage them before they pile up.
  • Don't lock your corner. Unlike 2048, you sometimes have to break corner discipline to chain merges correctly.

Other 2048 variants