Expansion of polynomials

From tehowiki
Revision as of 09:03, 9 March 2025 by Gfis (talk | contribs) (new)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
  • A295237 a:=series(csc(x)*(1-sqrt(1-4*sin(x)))/2, x=0, 20): seq(n!*coeff(a, x, n), n=0..19); # E.g.f.

Postfix notation

The expansion of (exponential) generating functions is performed by PolynomialFieldSequence with a constructor that has up to 5 parameters:

  • offset: first index
  • polys: a list of list of integers in square brackets, specifying the coefficients of a list of polynomials. The polynomials are referenced by p0, p1, p2, ... where p0 gives the initial term of the iteration.
  • postfix: a string starting with a delimiter, followed by a list of elements that are separated by this delimiter
  • dist: an optional increment to the current index
  • gfType: 0 for an o.g.f., 1 for an e.g.f., +4 if the denominator should be returned instead of the numerator, default 0
  • modulus: which element to take when zeros are suppressed, default 1
  • factor: periodicity when zeroes are suppressed, default 1. Even coefficients are selected by (0,2), odd coefficients by (1,2).