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.

A179268 Product of numbers between and including n and n^2.

Original entry on oeis.org

1, 24, 181440, 3487131648000, 646300418472124416000000, 3099944389915843478899995401256960000000, 844835922269816056767016893501799134566045599137792000000000
Offset: 1

Views

Author

Reinhard Zumkeller, Jul 06 2010

Keywords

Comments

a(n) = Product_{k=n..n^2} k;
a(n) = A088020(n)/A000142(n-1).

Examples

			a(2) = 2*3*4 = 24;
a(3) = 3*4*5*6*7*8*9 = 181440.
		

Crossrefs

Programs

  • Magma
    [Factorial(n^2) / Factorial(n-1): n in [1..10]]; // Vincenzo Librandi, May 31 2011
  • Mathematica
    Table[Times@@Range[n,n^2],{n,10}] (* Harvey P. Dale, Sep 16 2020 *)

Formula

a(n) = (n^2)! / (n-1)!.

Extensions

Definition clarified by Harvey P. Dale, Sep 16 2020