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.

A280777 Denominators of coefficients in asymptotic expansion of C_n (number of connected chord diagrams, A000699).

Original entry on oeis.org

1, 2, 8, 16, 128, 1280, 3072, 215040, 3440640, 2293760, 137625600, 201850880, 72666316800, 1889324236800, 52901078630400, 176336928768000, 135426761293824, 191854578499584000, 1593868805996544000, 787371190162292736000, 31494847606491709440000, 29395191099392262144000
Offset: 0

Views

Author

N. J. A. Sloane, Jan 19 2017

Keywords

Examples

			Coefficients are 1, -5/2, -43/8, -579/16, -44477/128, -5326191/1280, -180306541/3072, ...
		

Crossrefs

Programs

  • PARI
    A000699_seq(N) = {
      my(a = vector(N)); a[1] = 1;
      for (n=2, N, a[n] = sum(k=1, n-1, (2*k-1)*a[k]*a[n-k])); a;
    };
    seq(N) = my(C = 'x*Ser(A000699_seq(N))); Vec(x*exp(1-(2*C+C^2)/(2*x))/C);
    apply(denominator, seq(22)) \\ Gheorghe Coserea, Jan 22 2017

Extensions

More terms from Gheorghe Coserea, Jan 22 2017