OFFSET
0,2
LINKS
Seiichi Manyama, Table of n, a(n) for n = 0..1000
Index entries for linear recurrences with constant coefficients, signature (15,-83,220,-303,220,-83,15,-1).
FORMULA
G.f.: (1-x) * ((1-x)^2 - x) * (((1-x)^2 - x)^2 - x*(1-x)^2) / ((((1-x)^2 - x)^2 - x*(1-x)^2)^2 - x*(1-x)^2*((1-x)^2 - x)^2).
a(n) = 15*a(n-1) - 83*a(n-2) + 220*a(n-3) - 303*a(n-4) + 220*a(n-5) - 83*a(n-6) + 15*a(n-7) - a(n-8).
G.f.: 1 / ( (1-x) * (1-B(x)) * (1-B(B(x))) * (1-B(B(B(x)))) ), where B(x) = x/(1-x)^2.
G.f.: (C(x)/x)^(1/2), where C(x) is the g.f. of A396094.
PROG
(PARI) a(n) = sum(i=0, n, sum(j=0, i, sum(k=0, j, binomial(n+i, 2*i)*binomial(i+j, 2*j)*binomial(j+k, 2*k))));
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, May 19 2026
STATUS
approved
