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-1 of 1 results.

A045744 Number of noncrossing connected graphs on n nodes on a circle having no four-sided faces.

Original entry on oeis.org

1, 4, 22, 141, 988, 7337, 56749, 452332, 3689697, 30652931, 258465558, 2206330790, 19029531220, 165582392070, 1451789520435, 12813638048184, 113755675163767, 1015119850103821, 9100463691522759, 81923222827031025
Offset: 2

Views

Author

Keywords

Crossrefs

Column k=0 of A094046.
Cf. A045743.

Programs

  • PARI
    a(n) = if(n>1, sum(i=0, floor((n-2)/3), binomial(n-2+i, i)*binomial(4*n-4-i, n-2-3*i))/(n-1)); \\ Andrew Howroyd, Nov 12 2017

Formula

a(n) = Sum_{i=0..floor((n-2)/3)} binomial(n-2+i, i)*binomial(4*n-4-i, n-2-3*i)/(n-1).
Showing 1-1 of 1 results.