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.

A331799 Normalized volume of the Caracol flow polytope. Also equal to the number of "unified diagrams" of the Caracol graph (see Section 4.3 and Section 5 in Benedetti et al. reference).

Original entry on oeis.org

1, 3, 32, 625, 18144, 705894, 34603008, 2051893701, 143000000000, 11464341673642, 1039964049506304, 105353940923859082, 11793014101010071552, 1445828316284179687500, 192713711798795989155840, 27750747808814680091687085, 4293818865468117678192721920
Offset: 1

Views

Author

Alejandro H. Morales, Jan 26 2020

Keywords

Examples

			For n=3, a(3) = 32 = 2*(3+1)^2.
		

Crossrefs

Programs

  • Maple
    a:=proc(n)
      return (1/n)*binomial(2*n-2,n-1)*(n+1)^(n-1);
    end proc:
  • Mathematica
    Array[(1/#) Binomial[2 # - 2, # - 1] (# + 1)^(# - 1) &, 17] (* Michael De Vlieger, Jan 28 2020 *)

Formula

a(n) = A000108(n-1)*A000272(n+1).
a(n) = (1/n)*binomial(2*n-2,n-1)*(n+1)^(n-1).
a(n) = Sum_{i>=0..n-1} binomial(2*n-2,i)*A329057(n-1,i).