cp's OEIS Frontend

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.

A194709 Triangle read by rows: T(k,m) = number of occurrences of k in the last section of the set of partitions of (9 + m).

This page as a plain text file.
%I A194709 #34 Jan 07 2024 14:13:04
%S A194709 30,15,15,6,10,14,5,5,10,10,3,4,5,8,10,2,2,5,4,8,9,1,2,2,4,5,7,9,1,1,
%T A194709 2,2,4,4,8,8,0,1,1,2,2,4,4,7,9,1,0,1,1,2,2,4,4,7,8,0,1,0,1,1,2,2,4,4,
%U A194709 7,8,0,0,1,0,1,1,2,2,4,4,7,8,0,0,0,1,0,1,1,2,2,4,4,7,8
%N A194709 Triangle read by rows: T(k,m) = number of occurrences of k in the last section of the set of partitions of (9 + m).
%C A194709 Sub-triangle of A182703 and also of A194812. Note that the sum of every row is also the number of partitions of 9. For further information see A182703 and A135010.
%H A194709 Andrew Howroyd, <a href="/A194709/b194709.txt">Table of n, a(n) for n = 1..1275</a> (rows 1..50)
%F A194709 T(k,m) = A182703(9+m,k), with T(k,m) = 0 if k > 9+m.
%F A194709 T(k,m) = A194812(9+m,k).
%e A194709 Triangle begins:
%e A194709   30;
%e A194709   15, 15;
%e A194709    6, 10, 14;
%e A194709    5,  5, 10, 10;
%e A194709    3,  4,  5,  8, 10;
%e A194709    2,  2,  5,  4,  8, 9;
%e A194709   ...
%e A194709 For k = 1 and  m = 1; T(1,1) = 30 because there are 30 parts of size 1 in the last section of the set of partitions of 10, since 9 + m = 10, so a(1) = 30. For k = 2 and m = 1; T(2,1) = 15 because there are 15 parts of size 2 in the last section of the set of partitions of 10, since 9 + m = 10, so a(2) = 15.
%o A194709 (PARI) P(n)={my(M=matrix(n,n), d=9); M[1,1]=numbpart(d); for(m=1, n, forpart(p=m+d, for(k=1, #p, my(t=p[k]); if(t<=n && m<=t, M[t, m]++)), [2, m+d])); M}
%o A194709 { my(T=P(10)); for(n=1, #T, print(T[n, 1..n])) } \\ _Andrew Howroyd_, Feb 19 2020
%Y A194709 Always the sum of row k = p(9) = A000041(n) = 30.
%Y A194709 The first (0-10) members of this family of triangles are A023531, A129186, A194702-A194708, this sequence, A194710.
%Y A194709 Cf. A135010, A138121, A194812.
%K A194709 nonn,tabl
%O A194709 1,1
%A A194709 _Omar E. Pol_, Feb 05 2012
%E A194709 Terms a(7) and beyond from _Andrew Howroyd_, Feb 19 2020