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 A039744 #25 Nov 03 2023 11:57:28 %S A039744 1,1,2,5,18,73,338,1656,8512,45207,246448,1371535,7764392,44585180, %T A039744 259140928,1521967986,9020077206,53885028921,324176252022, %U A039744 1962530559999,11947926290396,73108804084505,449408984811980,2774152288318052,17190155366056138,106894140685782646 %N A039744 Number of ways n*(n-1) can be partitioned into the sum of 2*(n-1) integers in the range 0..n. %C A039744 An upper bound on A007878. %C A039744 The indices of the odd terms appear to be A118113. - _T. D. Noe_, Dec 19 2006 %H A039744 Alois P. Heinz, <a href="/A039744/b039744.txt">Table of n, a(n) for n = 0..150</a> (terms n=1..65 from T. D. Noe) %F A039744 a(n) = T(n(n+1),2n-2,n), where T(k,p,m) is a recursive function that gives the number of partitions of k into p parts of 0..m. It is defined T(k,p,m) = sum_{i=1..m} T(k-i,p-1,i), with the boundary conditions T(0,p,m)=1 and T(k,0,m)=0 for all positive k, p and m. - _T. D. Noe_, Dec 19 2006 %F A039744 a(n) = coefficient of q^(n*(n-1)) in q-binomial(3*n-2, n). - _Max Alekseyev_, Jun 16 2023 %F A039744 a(n) ~ 3^(3*n - 3/2) / (Pi * n^2 * 2^(2*n - 1)). - _Vaclav Kotesovec_, Jun 17 2023 %p A039744 b:= proc(n, i, t) option remember; `if`(n=0, 1, `if`(t*i %p A039744 <n, 0, b(n, i-1, t)+`if`(i>n, 0, b(n-i, i, t-1)))) %p A039744 end: %p A039744 a:= n-> b(n*(n-1), n, 2*(n-1)): %p A039744 seq(a(n), n=0..25); # _Alois P. Heinz_, May 15 2016 %t A039744 T[0,p_,m_]=1; T[k_,0,m_]=0; T[k_,p_,m_]:=T[k,p,m]=Sum[T[k+i,p-1,-i], {i,-m,-1}]; Table[T[n(n-1),2n-2,n], {n,40}] (* _T. D. Noe_, Dec 19 2006 *) %o A039744 (Sage) def a039744(n): return gaussian_binomial(3*n-2, n)[n*(n-1)] # _Max Alekseyev_, Jun 16 2023 %o A039744 (PARI) a039744(n) = polcoef(matpascal(3*n-1, x)[3*n-1, n+1], n*(n-1)); \\ _Max Alekseyev_, Jun 16 2023 %Y A039744 Cf. A007878, A118113, A362967. %K A039744 nonn %O A039744 0,3 %A A039744 Bill Daly (bill.daly(AT)tradition.co.uk) %E A039744 Definition corrected by Jozsef Pelikan (pelikan(AT)cs.elte.hu), Dec 05 2006 %E A039744 More terms from _T. D. Noe_, Dec 19 2006 %E A039744 a(0)=1 prepended by _Alois P. Heinz_, May 15 2016