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.

A185875 Third accumulation array of A051340, by antidiagonals.

This page as a plain text file.
%I A185875 #16 Jul 20 2017 02:19:40
%S A185875 1,4,5,10,19,15,20,46,55,35,35,90,130,125,70,56,155,250,290,245,126,
%T A185875 84,245,425,550,560,434,210,120,364,665,925,1050,980,714,330,165,516,
%U A185875 980,1435,1750,1820,1596,1110,495,220,705,1380,2100,2695,3010,2940,2460,1650,715,286,935,1875,2940,3920,4606,4830,4500,3630,2365,1001,364,1210,2475,3975,5460,6664,7350,7350,6600,5170
%N A185875 Third accumulation array of A051340, by antidiagonals.
%C A185875 A member of the accumulation chain A051340 < A141419 < A185874 < A185875 < A185876 < ... (See A144112 for the definition of accumulation array.)
%H A185875 G. C. Greubel, <a href="/A185875/b185875.txt">Table of n, a(n) for the first 50 rows, flattened</a>
%H A185875 Johann Cigler, <a href="https://arxiv.org/abs/1611.05252">Some elementary observations on Narayana polynomials and related topics</a>, arXiv:1611.05252 [math.CO], 2016. See p. 24.
%F A185875 T(n,k) = (3*n+4*k+5)*C(k,2)*C(n,3)/12, k>=1, n>=1.
%e A185875 Northwest corner:
%e A185875    1,   4,  10,  20,  35
%e A185875    5,  19,  46,  90, 155
%e A185875   15,  55, 130, 250, 425
%e A185875   35, 125, 290, 550, 925
%t A185875 f[n_,k_]:= k*(1+k)*n*(1+n)*(2+n)*(5+4*k+3*n)/144;
%t A185875 TableForm[Table[f[n,k],{n,1,10},{k,1,15}]]
%t A185875 Table[f[n-k+1,k],{n,14},{k,n,1,-1}]//Flatten
%Y A185875 Cf. A051340, A141419, A144112, A185875, A185876.
%Y A185875 Row 1: A000292; Column 1: A000332.
%K A185875 nonn,tabl
%O A185875 1,2
%A A185875 _Clark Kimberling_, Feb 05 2011