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.

A264666 Triangle of partial row products of A264662.

Original entry on oeis.org

2, 2, 6, 2, 10, 30, 2, 10, 30, 210, 2, 10, 30, 330, 2310, 2, 10, 130, 390, 4290, 30030, 2, 34, 170, 2210, 6630, 72930, 510510, 2, 34, 170, 2210, 6630, 125970, 1385670, 9699690, 2, 34, 170, 2210, 6630, 125970, 1385670, 9699690, 223092870, 2, 34, 170, 2210
Offset: 1

Views

Author

Reinhard Zumkeller, Nov 20 2015

Keywords

Comments

T(n,1) = A264662(n,1) and T(n,k) = A264662(n,k) * T(n,k-1), k=2..n;
T(n,n) = A002110(n).

Examples

			.  1:  2
.  2:  2, 6
.  3:  2,10, 30
.  4:  2,10, 30, 210
.  5:  2,10, 30, 330, 2310
.  6:  2,10,130, 390, 4290, 30030
.  7:  2,34,170,2210, 6630, 72930, 510510
.  8:  2,34,170,2210, 6630,125970,1385670, 9699690
.  9:  2,34,170,2210, 6630,125970,1385670, 9699690,223092870
. 10:  2,34,170,2210,64090,192270,3653130,40184430,281291010,6469693230 .
		

Crossrefs

Programs

  • Haskell
    a264666 n k = a264666_tabl !! (n-1) !! (n-1)
    a264666_row n = a264666_tabl !! (n-1)
    a264666_tabl = map (scanl1 (*)) a264662_tabl