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.
%I A173020 #26 Feb 26 2024 11:01:22 %S A173020 1,1,3,1,9,12,1,18,66,55,1,30,210,455,273,1,45,510,2040,3060,1428,1, %T A173020 63,1050,6650,17955,20349,7752,1,84,1932,17710,74382,148764,134596, %U A173020 43263,1,108,3276,40950,245700,753480,1184040,888030,246675,1,135,5220,85260,690606,2992626,7125300,9161100,5852925,1430715 %N A173020 Triangle of Generalized Runyon numbers R_{n,k}^(3) read by rows. %C A173020 The Runyon numbers R_{n,k}^(1) are A001263, R_{n,k}^(2) are A108767. %C A173020 Row sums are in A002293. %D A173020 Chunwei Song, The Generalized Schroeder Theory, El. J. Combin. 12 (2005) #R53 %H A173020 G. C. Greubel, <a href="/A173020/b173020.txt">Rows n = 1..100 of the triangle, flattened</a> %H A173020 J.-C. Novelli and J.-Y. Thibon, <a href="http://arxiv.org/abs/1403.5962">Hopf Algebras of m-permutations,(m+1)-ary trees, and m-parking functions</a>, arXiv preprint arXiv:1403.5962 [math.CO], 2014-2020. See Fig. 6. %H A173020 Tad White, <a href="https://arxiv.org/abs/2401.01462">Quota Trees</a>, arXiv:2401.01462 [math.CO], 2024. See p. 20. %F A173020 T(n, k) = R(n,k,3) with R(n,k,m)= binomial(n,k)*binomial(m*n,k-1)/n, 1<=k<=n. %F A173020 T(n, n) = A001764(n). %F A173020 T(n, n-1) = A003408(n-2). %F A173020 T(n, 2) = A045943(n-1). %F A173020 T(n, 3) = n*(n-1)*(n-2)*(3*n-1)/4 = 3*A052149(n-1). %F A173020 O.g.f. is series reversion with respect to x of x/((1+x)*(1+x*u)^3). - _Peter Bala_, Sep 12 2012 %F A173020 Sum_{k=1..n} T(n, k, 3) = binomial(4*n, n)/(3*n+1) = A002293(n). - _G. C. Greubel_, Feb 20 2021 %F A173020 n-th row polynomial = x * hypergeom([1 - n, -3*n], [2], x). - _Peter Bala_, Aug 30 2023 %e A173020 The triangle starts in row n=1 as %e A173020 1; %e A173020 1, 3; %e A173020 1, 9, 12; %e A173020 1, 18, 66, 55; %e A173020 1, 30, 210, 455, 273; %e A173020 1, 45, 510, 2040, 3060, 1428; %e A173020 1, 63, 1050, 6650, 17955, 20349, 7752; %e A173020 1, 84, 1932, 17710, 74382, 148764, 134596, 43263; %t A173020 T[n_, k_, m_]:= Binomial[n, k]*Binomial[m*n, k-1]/n; %t A173020 Table[T[n, k, 3], {n, 12}, {k, n}]//Flatten (* _G. C. Greubel_, Feb 20 2021 *) %o A173020 (Sage) %o A173020 def A173020(n,k,m): return binomial(n,k)*binomial(m*n,k-1)/n %o A173020 flatten([[A173020(n,k,3) for k in (1..n)] for n in (1..12)]) # _G. C. Greubel_, Feb 20 2021 %o A173020 (Magma) %o A173020 A173020:= func< n,k,m | Binomial(n,k)*Binomial(m*n,k-1)/n >; %o A173020 [A173020(n,k,3): k in [1..n], n in [1..12]]; // _G. C. Greubel_, Feb 20 2021 %Y A173020 Cf. A010054 (m=0), A001263 (m=1), A108767 (m=2), this sequence (m=3). %Y A173020 Cf. A001764, A002293, A003408, A045943, A052149. %K A173020 easy,nonn,tabl %O A173020 1,3 %A A173020 _R. J. Mathar_, Nov 08 2010