A072529 Product of the next n multiples of n.
1, 24, 3240, 1290240, 1126125000, 1822853652480, 4914543582748800, 20469829379869900800, 124583146969045247683200, 1061374990515840000000000000, 12232437772393129356474535526400
Offset: 1
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