yep… interesting, I thought the overflow error was a “safety net” of the language, while it is instead a check specifically implemented in the binomial function… so, if the individual binomial computation in multinomial doesn’t overflow, neither does multinomial, e.g.
right; Julia by default does not check overflow, for performance reason, similar to C/C++. But pkgs like Combinatorics I’d imagine have good reason to either make big by default(see for example derangement function), or check overflow.