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.

A000390 Number of 5-dimensional partitions of n.

Original entry on oeis.org

1, 6, 21, 71, 216, 657, 1907, 5507, 15522, 43352, 119140, 323946, 869476, 2308071, 6056581, 15724170, 40393693, 102736274, 258790004, 645968054, 1598460229, 3923114261, 9554122089, 23098084695, 55458417125, 132293945737, 313657570114
Offset: 1

Views

Author

Keywords

References

  • N. J. A. Sloane, A Handbook of Integer Sequences, Academic Press, 1973 (includes this sequence).
  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

Crossrefs

Cf. A000012 (0-dim), A000041 (1-dim), A000219 (2-dim), A000293 (3-dim), A000334 (4-dim), A000416 (6-dim).
Cf. A096751 (See row 5).

Programs

  • Mathematica
    trans[x_] := If[x == {}, {}, Transpose[x]];
    levptns[n_, k_] :=
      If[k == 1, IntegerPartitions[n],
       Join @@ Table[
         Select[Tuples[levptns[#, k - 1] & /@ y],
          And @@ (GreaterEqual @@@
              trans[Flatten /@ (PadRight[#,
                    ConstantArray[n, k - 1]] & /@ #)]) &], {y,
          IntegerPartitions[n]}]];
    Table[levptns[n, 5] // Length, {n, 1, 7}] (* Robert P. P. McKone, Dec 18 2020 *)

Extensions

More terms from Sean A. Irvine, Nov 14 2010
More terms found by Suresh Govindarajan, May 30 2011