OFFSET
0,4
COMMENTS
One definition of the Catalan numbers is binomial(2*n,n) / (n+1); the current sequence models this definition using the generalized binomial coefficients arising from the radical sequence (A007947).
LINKS
Tom Edgar and Michael Z. Spivey, Multiplicative functions, generalized binomial coefficients, and generalized Catalan numbers, Journal of Integer Sequences, Vol. 19 (2016), Article 16.1.6.
PROG
(Sage)
[(1/(prod(x for x in prime_divisors(n+1))))*prod(prod(x for x in prime_divisors(i)) for i in [1..2*n])/prod(prod(x for x in prime_divisors(i)) for i in [1..n])^2 for n in [0..100]]
CROSSREFS
KEYWORD
nonn
AUTHOR
Tom Edgar, Aug 26 2014
STATUS
approved