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.

A180430 Triangle T(n,k) defined by the recurrence in the formula.

This page as a plain text file.
%I A180430 #12 Feb 26 2019 23:05:32
%S A180430 1,1,2,1,0,2,1,2,-2,2,1,0,2,-2,2,1,2,0,0,-2,2,1,0,0,2,0,-2,2,1,2,0,0,
%T A180430 0,0,-2,2,1,0,2,-2,2,0,0,-2,2,1,2,-2,2,0,0,0,0,-2,2,1,0,2,0,-2,2,0,0,
%U A180430 0,-2,2,1,2,0,0,0,0,0,0,0,0,-2,2,1,0,0,0,2,-2,2,0,0,0,0,-2,2,1,2,0,0,0,0,0,0
%N A180430 Triangle T(n,k) defined by the recurrence in the formula.
%F A180430 T(n,1)=1. T(n,2) = 2-T(n-1,2). T(n,k) = Sum_{i=1..k-2} T(n-i,k-1) - Sum{i=1..k-1} T(n-i,k) for k > 2.
%e A180430 Table starts:
%e A180430   1;
%e A180430   1,  2;
%e A180430   1,  0,  2;
%e A180430   1,  2, -2,  2;
%e A180430   1,  0,  2, -2,  2;
%e A180430   1,  2,  0,  0, -2,  2;
%e A180430   1,  0,  0,  2,  0, -2,  2;
%e A180430   1,  2,  0,  0,  0,  0, -2,  2;
%e A180430   1,  0,  2, -2,  2,  0,  0, -2,  2;
%e A180430   1,  2, -2,  2,  0,  0,  0,  0, -2,  2;
%p A180430 A180430 := proc(n,k) option remember; if k>n then 0; elif k = 1 then 1; elif k = 2 then 2-procname(n-1,k) ; else add( procname(n-i,k-1),i=1..k-2) - add(procname(n-i,k),i=1..k-1) ; end if; end proc: # _R. J. Mathar_, Jul 13 2011
%o A180430 (Excel) Using European dot comma style:
%o A180430 =if(column()=1; 1; if(row()>=column(); sum(indirect(address(row()-column()+2; column()-1; 4)&":"&address(row()-1; column()-1; 4); 4))-sum(indirect(address(row()-column()+1; column(); 4)&":"&address(row()-1; column(); 4); 4)); 0))
%Y A180430 Cf. A176702.
%K A180430 sign,tabl
%O A180430 1,3
%A A180430 _Mats Granvik_, Sep 04 2010