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.

A337990 Number of compositions (ordered partitions) of n^n into powers of n.

Original entry on oeis.org

1, 1, 6, 26426, 773527571233557154337704151068262296
Offset: 0

Views

Author

Ilya Gutkovskiy, Oct 06 2020

Keywords

Comments

The next term is too large to include.

Examples

			a(2) = 6 because 2^2 = 4 and we have [4], [2, 2], [2, 1, 1] (3 permutations), [1, 1, 1, 1] and 1 + 1 + 3 + 1 = 6.
		

Crossrefs

Programs

  • Mathematica
    Join[{1, 1}, Table[SeriesCoefficient[1/(1 - Sum[x^(n^k), {k, 0, n}]), {x, 0, n^n}], {n, 2, 4}]]

Formula

a(n) = [x^(n^n)] 1 / (1 - Sum_{k>=0} x^(n^k)), for n > 1.