OFFSET
0,3
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 sequence (A003557), which is n/rad(n).
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)
D=[0]+[n/prod([x for x in prime_divisors(n)]) for n in [1..122]]
T=[[prod(D[1:m+1])/(prod(D[1:n+1])*prod(D[1:(m-n)+1])) for n in [0..m]] for m in [0..len(D)-1]]
[(1/D[i+1])*T[2*i][i] for i in [0..61]]
CROSSREFS
KEYWORD
nonn
AUTHOR
Tom Edgar, Aug 27 2014
STATUS
approved