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.

A297474 Number of maximal matchings in the n-cocktail party graph.

Original entry on oeis.org

1, 2, 14, 92, 844, 9304, 121288, 1822736, 31030928, 590248736, 12406395616, 285558273472, 7143371664064, 192972180052352, 5598713198048384, 173627942889668864, 5731684010612723968, 200669613102747214336, 7426773564495661485568, 289713958515451427511296
Offset: 1

Views

Author

Eric W. Weisstein, Dec 30 2017

Keywords

Comments

A maximal matching in the n-cocktail party graph is either a perfect matching or a matching with a single unmatched pair. - Andrew Howroyd, Dec 30 2017

Crossrefs

Cf. A053871.

Programs

  • Mathematica
    Table[(-1)^(n + 1) (n HypergeometricPFQ[{1/2, 1 - n}, {}, 2] - HypergeometricPFQ[{1/2, -n}, {}, 2]), {n, 20}]
    Table[-I (-1)^n (n HypergeometricU[1/2, n + 1/2, -1/2] - HypergeometricU[1/2, n + 3/2, -1/2])/Sqrt[2], {n, 20}]
  • PARI
    \\ here b(n) is A053871.
    b(n)={if(n<1, n==0, sum(k=0, n, (-1)^(n-k)*binomial(n,k)*(2*k)!/(2^k*k!)))}
    a(n)=b(n) + n*b(n-1); \\ Andrew Howroyd, Dec 30 2017

Formula

a(n) = A053871(n) + n*A053871(n-1). - Andrew Howroyd, Dec 30 2017

Extensions

a(9)-a(20) from Andrew Howroyd, Dec 30 2017