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.

A329709 Triangle, read by rows, where the n-th row lists the (n^2+1) coefficients of (1+2*x+...+(n+1)*x^n)^n.

Original entry on oeis.org

1, 1, 2, 1, 4, 10, 12, 9, 1, 6, 21, 56, 111, 174, 219, 204, 144, 64, 1, 8, 36, 120, 330, 768, 1544, 2728, 4275, 5920, 7256, 7848, 7386, 5880, 3900, 2000, 625, 1, 10, 55, 220, 715, 2002, 4970, 11120, 22685, 42570, 73953, 119340, 179305, 251230, 328450, 400304, 453695, 476870, 462815, 411740, 332045, 239070, 150840, 79920, 32400, 7776
Offset: 0

Views

Author

Seiichi Manyama, Feb 29 2020

Keywords

Examples

			Triangle begins:
  1;
  1, 2;
  1, 4, 10, 12,   9;
  1, 6, 21, 56, 111, 174, 219, 204, 144, 64;
  ...
		

Crossrefs

Programs

  • PARI
    for(n=0, 5, print(Vecrev(sum(k=0, n, (k+1)*x^k)^n), ", "))