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 A213651 #54 Mar 01 2020 01:10:57 %S A213651 1,1,1,1,1,1,1,1,1,1,1,1,2,3,4,5,6,7,8,9,10,9,8,7,6,5,4,3,2,1,1,3,6, %T A213651 10,15,21,28,36,45,55,63,69,73,75,75,73,69,63,55,45,36,28,21,15,10,6, %U A213651 3,1,1,4,10,20,35,56,84,120,165,220,282,348,415,480 %N A213651 10-nomial coefficient array: Coefficients of the polynomial (1 + ... + X^9)^n, n=0,1,... %C A213651 The n-th row also yields the number of ways to get a total of n, n+1, ..., 10n, when throwing n 10-sided dice, or summing n integers ranging from 1 to 10. %C A213651 The row sums equal 10^n = A011557(n). %C A213651 The row lengths are 1 + 9n = 10n - (n-1) = A017173(n). %C A213651 T(n,k) is the number of integers in the [0, 10^n-1] range distributed according to the sum k of their digits. - _Miquel Cerda_, Jun 21 2017 %C A213651 The sum of the squares of the integers of the n-th row gives A174061(n). - _Miquel Cerda_, Jul 03 2017 %H A213651 Seiichi Manyama, <a href="/A213651/b213651.txt">Rows n = 0..46, flattened</a> %H A213651 Miquel Cerda, <a href="/A213651/a213651_1.pdf">Graphical construction of the triangle T(n,k) for n = 0..11.</a> %F A213651 T(n,k) = Sum_{i = 0..floor(k/10)} (-1)^i*binomial(n,i)*binomial(n+k-1-10*i,n-1) for n >= 0 and 0 <= k <= 9*n. - _Peter Bala_, Sep 07 2013 %e A213651 There are 1, 3, 6, 10, ... ways to score a total of 4, 5, 6, 7, ... when throwing three 10-sided dice. %e A213651 The table begins as follows: %e A213651 (row n=0) 1; (row sum = 1, row length = 1) %e A213651 (row n=1) 1,1,1,1,1,1,1,1,1,1; (row sum = 10, row length = 10) %e A213651 (row n=2) 1,2,3,4,5,6,7,8,9,10,9,8,7,6,5,4,3,2,1; (sum = 100, length = 19) %e A213651 (row n=3) 1,3,6,10,15,21,28,36,45,55,63,69,73,75,75,73,...; row sum = 1000; %e A213651 (row n=4) 1,4,10,20,35,56,84,120,165,220,282,348,415,...; row sum = 10^4; %e A213651 etc. %e A213651 Number of integers in (row n=2): k(2)=3, because in the range 0 to 99 there are 3 integers whose digits sum to 2: 2, 11 and 20. - _Miquel Cerda_, Jun 21 2017 %p A213651 #Define the r-nomial coefficients for r = 1, 2, 3, ... %p A213651 rnomial := (r,n,k) -> add((-1)^i*binomial(n,i)*binomial(n+k-1-r*i,n-1), i = 0..floor(k/r)): %p A213651 #Display the 10-nomials as a table %p A213651 r := 10: rows := 10: %p A213651 for n from 0 to rows do %p A213651 seq(rnomial(r,n,k), k = 0..(r-1)*n) %p A213651 end do; %p A213651 # _Peter Bala_, Sep 07 2013 %o A213651 (PARI) concat(vector(5,k,Vec(sum(j=0,9,x^j)^(k-1)))) %Y A213651 The q-nomial arrays are for q=2..10: A007318 (Pascal), A027907, A008287, A035343, A063260, A063265, A171890, A213652, A213651. %K A213651 nonn,tabf %O A213651 0,13 %A A213651 _M. F. Hasler_, Jun 17 2012