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.

A047864 Number of labeled bipartite graphs with n nodes.

Original entry on oeis.org

1, 1, 2, 7, 41, 376, 5177, 103237, 2922446, 116011231, 6433447397, 498234407452, 54007795331921, 8213123246906761, 1756336596363006842, 528975889250504033527, 224688018516023267969441, 134708289561117007261966816
Offset: 0

Views

Author

Keywords

References

  • Miklos Bona, editor, Handbook of Enumerative Combinatorics, CRC Press, 2015, p. 406.
  • H. S. Wilf, Generatingfunctionology, Academic Press, NY, 1990, p. 80, Eq. 3.11.5.

Crossrefs

Row sums of A117279.
The unlabeled version is A033995.

Programs

  • Mathematica
    nn = 20; a = Sum[Sum[Binomial[n, k] 2^(k (n - k)), {k, 0, n}] x^n/n!, {n, 0, nn}]; Range[0, nn]! CoefficientList[Series[a^(1/2), {x, 0, nn}], x]  (* Geoffrey Critzer, Jan 15 2012 *)
  • PARI
    N=18; x='x+O('x^N); Vec(serlaplace(sqrt(sum(n=0, N, exp(2^n*x)*x^n/n!)))) \\ Gheorghe Coserea, Nov 13 2017

Formula

E.g.f.: sqrt( e.g.f. for A047863 ).