cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A245798 Catalan number analogs for totienomial coefficients (A238453).

Original entry on oeis.org

1, 1, 2, 4, 12, 36, 120, 360, 960, 3840, 13824, 41472, 152064, 506880, 2280960, 7983360, 29937600, 99792000, 266112000, 1197504000, 4790016000, 19160064000, 73156608000, 219469824000, 1009561190400, 3533464166400, 12563428147200, 54441521971200, 155547205632000
Offset: 0

Views

Author

Tom Edgar, Aug 22 2014

Keywords

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

Examples

			We see that A238453(10,5) = 72 and A000010(5+1) = 2, so a(5) = (1/2)*72 = 36.
		

Crossrefs

Programs

  • 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]]

Formula

a(n) = A238453(2*n,n) / A000010(n+1).