OFFSET
0,3
COMMENTS
An interior point p = (p_1, ..., p_n) has n>0 components with 0<p_i<3 for 1<=i<=n.
LINKS
Alois P. Heinz, Table of n, a(n) for n = 0..100
EXAMPLE
a(0) = 1: [()].
a(1) = 0, there is no path from (3) to (0) without interior points.
a(2) = 2: [(3,3), (2,3), (1,3), (0,3), (0,2), (0,1), (0,0)], [(3,3), (3,2), (3,1), (3,0), (2,0), (1,0), (0,0)].
MAPLE
a:= proc(n) option remember; `if`(n<3, [1, 0, 2][n+1],
(2*(3*n-1)*(3*n-2)*(7*n^2-9*n-4)*n*a(n-1)
-3*n^2*(3*n-5)*(3*n-1)*(3*n-4)*(3*n-2)*(n-1)^2*a(n-2))/
(8*(2*n+1)*(n-2)))
end:
seq(a(n), n=0..20);
CROSSREFS
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Apr 27 2013
STATUS
approved