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.

A378321 Square array T(n,k), n >= 0, k >= 0, read by antidiagonals downwards, where T(n,0) = 0^n and T(n,k) = k * Sum_{r=0..n} binomial(3*n-3*r+k,r) * binomial(r,n-r)/(3*n-3*r+k) for k > 0.

This page as a plain text file.
%I A378321 #12 Nov 23 2024 09:27:38
%S A378321 1,1,0,1,1,0,1,2,1,0,1,3,3,3,0,1,4,6,8,6,0,1,5,10,16,19,16,0,1,6,15,
%T A378321 28,42,50,42,0,1,7,21,45,79,114,137,114,0,1,8,28,68,135,224,322,380,
%U A378321 322,0,1,9,36,98,216,401,652,918,1088,918,0,1,10,45,136,329,672,1205,1912,2673,3152,2673,0
%N A378321 Square array T(n,k), n >= 0, k >= 0, read by antidiagonals downwards, where T(n,0) = 0^n and T(n,k) = k * Sum_{r=0..n} binomial(3*n-3*r+k,r) * binomial(r,n-r)/(3*n-3*r+k) for k > 0.
%F A378321 G.f. A_k(x) of column k satisfies A_k(x) = ( 1 + x + x^2 * A_k(x)^(3/k) )^k for k > 0.
%F A378321 G.f. of column k: B(x)^k where B(x) is the g.f. of A019497.
%F A378321 B(x)^k = B(x)^(k-1) + x * B(x)^(k-1) + x^2 * B(x)^(k+2). So T(n,k) = T(n,k-1) + T(n-1,k-1) + T(n-2,k+2) for n > 1.
%e A378321 Square array begins:
%e A378321   1,  1,   1,   1,   1,    1,    1, ...
%e A378321   0,  1,   2,   3,   4,    5,    6, ...
%e A378321   0,  1,   3,   6,  10,   15,   21, ...
%e A378321   0,  3,   8,  16,  28,   45,   68, ...
%e A378321   0,  6,  19,  42,  79,  135,  216, ...
%e A378321   0, 16,  50, 114, 224,  401,  672, ...
%e A378321   0, 42, 137, 322, 652, 1205, 2088, ...
%o A378321 (PARI) T(n, k, t=0, u=3) = if(k==0, 0^n, k*sum(r=0, n, binomial(t*r+u*(n-r)+k, r)*binomial(r, n-r)/(t*r+u*(n-r)+k)));
%o A378321 matrix(7, 7, n, k, T(n-1, k-1))
%Y A378321 Columns k=0..1 give A000007, A019497.
%Y A378321 Cf. A071919, A378320.
%K A378321 nonn,tabl
%O A378321 0,8
%A A378321 _Seiichi Manyama_, Nov 23 2024