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 Euler's totient function (A000010).
When the INTEGERS (2014) paper was written it was not known that this was an integral sequence (see the final paragraph of that paper). However, it is now known to be integral.
Another name could be phi-Catalan numbers. - Tom Edgar, Mar 29 2015
LINKS
Tom Edgar, Table of n, a(n) for n = 0..28
Tom Edgar, Totienomial Coefficients, INTEGERS, 14 (2014), #A62.
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/euler_phi(n+1))*prod(euler_phi(i) for i in [1..2*n])/prod(euler_phi(i) for i in [1..n])^2 for n in [0..100]]
CROSSREFS
KEYWORD
nonn
AUTHOR
Tom Edgar, Aug 22 2014
STATUS
approved