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.

A266769 Expansion of 1/((1-x)*(1-x^2)^2*(1-x^3)).

Original entry on oeis.org

1, 1, 3, 4, 7, 9, 14, 17, 24, 29, 38, 45, 57, 66, 81, 93, 111, 126, 148, 166, 192, 214, 244, 270, 305, 335, 375, 410, 455, 495, 546, 591, 648, 699, 762, 819, 889, 952, 1029, 1099, 1183, 1260, 1352, 1436, 1536, 1628, 1736, 1836, 1953, 2061
Offset: 0

Views

Author

N. J. A. Sloane, Jan 10 2016

Keywords

Comments

This is the same as A008763 but without the four leading zeros. There are so many situations where one wants this sequence rather than A008763 that it seems appropriate for it to have its own entry.
But see A008763 (still the main entry) for numerous applications and references.
Also, Molien series for invariants of finite Coxeter group D_4 (bisected).
The Molien series for the finite Coxeter group of type D_k (k >= 3) has G.f. = 1/Prod_i (1-x^(1+m_i)) where the m_i are [1,3,5,...,2k-3,k-1]. If k is even only even powers of x appear, and we bisect the sequence.
Euler transform of length 3 sequence [1, 2, 1]. - Michael Somos, Jun 26 2017
a(n) is the number of partitions of n into parts 1, 2, and 3, where there are two sorts of parts 2. - Joerg Arndt, Jun 27 2017

References

  • J. E. Humphreys, Reflection Groups and Coxeter Groups, Cambridge, 1990. See Table 3.1, page 59.

Crossrefs

Molien series for finite Coxeter groups D_3 through D_12 are A266755, A266769, A266768, A003402, and A266770-A266775.
A variant of A008763.

Programs

  • Magma
    I:=[1,1,3,4,7,9,14,17]; [n le 8 select I[n] else Self(n-1)+2*Self(n-2)-Self(n-3)-2*Self(n-4)-Self(n-5)+2*Self(n-6)+Self(n-7)-Self(n-8): n in [1..60]]; // Vincenzo Librandi, Jan 11 2016
    
  • Mathematica
    CoefficientList[Series[1/((1-x)*(1-x^2)^2*(1-x^3)), {x, 0, 50}], x] (* JungHwan Min, Jan 10 2016 *)
    LinearRecurrence[{1, 2, -1, -2, -1, 2, 1, -1}, {1, 1, 3, 4, 7, 9, 14, 17}, 100] (* Vincenzo Librandi, Jan 11 2016 *)
  • PARI
    Vec(1/((1-x)*(1-x^2)^2*(1-x^3)) + O(x^100)) \\ Michel Marcus, Jan 11 2016
    
  • PARI
    {a(n) = (9*(n+4)*(-1)^n + 2*n^3 + 24*n^2 + 87*n + 157) \ 144}; /* Michael Somos, Jun 26 2017 */

Formula

a(n) = a(n-1) + 2*a(n-2) - a(n-3) - 2*a(n-4) - a(n-5) + 2*a(n-6) + a(n-7) - a(n-8) for n>7. - Vincenzo Librandi, Jan 11 2016
a(n) = -a(-8-n) for all n in Z. - Michael Somos, Jun 26 2017