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.

A122433 Riordan array ((1 + x)^2, x/(1 + x)).

This page as a plain text file.
%I A122433 #16 Jun 27 2025 19:11:06
%S A122433 1,2,1,1,1,1,0,0,0,1,0,0,0,-1,1,0,0,0,1,-2,1,0,0,0,-1,3,-3,1,0,0,0,1,
%T A122433 -4,6,-4,1,0,0,0,-1,5,-10,10,-5,1,0,0,0,1,-6,15,-20,15,-6,1,0,0
%N A122433 Riordan array ((1 + x)^2, x/(1 + x)).
%H A122433 Igor Victorovich Statsenko, <a href="https://aeterna-ufa.ru/sbornik/IN-2024-09-2.pdf#page=10">Riordan generalizations of binomial coefficients</a>, Innovation science No 9-2, State Ufa, Aeterna Publishing House, 2024, pp. 10-13. In Russian.
%F A122433 Inverse is Riordan array ((1 - x)^2, x/(1 - x)).
%F A122433 T(n, k) = (-1)^(n + k)*(C(n, n-k) - 3*C(n-1, n-k-1) + 3*C(n-2, n-k-2) - C(n-3, n-k-3)), where C(n, k) = n!/(k!*(n-k)!) for 0 <= k <= n, otherwise 0. - _Peter Bala_, Mar 21 2018
%F A122433 T(n, k) = Sum_{i=0..n-k} binomial(i+3,3)*binomial(n+1,n-k-i)*(-1)^(n+k+i). - _Igor Victorovich Statsenko_, Sep 23 2024
%F A122433 T(m, n, k) = (-1)^(k + n)*binomial(n + 1, n - k)*hypergeom([m, k - n], [k + 2], 1) for m = 4. - _Peter Luschny_, Sep 23 2024
%e A122433 Triangle begins
%e A122433 1,
%e A122433 2, 1,
%e A122433 1, 1, 1,
%e A122433 0, 0, 0, 1,
%e A122433 0, 0, 0, -1, 1,
%e A122433 0, 0, 0, 1, -2, 1,
%e A122433 0, 0, 0, -1, 3, -3, 1,
%e A122433 0, 0, 0, 1, -4, 6, -4, 1,
%e A122433 0, 0, 0, -1, 5, -10, 10, -5, 1,
%e A122433 0, 0, 0, 1, -6, 15, -20, 15, -6, 1,
%e A122433 0, 0, 0, -1, 7, -21, 35, -35, 21, -7, 1
%p A122433 C := proc(n, k) if 0 <= k and k <= n then
%p A122433 factorial(n)/(factorial(k)*factorial(n-k)) else 0 end if; end proc:
%p A122433 for n from 0 to 10 do
%p A122433 seq((-1)^(n+k)*(C(n, n-k)-3*C(n-1, n-k-1)+3*C(n-2, n-k-2)-C(n-3, n-k-3)), k = 0..n);
%p A122433 end do; # _Peter Bala_, Mar 21 2018
%p A122433 T := (m, n, k) -> (-1)^(k + n)*binomial(n + 1, n - k)*hypergeom([m, k - n], [k + 2], 1); for n from 0 to 9 do seq(simplify(T(4, n, k)), k=0..n) od; # _Peter Luschny_, Sep 23 2024
%Y A122433 Row sums are binomial(3, n).
%Y A122433 Diagonal sums are A122434.
%Y A122433 Product of A007318 and A122432.
%Y A122433 Cf. A007318.
%K A122433 easy,sign,tabl
%O A122433 0,2
%A A122433 _Paul Barry_, Sep 04 2006