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.

A321741 Product of the first n terms of A007318 (Pascal), read as a sequence.

Original entry on oeis.org

1, 1, 1, 1, 2, 2, 2, 6, 18, 18, 18, 72, 432, 1728, 1728, 1728, 8640, 86400, 864000, 4320000, 4320000, 4320000, 25920000, 388800000, 7776000000, 116640000000, 699840000000, 699840000000, 699840000000, 4898880000000, 102876480000000, 3600676800000000, 126023688000000000, 2646497448000000000, 18525482136000000000, 18525482136000000000
Offset: 1

Views

Author

Kei Ryan, Nov 17 2018

Keywords

Examples

			The 10th term is 18 because the first 10 terms of Pascal's Triangle by row are 1,1,1,1,2,1,1,3,3,1 and 1*1*1*1*2*1*1*3*3*1=18.
		

Crossrefs

Cf. A007318, A163866 (partial sums).

Programs

  • Mathematica
    FoldList[Times, 1, Rest[Flatten[Table[Binomial[n, k], {n, 0, 7}, {k, 0, n}]]]] (* Amiram Eldar, Nov 18 2018 *)
  • PARI
    lista(nn) = {my(i=0, j=0, p=1); for (n=1, nn, p *= binomial(i, j); print1(p, ", "); j++; if (j > i, j = 0; i++););} \\ Michel Marcus, Jan 25 2019

Formula

a(n) = Product_{j=0..n-1} P(n), where P(n) = A007318(n) (as a sequence). - Wolfdieter Lang, Jan 25 2019