|
|
FORMULA
| a(n)= n!*(n+1)!*(-3 + (n+2)*(n+1)/2)/(3!)^2, n>=2.
E.g.f.: (hypergeom([2, 3], [], x) - 3*hypergeom([1, 2], [], x) + 2)/(3!)^2.
a(n)=product(j+2, j=0..n-1)* (-3*product(j+1, j=0..n-1) + product(j+3, j=0..n-1))/(3!)^2, n>=2. From eq.12 of the Blasiak et al. reference given in A078740 with r=3, s=2, k=3.
|