A060061 Fourth column of triangle A060058.
61, 1385, 12284, 68060, 281210, 948002, 2749340, 7097948, 16700255, 36419955, 74551048, 144631240, 267951892, 476948260, 819683560, 1365672424, 2213323585, 3499318141, 5410278500, 8197124100
Offset: 0
Links
- Indranil Ghosh, Table of n, a(n) for n = 0..5000
Programs
-
Mathematica
Table[Binomial[n+6,6]*(280*n^3+2436*n^2+5906n+3843)/63,{n,0,19}] (* Indranil Ghosh, Feb 21 2017 *)
-
Python
import math def C(n, r): f=math.factorial return f(n)//f(r)//f(n-r) def A060061(n): return (C(n+6, 6)*(280*n**3+2436*n**2+5906*n+3843))//63 # Indranil Ghosh, Feb 21 2017