Or login with:
| std::vector<int>derangements_list( | int | n | ) |
#include <codecogs/maths/combinatorics/sequences/derangements_list.h> #include <iostream> int main() { std::vector<int> result = Maths::Combinatorics::Sequences::derangements_list(10); std::cout << "For 0 through 10 objects, the number of derangements are:"; std::cout << std::endl; for (int i = 0; i < result.size(); i++) std::cout << result[i] << " "; std::cout << std::endl; return 0; }
For 0 through 10 objects, the number of derangements are: 1 0 1 2 9 44 265 1854 14833 133496 1334961
Source code is available when you agree to a GP Licence or buy a Commercial Licence.
Not a member, then Register with CodeCogs. Already a Member, then Login.
You must login to leave a messge