dahl-bellnumber 0.1.1

In combinatorial mathematics, the Bell numbers count the possible partitions of a set. https://en.wikipedia.org/wiki/Bell_number
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <stdarg.h>
#include <stdbool.h>
#include <stdint.h>
#include <stdlib.h>

/**
 * C-friendly wrapper over the `bell` function.
 */
double dahl_bellnumber__bell(int32_t n);

/**
 * C-friendly wrapper over the `lbell` function.
 */
double dahl_bellnumber__lbell(int32_t n);