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.

A054242 Triangle read by rows: row n (n>=0) gives the number of partitions of (n,0), (n-1,1), (n-2,2), ..., (0,n) respectively into sums of distinct pairs.

This page as a plain text file.
%I A054242 #92 Aug 17 2020 01:59:37
%S A054242 1,1,1,1,2,1,2,3,3,2,2,5,5,5,2,3,7,9,9,7,3,4,10,14,17,14,10,4,5,14,21,
%T A054242 27,27,21,14,5,6,19,31,42,46,42,31,19,6,8,25,44,64,74,74,64,44,25,8,
%U A054242 10,33,61,93,116,123,116,93,61,33,10
%N A054242 Triangle read by rows: row n (n>=0) gives the number of partitions of (n,0), (n-1,1), (n-2,2), ..., (0,n) respectively into sums of distinct pairs.
%C A054242 By analogy with ordinary partitions into distinct parts (A000009). The empty partition gives T(0,0)=1 by definition. A054225 and A201376 give pair partitions with repeats allowed.
%C A054242 Also number of partitions into pairs which are not both even.
%C A054242 In the paper by S. M. Luthra: "Partitions of bipartite numbers when the summands are unequal", the square table on page 370 contains an errors. In the formula (6, p. 372) for fixed m there should be factor 1/m!. The correct asymptotic formula is q(m, n) ~ (sqrt(12*n)/Pi)^m * exp(Pi*sqrt(n/3)) / (4*3^(1/4)*m!*n^(3/4)). The same error is also in article by F. C. Auluck (see A054225). - _Vaclav Kotesovec_, Feb 02 2016
%H A054242 Alois P. Heinz, <a href="/A054242/b054242.txt">Rows n = 0..75, flattened</a>
%H A054242 S. M. Luthra, <a href="http://www.insa.nic.in/writereaddata/UpLoadedFiles/PINSA/Vol23A_1957_5_Art04.pdf">Partitions of bipartite numbers when the summands are unequal</a>, Proceedings of the Indian National Science Academy, vol.23, 1957, issue 5A, p. 370-376. [broken link]
%H A054242 Reinhard Zumkeller, <a href="/A054225/a054225_1.lhs.txt">Haskell programs for A054225, A054242, A201376, A201377</a>
%F A054242 G.f.: (1/2)*Product(1+x^i*y^j), i, j>=0.
%e A054242 The second row (n=1) is 1,1 since (1,0) and (0,1) each have a single partition.
%e A054242 The third row (n=2) is 1, 2, 1 from (2,0), (1,1) or (1,0)+(0,1), (0,2).
%e A054242 In the fourth row, T(1,3)=5 from (1,3), (0,3)+(1,0), (0,2)+(1,1), (0,2)+(0,1)+(1,0), (0,1)+(1,2).
%e A054242 The triangle begins:
%e A054242   1;
%e A054242   1,  1;
%e A054242   1,  2,  1;
%e A054242   2,  3,  3,  2;
%e A054242   2,  5,  5,  5,  2;
%e A054242   3,  7,  9,  9,  7,  3;
%e A054242   4, 10, 14, 17, 14, 10,  4;
%e A054242   5, 14, 21, 27, 27, 21, 14,  5;
%e A054242   6, 19, 31, 42, 46, 42, 31, 19,  6;
%e A054242   8, 25, 44, 64, 74, 74, 64, 44, 25, 8;
%e A054242   ...
%t A054242 max = 10; f[x_, y_] := Product[1 + x^n*y^k, {n, 0, max}, {k, 0, max}]/2; se = Series[f[x, y], {x, 0, max}, {y, 0, max}] ; coes = CoefficientList[ se, {x, y}]; t[n_, k_] := coes[[n-k+1, k+1]]; Flatten[ Table[ t[n, k], {n, 0, max}, {k, 0, n}]] (* _Jean-François Alcover_, Dec 06 2011 *)
%o A054242 (Haskell) see Zumkeller link.
%Y A054242 See A201377 for the same triangle formatted in a different way.
%Y A054242 The outer diagonals are T(n,0) = T(n,n) = A000009(n).
%Y A054242 Cf. A054225.
%Y A054242 T(2*n,n) = A219554(n). Row sums give A219555. - _Alois P. Heinz_, Nov 22 2012
%Y A054242 Columns 0-5: A000009, A036469, A268345, A268346, A268347, A268348.
%K A054242 easy,nonn,tabl,nice
%O A054242 0,5
%A A054242 _Marc LeBrun_, Feb 08 2000 and Jul 01 2003
%E A054242 Entry revised by _N. J. A. Sloane_, Nov 30 2011, to incorporate corrections provided by _Reinhard Zumkeller_, who also contributed the alternative version A201377.