I was calculating the probability to draw all items in a list of N items, by picking one randomly, replacing it in the list, etc. (Edit: It's the Coupon collector Problem)
I found this formula after n picking.
$$ \sum_{i=0}^N (-1)^{N-i}{\binom{N}{i}}\left(\frac{i}{N}\right)^n $$
But, I have to calculate this formula with N > 1000000000 in a java program so to avoid a huge loop (the sum). I'm looking for a simplification, any approximation formula will help me.