OFFSET
0,2
LINKS
Paul Boddington, No-cycle algebras and representation theory, Ph.D. thesis, University of Warwick, 2004.
FORMULA
For k>=0 define p_k(x) = x(x+1)(x+3)...(x+k(k-1)/2) and consider the linear map taking each p_k(x) to k*p_k(x)/x. Then the images of x, x^2, x^3, ... are given by the rows. E.g., x^3 goes to 3x^2 + 4x + 2.
EXAMPLE
Triangle begins:
1;
2, 1;
3, 4, 2;
4, 10, 14, 7;
5, 20, 54, 76, 38;
...
PROG
(PARI) tabl(nn) = my(v = vector(nn)); for (n=1, nn, my(p=prod(i=1, n, x+i*(i-1)/2), q=n*p/x); v[n] = q - sum(i=1, n-1, polcoeff(p, i)*v[i])); vector(nn, k, Vec(v[k])); \\ Michel Marcus, Mar 18 2023
CROSSREFS
KEYWORD
AUTHOR
Paul Boddington, Jul 22 2005
EXTENSIONS
More terms from Michel Marcus, Mar 18 2023
STATUS
approved