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.

A092592 a(n) = A001142(n)/A002944(n), i.e., the product of C(n,j) binomial coefficients (for j=0..n) is divided by the least common multiple of them.

Original entry on oeis.org

1, 1, 3, 8, 250, 2700, 252105, 39337984, 46664771328, 12859560000000, 100271725559775000, 155537541908508672000, 8147102459616398435002560, 1112629444624748831692923019008, 198709463856994388404947123486328125
Offset: 1

Views

Author

Labos Elemer, Mar 10 2004

Keywords

Crossrefs

Programs

  • PARI
    a(n) = my(v = vector(n+1, j, binomial(n, j-1))); prod(k=1, #v, v[k])/ lcm(v); \\ Michel Marcus, Jul 29 2017