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.

A259049 Number of self-complementary plane partitions in a (2n)-cube.

Original entry on oeis.org

1, 4, 400, 960400, 54218191104, 71410553858811024, 2186315392560559723530496, 1552832545847343203950118294425600, 25554649541466337940020968722797075170918400, 9736551559782513812975251884508283964266367033264640000
Offset: 0

Views

Author

Peter J. Taylor, Jun 17 2015

Keywords

Comments

Odd cubes have no self-complementary plane partitions.

Crossrefs

Cf. A008793.

Programs

  • PARI
    a(n) = prod(i=0, n-1, i!^2*(i+2*n)!^2 / (i+n)!^4) \\ Michel Marcus, Jun 18 2015

Formula

a(n) = Product_{i=0..n-1} i!^2 (i+2n)!^2 / (i+n)!^4.
a(n) = A008793(n)^2.