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 A275950 #7 Aug 16 2016 09:46:43 %S A275950 1,3,2,11,8,6,49,38,30,24,291,242,204,174,150,1979,1688,1446,1242, %T A275950 1068,918,15217,13238,11550,10104,8862,7794,6876,136659,121442,108204, %U A275950 96654,86550,77688,69894,63018,1349627,1212968,1091526,983322,886668,800118,722430,652536,589518,14561425,13211798,11998830,10907304,9923982,9037314,8237196,7514766,6862230,6272712 %N A275950 Square array A(1,k) = A265905(k), A(n>1,k) = A(n-1, k+1) - A(n-1, k); successive differences of A265905 read by descending antidiagonals as A(1,1), A(1,2), A(2,1), A(1,3), A(2,2), A(3,1), ... %H A275950 Antti Karttunen, <a href="/A275950/b275950.txt">Table of n, a(n) for n = 1..406; the first 28 antidiagonals of array</a> %H A275950 <a href="/index/Fa#facbase">Index entries for sequences related to factorial base representation</a> %F A275950 A(1,k) = A265905(k); and for n > 1, A(n,k) = A(n-1, k+1) - A(n-1, k). %e A275950 The top left 7 x 8 corner of the array: %e A275950 1, 3, 11, 49, 291, 1979, 15217 %e A275950 2, 8, 38, 242, 1688, 13238, 121442 %e A275950 6, 30, 204, 1446, 11550, 108204, 1091526 %e A275950 24, 174, 1242, 10104, 96654, 983322, 10907304 %e A275950 150, 1068, 8862, 86550, 886668, 9923982, 123958350 %e A275950 918, 7794, 77688, 800118, 9037314, 114034368, 1514355678 %e A275950 6876, 69894, 722430, 8237196, 104997054, 1400321310, 20026187676 %e A275950 63018, 652536, 7514766, 96759858, 1295324256, 18625866366, 291196957578 %o A275950 (Scheme) %o A275950 (define (A275950 n) (A275950bi (A002260 n) (A004736 n))) %o A275950 (define (A275950bi row col) (if (= 1 row) (A265905 col) (- (A275950bi (- row 1) (+ 1 col)) (A275950bi (- row 1) col)))) %Y A275950 Transpose: A275951. %Y A275950 Row 1: A265905, row 2: A265906, row 3: A275953. %Y A275950 Column 1: A275955. %Y A275950 Cf. A153880. %Y A275950 Variant: A275960. %K A275950 nonn,tabl %O A275950 1,2 %A A275950 _Antti Karttunen_, Aug 13 2016