I have a set of 71 ASCII characters that I use to assemble 192 character tokens.
I need to calculate the number of permutations (as characters can repeat). The factorial of 192 is so large my computer kacked on it after $$10^{303}$$.
I tried this formula: $$(_{71}P_{71}) x (_{71}P_{71}) x (_{71}P_{50})$$ and came up with $$1.2040547673 x 10^{286}$$.
Is that the right way to calculate this? Is there a better way to calculate $$P(_n, _k)$$ when K is larger than N?
Thank you for your time.