login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A156282 Irregular triangle read by rows: row n is the expansion of the product of cyclotomic polynomials from 2nd to n-th polynomial. 1
1, 1, 1, 1, 1, 2, 2, 1, 1, 2, 3, 3, 2, 1, 1, 3, 6, 9, 11, 11, 9, 6, 3, 1, 1, 2, 4, 6, 8, 9, 9, 8, 6, 4, 2, 1, 1, 3, 7, 13, 21, 30, 39, 46, 50, 50, 46, 39, 30, 21, 13, 7, 3, 1, 1, 3, 7, 13, 22, 33, 46, 59, 71, 80, 85, 85, 80, 71, 59, 46, 33, 22, 13, 7, 3, 1, 1, 3, 7, 14, 25, 40, 60, 84, 111, 139 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,6
LINKS
L. Carlitz, q-Bernoulli numbers and polynomials, Duke Math. J. Volume 15, Number 4 (1948), 987-1000.
L. Carlitz and J. Riordan, Two element lattice permutation numbers and their q-generalization, Duke Math. J. Volume 31, Number 3 (1964), 371-388
Y.-H. He, C. Matti, and C. Sun, The Scattering Variety, arXiv preprint arXiv:1403.6833 [cs.SE], 2014. See Table 2, central column. - N. J. A. Sloane, Jun 28 2014
John Shareshian and Michelle L. Wachs, q-Eulerian Polynomials: Excedance Number and Major Index, arXiv:math/0608274 [math.CO], 2006, page 3.
EXAMPLE
1;
1;
1, 1;
1, 2, 2, 1;
1, 2, 3, 3, 2, 1;
1, 3, 6, 9, 11, 11, 9, 6, 3, 1;
1, 2, 4, 6, 8, 9, 9, 8, 6, 4, 2, 1;
1, 3, 7, 13, 21, 30, 39, 46, 50, 50, 46, 39, 30, 21, 13, 7, 3, 1;
1, 3, 7, 13, 22, 33, 46, 59, 71, 80, 85, 85, 80, 71, 59, 46, 33, 22, 13, 7, 3, 1;
1, 3, 7, 14, 25, 40, 60, 84, 111, 139, 166, 189, 206, 215, 215, 206, 189, 166, 139, 111, 84, 60, 40, 25, 14, 7, 3, 1
MAPLE
T:= n-> (p-> seq(coeff(p, x, i), i=0..degree(p)))(
mul(numtheory[cyclotomic](i, x), i=2..n)):
seq(T(n), n=0..10); # Alois P. Heinz, Jul 15 2022
MATHEMATICA
row[n_] := CoefficientList[Product[Cyclotomic[k+1, x], {k, 1, n}], x];
Table[row[n], {n, 0, 8}] // Flatten (* Jean-François Alcover, Jul 15 2022 *)
PROG
(PARI) row(n) = Vec(prod(k=1, n, polcyclo(k+1))); \\ Michel Marcus, Dec 12 2017
CROSSREFS
Row sums give A003418.
Cf. A002088 (row lengths for n>=1).
Sequence in context: A165621 A284321 A004739 * A203776 A343559 A242357
KEYWORD
nonn,tabf
AUTHOR
Roger L. Bagula, Feb 07 2009
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)