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.
%I A198862 #27 Apr 02 2017 03:08:56 %S A198862 -1,2,2,2,3,1,-1,-3,-6,-7,-6,-3,3,10,16,19,16,6,-10,-29,-45,-51,-41, %T A198862 -12,33,84,125,137,104,20,-105,-242,-346,-366,-261,-19,327,693,954, %U A198862 973,646,-47,-1001,-1974,-2620,-2573,-1572,402,3022 %N A198862 Sum of the n-th antidiagonal in the triangle A192011. %C A198862 The current sequence and its successive differences are: %C A198862 -1, 2, 2, 2, 3, 1, -1 ,-3, -6, -7, ... %C A198862 3, 0, 0, 1, -2, -2, -2, -3, -1, 1, 3, 6, 7, 6, 3, -3, -10, -16, ... %C A198862 -3, 0, 1, -3, 0, 0, -1, 2, 2, 2, 3, 1, -1, -3, -6, -7, -6, ... %C A198862 3, 1, -4, 3, 0, -1, 3, 0, 0, 1, -2, -2, -2, -3, -1, 1, 3, 6, 7, ... %C A198862 -2, -5, 7, -3, -1, 4, -3, 0, 1, -3, 0, 0, -1, 2, 2, 2, 3, 1, ... %C A198862 -3, 12, -10, 2, 5, -7, 3, 1, -4, 3, 0, -1, 3, 0, 0, 1, -2, ... %C A198862 15, -22, 12, 3, -12, 10, -2, -5, 7, -3, -1, 4, -3, 0, ... %C A198862 -37, 34, -9, -15, 22, -12, -3, 12, -10, 2, 5, -7, 3, 1, -4, ... %C A198862 Each row obeys the same linear recurrence and is a version of the row 4 lines farther up in the same array shifted right by 12 places. %H A198862 <a href="/index/Rec#order_04">Index entries for linear recurrences with constant coefficients</a>, signature (1,0,0,-1). %F A198862 a(n) = Sum_{k=0..floor(n/2)} A192011(n-k,k). %F A198862 a(n) = a(n-1) - a(n-4), n > 3. %F A198862 From _R. J. Mathar_, Nov 02 2011: (Start) %F A198862 G.f.: (-1 + 3*x) / (1 - x + x^4). %F A198862 a(n) = 3*A099530(n-1) - A099530(n). (End) %p A198862 A198862 := proc(n) %p A198862 add( A192011(n-k,k),k=0..floor(n/2)) ; %p A198862 end proc: %p A198862 seq(A198862(n),n=0..80) ; # _R. J. Mathar_, Nov 03 2011 %K A198862 sign,easy %O A198862 0,2 %A A198862 _Paul Curtz_, Oct 30 2011