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.

Showing 1-3 of 3 results.

A278991 a(n) is the number of simple linear diagrams with n+1 chords.

Original entry on oeis.org

0, 1, 3, 24, 211, 2325, 30198, 452809, 7695777, 146193678, 3069668575, 70595504859, 1764755571192, 47645601726541, 1381657584006399, 42829752879449400, 1413337528735664887, 49465522112961344241, 1830184115528550306438, 71375848864779552073957
Offset: 0

Views

Author

N. J. A. Sloane, Dec 07 2016

Keywords

Crossrefs

Programs

  • Mathematica
    a[0] = 0; a[1] = 1; a[2] = 3; a[n_] := a[n] = (2 n - 1) a[n - 1] + (4 n - 3) a[n - 2] + (2 n - 4) a[n - 3]; Table[a@ n, {n, 0, 19}] (* Michael De Vlieger, Dec 10 2016 *)
  • PARI
    seq(N) = {
      my(a = vector(N)); a[1]=1; a[2]=3; a[3]=24;
      for (n=4, N, a[n] = (2*n-1)*a[n-1] + (4*n-3)*a[n-2] + (2*n-4)*a[n-3]);
      concat(0, a);
    };
    seq(20) \\ Gheorghe Coserea, Dec 10 2016
    
  • PARI
    N = 20; x = 'x + O('x^N);
    concat(0, Vec(serlaplace((1-sqrt(1-2*x))*(1-2*x)^(-3/2)*exp(-1-x+sqrt(1-2*x))))) \\ Gheorghe Coserea, Dec 10 2016

Formula

E.g.f.: (1-sqrt(1-2*x))*(1-2*x)^(-3/2)*exp(-1-x+sqrt(1-2*x)).
a(n) ~ 2^(n+3/2) * n^(n+1) / exp(n+3/2). - Vaclav Kotesovec, Dec 07 2016
a(n) = (2*n-1)*a(n-1) + (4*n-3)*a(n-2) + (2*n-4)*a(n-3). - Gheorghe Coserea, Dec 10 2016

Extensions

Offset corrected by Gheorghe Coserea, Dec 10 2016

A278993 Number of simple chord diagrams with n chords, up to rotation.

Original entry on oeis.org

0, 1, 1, 4, 21, 176, 1893, 25030, 382272, 6604535, 127222636, 2702798537, 62778105236, 1582725739329, 43046433007765, 1256332883208474, 39165907107963273, 1298945495674093932, 45666536827274985585, 1696460750775267473762
Offset: 1

Views

Author

N. J. A. Sloane, Dec 07 2016

Keywords

Crossrefs

A278994 Number of simple chord diagrams with n chords, modulo all symmetries.

Original entry on oeis.org

0, 1, 1, 4, 18, 116, 1060, 13019, 193425, 3313522, 63667788, 1351700744, 31390695708, 791372281393, 21523271532811, 628166776833181, 19582955637428422, 649472761243051940, 22833268501579122332, 848230375982060558217
Offset: 1

Views

Author

N. J. A. Sloane, Dec 07 2016

Keywords

Crossrefs

Showing 1-3 of 3 results.