Count of successes in n independent trials with constant probability p.
Exactly k: C(n,k)·p^k·(1−p)^(n−k). Any-unique: 1−(1−p)^n.
If p changes each trial (pity, buffs), use ∏(1−p_i) and its complements instead of a single p.