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.

A202603 Triangle T(n,k), read by rows, given by (1, 0, 0, 0, 0, 0, 0, 0, 0, 0, ...) DELTA (1, -1, 1, 0, 0, 0, 0, 0, 0, 0, 0, ...) where DELTA is the operator defined in A084938.

This page as a plain text file.
%I A202603 #6 Feb 22 2013 14:40:24
%S A202603 1,1,1,1,1,0,1,1,-1,-1,1,1,-2,-3,-1,1,1,-3,-5,-2,0,1,1,-4,-7,-2,2,1,1,
%T A202603 1,-5,-9,-1,7,5,1,1,1,-6,-11,1,15,12,3,0,1,1,-7,-13,4,26,21,3,-3,-1,1,
%U A202603 1,-8,-15,8,40,31,-3,-15,-7,-1
%N A202603 Triangle T(n,k), read by rows, given by (1, 0, 0, 0, 0, 0, 0, 0, 0, 0, ...) DELTA (1, -1, 1, 0, 0, 0, 0, 0, 0, 0, 0, ...) where DELTA is the operator defined in A084938.
%C A202603 Mirror image of triangle in A129267.
%F A202603 T(n,k) = T(n-1,k) + T(n-1,k-1) - T(n-2,k-1) - T(n-2,l-2) with T(0,0)= T(1,0) = T(1,1) = 1 and T(n,k) = 0 if k<0 or if n<k.
%F A202603 Sum_{k, 0<=k<=n} T(n,k)*x^k = A000012(n), A099087(n), A190960(n+1) for x = 0, 1, 2 respectively.
%F A202603 G.f.: 1/(1-(1+y)*x+(y+y^2)*x^2).
%e A202603 Triangle begins :
%e A202603 1
%e A202603 1, 1
%e A202603 1, 1, 0
%e A202603 1, 1, -1, -1
%e A202603 1, 1, -2, -3, -1
%e A202603 1, 1, -3, -5, -2, 0
%e A202603 1, 1, -4, -7, -2, 2, 1
%e A202603 1, 1, -5, -9, -1, 7, 5, 1
%Y A202603 Cf. A129267, A010892, A005449
%K A202603 sign,tabl
%O A202603 0,13
%A A202603 _Philippe Deléham_, Dec 21 2011