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.

A249677 Triangle, read by rows, with row n forming the coefficients in Product_{k=0..n} (1 + k^3*x).

Original entry on oeis.org

1, 1, 1, 1, 9, 8, 1, 36, 251, 216, 1, 100, 2555, 16280, 13824, 1, 225, 15055, 335655, 2048824, 1728000, 1, 441, 63655, 3587535, 74550304, 444273984, 373248000, 1, 784, 214918, 25421200, 1305074809, 26015028256, 152759224512, 128024064000, 1, 1296, 616326, 135459216, 14320729209, 694213330464, 13472453691584, 78340747014144, 65548320768000
Offset: 0

Views

Author

Paul D. Hanna, Nov 03 2014

Keywords

Comments

Column 1 forms the squares of the triangular numbers (A000537).
Main diagonal forms the cubes of the factorial numbers (A000442).
Row sums equal Product_{k=1..n} (k^3 + 1) = n!*Product_{k=1..n} (k*(k-1) + 1) = n!*A130032(n).

Examples

			Triangle begins:
  1;
  1, 1;
  1, 9, 8;
  1, 36, 251, 216;
  1, 100, 2555, 16280, 13824;
  1, 225, 15055, 335655, 2048824, 1728000;
  1, 441, 63655, 3587535, 74550304, 444273984, 373248000;
  1, 784, 214918, 25421200, 1305074809, 26015028256, 152759224512, 128024064000;
  1, 1296, 616326, 135459216, 14320729209, 694213330464, 13472453691584, 78340747014144, 65548320768000; ...
		

Crossrefs

Programs

  • PARI
    {T(n,k)=polcoeff(prod(m=0,n,1 + m^3*x +x*O(x^n)),k)}
    for(n=0,10,for(k=0,n,print1(T(n,k),", "));print(""))
Showing 1-1 of 1 results.