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 A245683 #17 Mar 23 2017 07:06:18 %S A245683 0,2,1,0,1,1,-6,-3,-1,0,0,-3,-3,-2,-1,50,25,11,4,1,0,0,25,25,18,11,6, %T A245683 3,-854,-427,-201,-88,-35,-12,-3,0,0,-427,-427,-314,-201,-118,-65,-34, %U A245683 -17,24930,12465,6019,2796,1241,520,201,68,17,0 %N A245683 Array T(n,k) read by antidiagonals, where T(0,k) = -A226158(k) and T(n+1,k) = 2*T(n,k+1) - T(n,k). %C A245683 Take T(n,k) = -A226158(k) and its transform via T(n+1,k) = 2*T(n,k+1) - T(n,k): %C A245683 0, 1, 1, 0, -1, 0, 3, 0, -17, ... %C A245683 2, 1, -1, -2, 1, 6, -3, -34, ... = A230324 %C A245683 0, -3, -3, 4, 11, -12, -65, ... %C A245683 -6, -3, 11, 18, -35, -118, ... %C A245683 0, 25, 25, -88, -201, ... %C A245683 50, 25, -201, -314, ... %C A245683 0, -427, -427, ... %C A245683 -854, -427, ... %C A245683 0, ... %C A245683 Every row is alternatively an autosequence of the first kind, see A226158, and of the second kind, see A190339. %C A245683 The second column is twice 1, -3, 25, -427, 12465, ... = (-1)^n*A009843(n) which is in the third column. See A132049(n), numerators of Euler's formula for Pi from the Bernoulli numbers, A243963 and A245244. Hence a link between the Genocchi numbers and Pi. %C A245683 a(n) is the triangle of the increasing antidiagonals. %e A245683 Triangle a(n): %e A245683 0, %e A245683 2, 1, %e A245683 0, 1, 1, %e A245683 -6, -3, -1, 0, %e A245683 0, -3, -3, -2, -1, %e A245683 50, 25, 11, 4, 1, 0, %e A245683 etc. %t A245683 t[0, 0] = 0; t[0, 1] = 1; t[0, k_] := -k*EulerE[k-1, 0]; t[n_, k_] := t[n, k] = -t[n-1, k] + 2*t[n-1, k+1]; Table[t[n-k, k], {n, 0, 9}, {k, 0, n}] // Flatten (* _Jean-François Alcover_, Aug 04 2014 *) %Y A245683 Cf. A226158, A230324, A009843, A132049, A243963, A245244. %K A245683 sign,tabl %O A245683 0,2 %A A245683 _Paul Curtz_, Jul 29 2014