login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A049505 Number of symmetric plane partitions in n-cube. 4
1, 2, 10, 112, 2772, 151008, 18076916, 4751252480, 2740612658576, 3468301123758080, 9627912669442441500, 58618653300361405440000, 782683432110638830001250000, 22916694891747599820616089600000, 1471328419282772010324439370939640000 (list; graph; refs; listen; history; text; internal format)
OFFSET

0,2

COMMENTS

The first printing of the Bressoud book gives this formula in Eq. (6.8) as the number of totally symmetric plane partitions. For the correct formula for the number of totally symmetric plane partitions see A005157.

REFERENCES

D. M. Bressoud, Proofs and Confirmations, Camb. Univ. Press, 1999; Eq. (6.8), p. 198.

LINKS

T. D. Noe, Table of n, a(n) for n=0..40

FORMULA

Product_{1<=i<=j<=n} (i+j+n-1)/(i+j-1).

MAPLE

A049505 := proc(n) local i, j; mul(mul((i+j+n-1)/(i+j-1), j=i..n), i=1..n); end;

MATHEMATICA

a[n_] := Product[ ((2i-2)!*(i+2n-1)!)/((i+n-1)!*(2i+n-2)!), {i, 1, n}]; Table[a[n], {n, 0, 14}] (* Jean-François Alcover, Jun 22 2012, after PARI *)

PROG

(PARI) a(n)=prod(i=1, n, prod(j=i, n, (i+j+n-1)/(i+j-1)))

CROSSREFS

Main diagonal of array A102539.

Main diagonal of array in A073165.

Sequence in context: A206154 A181445 A062499 * A136518 A168369 A223056

Adjacent sequences:  A049502 A049503 A049504 * A049506 A049507 A049508

KEYWORD

nonn,nice,easy

AUTHOR

N. J. A. Sloane.

STATUS

approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified May 19 19:20 EDT 2013. Contains 225436 sequences.