login
A038331
Triangle whose (i,j)-th entry is binomial(i,j)*12^(i-j)*5^j.
0
1, 12, 5, 144, 120, 25, 1728, 2160, 900, 125, 20736, 34560, 21600, 6000, 625, 248832, 518400, 432000, 180000, 37500, 3125, 2985984, 7464960, 7776000, 4320000, 1350000, 225000, 15625, 35831808, 104509440, 130636800, 90720000, 37800000, 9450000, 1312500, 78125
OFFSET
0,2
LINKS
B. N. Cyvin, J. Brunvoll, and S. J. Cyvin, Isomer enumeration of unbranched catacondensed polygonal systems with pentagons and heptagons, Match, No. 34 (Oct 1996), 109-121.
PROG
(Python)
from sympy import binomial
def T(i, j): return binomial(i, j)*12**(i-j)*5**j
print([T(i, j) for i in range(8) for j in range(i+1)]) # Michael S. Branicky, Dec 05 2021
CROSSREFS
Sequence in context: A278661 A280614 A281041 * A028578 A013680 A033963
KEYWORD
nonn,tabl,easy
AUTHOR
STATUS
approved