bell numbers list
Returns the Bell numbers of order 0 to n.
Controller: CodeCogs
Dependents
Interface
C++
Bell Numbers List
std::vector<int>bell_numbers_list( | int | n | ) |
References:
SUBSET, a C++ library of combinatorial routines, http://www.csit.fsu.edu/~burkardt/cpp_src/subset/subset.htmlExample 1
#include <codecogs/maths/combinatorics/sequences/bell_numbers_list.h> #include <iostream> int main() { std::vector<int> result = Maths::Combinatorics::Sequences::bell_numbers_list(5); std::cout << "Number of values: " << result.size() << std::endl; for (int i = 0; i < result.size(); i++) std::cout << result[i] << " "; std::cout << std::endl; return 0; }
OutputNumber of values: 6 1 1 2 5 15 52
Parameters
n the maximum value of the index in the generated Bell sequence
Returns
- the Bell numbers of order 0 to n
Authors
- Lucian Bentea (August 2005)
Source Code
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.