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.

Showing 1-1 of 1 results.

A356206 T(n,k) are the denominators of the coefficients of the Legendre polynomials of degree n, with increasing exponents, where T(n,k) is a triangle read by rows.

Original entry on oeis.org

1, 1, 1, 2, 1, 2, 1, 2, 1, 2, 8, 1, 4, 1, 8, 1, 8, 1, 4, 1, 8, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 128, 1, 32, 1, 64, 1, 32, 1, 128, 1, 128, 1, 32, 1, 64, 1, 32, 1, 128, 256, 1, 256, 1, 128, 1, 128, 1, 256, 1, 256, 1, 256, 1, 256, 1, 128, 1, 128, 1, 256, 1, 256
Offset: 0

Views

Author

Hugo Pfoertner, Jul 29 2022

Keywords

Examples

			The triangle begins:
    1;
    1,   1;
    2,   1,  2;
    1,   2,  1,  2;
    8,   1,  4,  1,  8;
    1,   8,  1,  4,  1,  8;
   16,   1, 16,  1, 16,  1, 16;
    1,  16,  1, 16,  1, 16,  1, 16;
  128,   1, 32,  1, 64,  1, 32,  1, 128;
    1, 128,  1, 32,  1, 64,  1, 32,   1, 128
		

Crossrefs

A356205 are the corresponding numerators.

Programs

  • PARI
    for (n=0, 15, my(P=pollegendre(n,'x));for (j=0, n, print1(denominator(polcoef(P,j)),", ")); print())
Showing 1-1 of 1 results.