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.

A238000 Number of partitions of n^n into parts that are at most n.

Original entry on oeis.org

0, 1, 3, 75, 123464, 33432635477, 2561606354507677872, 85980297709044488588773397089, 1841159754991692001851990839259642586671980, 34687845413783594101366282545316028561007822069601179170488
Offset: 0

Views

Author

Alois P. Heinz, Feb 16 2014

Keywords

Examples

			a(1) = 1: 1.
a(2) = 3: 22, 211, 1111.
a(3) = 75: 333333333, ..., 111111111111111111111111111.
		

Crossrefs

Main diagonal of A238010 and A238016.

Programs

  • Mathematica
    a[n_] := SeriesCoefficient[Product[1/(1 - x^j), {j, 1, n}], {x, 0, n^n}];
    a[0] = 0;
    Table[a[n], {n, 0, 5}] (* Jean-François Alcover, Nov 03 2018 *)

Formula

a(n) = [x^(n^n)] Product_{j=1..n} 1/(1-x^j).
a(n) ~ exp(2*n) * n^(n*(n-3)) / (2*Pi). - Vaclav Kotesovec, May 25 2015