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.

A072529 Product of the next n multiples of n.

Original entry on oeis.org

1, 24, 3240, 1290240, 1126125000, 1822853652480, 4914543582748800, 20469829379869900800, 124583146969045247683200, 1061374990515840000000000000, 12232437772393129356474535526400
Offset: 1

Views

Author

Amarnath Murthy, Aug 01 2002

Keywords

Examples

			a(4) = 10*4 * 9*4 * 8*4 * 7*4 = 1290240.
		

Crossrefs

a(n) = A057003(n) * n^n.

Programs

  • PARI
    a(n) = n^n * (n*(n+1)/2)! / (n*(n-1)/2)!; \\ Michel Marcus, Apr 16 2025

Formula

a(n) = n^n * (n*(n+1)/2)! / (n*(n-1)/2)!. - Lior Manor, Aug 19 2002

Extensions

More terms from Lior Manor Aug 19 2002