OFFSET
0,1
COMMENTS
It appears that for n >= 2 a(n-2) is the number of lattice points in the n-dimensional lattice polytope defined, in the space with coordinates (x_1,x_2,...,x_n), by the equations x_i >= 0 for every i, sum_i x_i <= n and x_1 + x_2 <= 2. For n=2, this is a triangle with 6 lattice points.
LINKS
Paolo Xausa, Table of n, a(n) for n = 0..1000
FORMULA
a(n) = (11*n + 3 + 6/(n + 2))*Catalan(n).
G.f.: 2*(7 + 5*sqrt(1 - 4*x) - 6*x)/((1 + sqrt(1 - 4*x))^2*sqrt(1 - 4*x)). - Stefano Spezia, May 15 2025
MATHEMATICA
A383776[n_] := (11*n + 3 + 6/(n + 2))*CatalanNumber[n];
Array[A383776, 30, 0] (* Paolo Xausa, May 15 2025 *)
PROG
(SageMath)
[(11*n+3+6/(n+2))*catalan_number(n) for n in range(12)]
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
F. Chapoton, May 09 2025
STATUS
approved
