cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A122369 Dimension of 5-variable non-commutative harmonics (twisted derivative). The dimension of the space of non-commutative polynomials in 5 variables which are killed by all symmetric differential operators (where for a monomial w, d_{xi} ( xi w ) = w and d_{xi} ( xj w ) = 0 for i/=j).

Original entry on oeis.org

1, 4, 19, 93, 459, 2273, 11274, 55964, 277924, 1380527, 6858356, 34074280, 169297743, 841173845, 4179517118, 20766807551, 103184684826, 512698227699, 2547469553647, 12657750705603, 62893284231103, 312501512711984, 1552744642741738, 7715214279423070
Offset: 0

Views

Author

Mike Zabrocki, Aug 30 2006

Keywords

Examples

			a(1) = 4 because x1-x2, x2-x3, x3-x4, x4-x5 are all of degree 1 and are killed by the differential operator d_x1+d_x2+d_x3+d_x4+d_x5.
		

References

  • C. Chevalley, Invariants of finite groups generated by reflections, Amer. J. Math. 77 (1955), 778-782.
  • M. C. Wolf, Symmetric functions of noncommutative elements, Duke Math. J. 2 (1936), 626-637.

Crossrefs

Programs

  • Maple
    coeffs(convert(series((1-6*q+11*q^2-6*q^3)/(1-10*q+32*q^2-37*q^3+11*q^4),q,30),`+`)-O(q^30),q);
  • Mathematica
    gf = With[{n = 5}, Sum[n!/(n-d)! q^d/Product[(1 - r q), {r, 1, d}], {d, 0, n}]/Sum[ q^d/Product[(1 - r q), {r, 1, d}], {d, 0, n}]]; CoefficientList[gf + O[q]^22, q] (* Jean-François Alcover, Nov 17 2018 *)

Formula

G.f. (1-6*q+11*q^2-6*q^3)/(1-10*q+32*q^2-37*q^3+11*q^4) more generally, sum( n!/(n-d)!*q^d/prod((1-r*q),r=1..d), d=0..n)/sum( q^d/prod((1-r*q),r=1..d), d=0..n) where n=5.