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 A134658 #30 Apr 08 2019 03:08:06 %S A134658 3,1,2,2,-1,2,3,-3,1,2,4,-6,4,-1,2,5,-10,10,-5,1,2,6,-15,20,-15,6,-1, %T A134658 2,7,-21,35,-35,21,-7,1,2,8,-28,56,-70,56,-28,8,-1,2,9,-36,84,-126, %U A134658 126,-84,36,-9,1,2,10,-45,120,-210,252,-210,120,-45,10,-1,2 %N A134658 Triangle read by rows, giving coefficients of extended Jacobsthal recurrence. %C A134658 Sequence identical to half its p-th differences from the second term. %C A134658 This sequence is the second of a family after A135356. %C A134658 This triangle looks like a Pascal's triangle without first column, and with signs and with additional right diagonal consisting of 2's. - _Michel Marcus_, Apr 07 2019 %F A134658 Every row sums to 3. - _Jean-François Alcover_, Apr 04 2019 (further to a remark e-mailed by _Paul Curtz_). %e A134658 Triangle begins %e A134658 3; : A000244 = 1, 3, 9, 27, ... is the main sequence %e A134658 1, 2; : A001045 = 0, 1, 1, 3, ... is the main sequence %e A134658 2, -1, 2; : 0, 0, (A007910 = 1, 2, 3, ... ) is the main sequence %e A134658 3, -3, 1, 2; : 0, 0, 0, 1, 3, 6, 10, 17, ... is the main sequence %e A134658 4, -6, 4, -1, 2; : A134987 = 0, 0, 0, 0, 1, ... is the main sequence %e A134658 ... %e A134658 See signatures of linear recurrence of corresponding sequences. %t A134658 T[n_, k_] := T[n, k] = Which[n == 0, 3, k == n, 2, k == 0, n, k == n-1, (-1)^k, True, T[n-1, k] - T[n-1, k-1]]; %t A134658 Table[T[n, k], {n, 0, 10}, {k, 0, n}] // Flatten (* _Jean-François Alcover_, Apr 06 2019 *) %Y A134658 Cf. A000244, A001045, A007910, A134977 (sum of antidiagonals), A134987, A135356. %K A134658 sign,tabl %O A134658 0,1 %A A134658 _Paul Curtz_, Feb 01 2008 %E A134658 In agreement with author, T(0, 0) = 3 and offset 0 by _Michel Marcus_, Apr 06 2019