#' Bell numbers
#'
#' Compute the nth Bell number.
#'
#' @param n order
#'
#'
#' @export
BellN <- function(n){
sapply(n, function(v) sum( sapply(1:v, stirling2, n=v ) ))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.