18+ Must be 18 or older to gamble. BeGambleAware.org We are an affiliate. Clicking links may earn us a commission.
Home  /  Tools  /  Lottery picker

Lottery number generator

Quick-pick lines for seven official formats, with the real jackpot combinatorics next to every line

Pick a format and generate. Every line is drawn server-side from the official pool — and every line, random or hand-picked, carries exactly the same jackpot odds.

Your line

Pick a draw format. Every submit generates a fresh quick-pick line with the real jackpot odds next to it.

Official formats, from Powerball to keno.
Reset
No JavaScript required. No JavaScript required. Numbers are drawn server-side with a cryptographic random source.
How the math works

Every line is the same line

Jackpot odds are pure combinatorics: the number of ways to choose your picks from the pool, times the bonus-ball combinations. Powerball is C(69,5) × 26 — one in 292,201,338. No date, pattern or streak changes that number.

What a generator honestly gives you is protection from popular lines: birthdays cluster below 32, so a random line shares its jackpot with fewer people. The odds of winning stay identical.

# jackpot odds from combinatorics
odds = C(pool, picks) × C(bonus_pool, bonus_picks)
Powerball: C(69,5) × 26 = 292,201,338

Methodology

Numbers are drawn without replacement via random_int (CSPRNG) from the format's published pool. Jackpot odds are C(pool, picks) × C(bonus pool, bonus picks) — Powerball's C(69,5) × 26 = 292,201,338 matches the operator's published figure exactly.