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.

A338397 Triangle read by rows: T(n,m)= Sum_{k=0..m/2} C(n-k,m-2*k)*C(n-k,m-k)*C(n,k)/C(2*k,k).

This page as a plain text file.
%I A338397 #14 Dec 10 2023 17:34:22
%S A338397 1,1,1,1,4,2,1,9,12,4,1,16,42,34,8,1,25,110,160,90,16,1,36,240,550,
%T A338397 540,226,32,1,49,462,1540,2310,1666,546,64,1,64,812,3724,7910,8596,
%U A338397 4802,1282,128,1,81,1332,8064,23058,34986,29190,13140,2946,256
%N A338397 Triangle read by rows: T(n,m)= Sum_{k=0..m/2} C(n-k,m-2*k)*C(n-k,m-k)*C(n,k)/C(2*k,k).
%F A338397 G.f.: A008459(x,y)/(1-(x*y*A008459(x,y))^2).
%e A338397 1,
%e A338397 1, 1,
%e A338397 1, 4, 2,
%e A338397 1, 9, 12, 4,
%e A338397 1, 16, 42, 34, 8,
%e A338397 1, 25, 110, 160, 90, 16,
%e A338397 1, 36, 240, 550, 540, 226, 32
%o A338397 (Maxima)
%o A338397 T(n,m):=sum((binomial(n-k,m-2*k)*binomial(n-k,m-k)*binomial(n,k))/binomial(2*k,k) ,k,0,m/2);
%Y A338397 Cf. A001263, A008459, A176280 (row sums), A338372.
%K A338397 nonn,tabl
%O A338397 0,5
%A A338397 _Vladimir Kruchinin_, Oct 23 2020