Nothing
kdf <- function(l, m, d)
{S <- 0
for(i in 0:m){S1 <- 0
for(j in i:(l + m)){
S1 <- S1 + (-1)^(j - i)*choose(l + m - i, j - i) / (2 * d + j + 1) *
2^(2 * d + j + 1)
}
S <- S + 2 * choose(m, i) * S1 / (2 * d + i)
}
drop(S)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.