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 A276586 #23 Apr 12 2017 23:25:10 %S A276586 1,2,3,6,8,11,30,36,44,55,210,240,276,320,375,2310,2520,2760,3036, %T A276586 3356,3731,30030,32340,34860,37620,40656,44012,47743,510510,540540, %U A276586 572880,607740,645360,686016,730028,777771,9699690,10210200,10750740,11323620,11931360,12576720,13262736,13992764,14770535 %N A276586 Square array A(row,col) = Sum_{k=0..row} binomial(row,k)*A002110(col+k), read by descending antidiagonals as A(0,0), A(0,1), A(1,0), A(0,2), A(1,1), A(2,0), ... %H A276586 Antti Karttunen, <a href="/A276586/b276586.txt">Table of n, a(n) for n = 0..989; the first 44 antidiagonals of array</a> %H A276586 <a href="/index/Pas#Pascal">Index entries for triangles and arrays related to Pascal's triangle</a> %H A276586 <a href="/index/Pri#primorial_numbers">Index entries for sequences related to primorial numbers</a> %F A276586 A(row,col) = Sum_{k=0..row} binomial(row,k)*A002110(col+k). %F A276586 A(row,col) = A276085(A066117(row+1,col+1)). %e A276586 The top left corner of the array: %e A276586 1, 2, 6, 30, 210, 2310, 30030 %e A276586 3, 8, 36, 240, 2520, 32340, 540540 %e A276586 11, 44, 276, 2760, 34860, 572880, 10750740 %e A276586 55, 320, 3036, 37620, 607740, 11323620, 253753500 %e A276586 375, 3356, 40656, 645360, 11931360, 265077120, 7422334920 %e A276586 3731, 44012, 686016, 12576720, 277008480, 7687412040, 235239464460 %t A276586 primorial[n_] := Product[Prime[k], {k, 1, n}]; A[n_, k_] := Sum[Binomial[n, j]*primorial[k+j], {j, 0, n}]; Table[A[n-k, k], {n, 0, 9}, {k, n, 0, -1}] // Flatten (* _Jean-François Alcover_, Jan 22 2017 *) %o A276586 (Scheme) %o A276586 (define (A276586 n) (A276586bi (A002262 n) (A025581 n))) %o A276586 (define (A276586bi row col) (A276085 (A066117bi (+ 1 row) (+ 1 col)))) %o A276586 (PARI) P(n)=prod(i=1, n, prime(i)); %o A276586 T(n, k) = sum(j=0, n, binomial(n, j)*P(k + j)); %o A276586 for(n=0, 10, for(k=0, n, print1(T(k, n - k),", ");); print();) \\ _Indranil Ghosh_, Apr 11 2017 %Y A276586 Transpose: A276587. %Y A276586 Topmost row: A002110, Leftmost column: A136104. %Y A276586 Cf. A007318, A276085. %Y A276586 Cf. also arrays A066117, A276588, A099884, A255483. %K A276586 nonn,tabl %O A276586 0,2 %A A276586 _Antti Karttunen_, Sep 18 2016