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.

A071552 a(n) = (10n)!/n!^10.

Original entry on oeis.org

1, 3628800, 2375880867360000, 4386797336285844480000000, 12868639981414579848070084500000000, 49120458506088132224064306071170476903628800
Offset: 0

Views

Author

Benoit Cloitre, May 30 2002

Keywords

Crossrefs

Sequences (k*n)!/n!^k: A000984 (k = 2), A006480 (k = 3), A008977 (k = 4), A008978 (k = 5), A008979 (k = 6), A071549 (k = 7), A071550 (k = 8), A071551 (k = 9).

Programs

  • Magma
    [Factorial(10*n)/Factorial(n)^10: n in [0..20]]; // Vincenzo Librandi, Aug 13 2014
  • Mathematica
    Table[(10n)!/(n)!^10, {n, 0, 20}] (* Vincenzo Librandi, Aug 13 2014 *)