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.

A025037 Number of partitions of { 1, 2, ..., 5n } into sets of size 5.

Original entry on oeis.org

1, 1, 126, 126126, 488864376, 5194672859376, 123378675083039376, 5721809435651034101376, 470624547891733205872277376, 63887753000850674430367526069376, 13536281554808237495608549953475109376, 4280862577989659916223699531336456815269376
Offset: 0

Views

Author

Keywords

Crossrefs

Column k=5 of A060540.

Programs

  • Magma
    [Factorial(5*n)/(Factorial(n)*Factorial(5)^n): n in [0..10]]; // Vincenzo Librandi, Jun 26 2012
  • Mathematica
    Table[(5n)!/(n!(5!)^n),{n,0,10}] (* Vincenzo Librandi, Jun 26 2012 *)
  • Sage
    [rising_factorial(n+1,4*n)/120^n for n in (0..15)] # Peter Luschny, Jun 26 2012
    

Formula

a(n) = (5n)!/(n!(5!)^n). - Christian G. Bower, Sep 15 1998
a(n) ~ 5^(4*n+1/2) * (n/e)^(4*n) / 24^n. - Amiram Eldar, Aug 28 2025

Extensions

a(0) from Peter Luschny, Apr 24 2023