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.

A007746 Number of ways for n-3 nonintersecting loops to cross a line 2n times.

Original entry on oeis.org

42, 640, 5894, 42840, 271240, 1569984, 8536890, 44346456, 222516030, 1086685600, 5193298110, 24384586200, 112831907760, 515709552000, 2332549535400, 10455495457248, 46500885666900, 205401168733824, 901819865269180, 3938266773556720, 17116175702216624
Offset: 4

Views

Author

Philippe Di Francesco (philippe(AT)amoco.saclay.cea.fr)

Keywords

Crossrefs

A diagonal of triangle A008828.

Programs

  • Magma
    [4*Factorial(2*n)/(3*Factorial(n-4)*Factorial(n+6))* (n^4+20*n^3+107*n^2-107*n+15): n in [4..25]]; // Vincenzo Librandi, Nov 23 2015
  • Mathematica
    Table[4 (2 n)!/(3 (n - 4)! (n+6)!) (n^4 + 20 n^3 + 107 n^2 - 107 n + 15), {n, 4, 30}] (* Vincenzo Librandi, Nov 23 2015 *)

Formula

a(n) = 4 * (2*n)! * (n^4+20*n^3+107*n^2-107*n+15) / ( 3*(n-4)! * (n+6)! ).