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.

A038259 Triangle whose (i,j)-th entry is binomial(i,j)*6^(i-j)*5^j.

Original entry on oeis.org

1, 6, 5, 36, 60, 25, 216, 540, 450, 125, 1296, 4320, 5400, 3000, 625, 7776, 32400, 54000, 45000, 18750, 3125, 46656, 233280, 486000, 540000, 337500, 112500, 15625, 279936, 1632960, 4082400, 5670000, 4725000, 2362500, 656250, 78125
Offset: 0

Views

Author

Keywords

Examples

			   1
   6    5
  36   60   25
216  540  450  125
1296 4320 5400 3000  625
7776 32400 54000 45000 18750 3125
		

References

  • B. N. Cyvin et al., Isomer enumeration of unbranched catacondensed polygonal systems with pentagons and heptagons, Match, No. 34 (Oct 1996), pp. 109-121.

Crossrefs

Cf. A001020 (row sums).

Programs

  • Mathematica
    Table[Binomial[k,m]6^(k-m) 5^m,{k,0,10},{m,0,k}]//Flatten (* Harvey P. Dale, Aug 26 2020 *)