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.

A006237 Complexity of tensor sum of n graphs; or spanning trees on n-cube.

Original entry on oeis.org

1, 1, 4, 384, 42467328, 20776019874734407680, 1657509127047778993870601546036901052416000000, 153850844349814660487100539994381178281567942393055761257560677644718869248475136000000000000000000000
Offset: 0

Views

Author

Keywords

References

  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
  • R. P. Stanley, Enumerative Combinatorics, Cambridge, Vol. 2, 1999; see Example 5.6.10.

Crossrefs

Cf. A006235.

Programs

  • Mathematica
    Table[2^(2^n - 1 - n) Product[k^Binomial[n, k], {k, n}], {n, 0, 10}]
  • PARI
    a(n)=2^(2^n-n-1)*prod(k=1,n,k^binomial(n,k))

Formula

a(n) = 2^(2^n-1-n)*1^binomial(n, 1)*2^binomial(n, 2)*...*n^binomial(n, n).

Extensions

Description expanded July 1995