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 A054440 #40 Jul 02 2025 16:01:59 %S A054440 1,0,2,4,12,16,48,60,148,220,438,618,1302,1740,3216,4788,8170,11512, %T A054440 19862,27570,45448,64600,100808,141724,223080,307512,465736,652518, %U A054440 968180,1334030,1972164,2691132,3902432,5347176,7611484,10358426,14697028,19790508,27691500 %N A054440 Number of ordered pairs of partitions of n with no common parts. %H A054440 Reinhard Zumkeller, <a href="/A054440/b054440.txt">Table of n, a(n) for n = 0..5000</a> %H A054440 Sylvie Corteel, Carla D. Savage, Herbert S. Wilf, Doron Zeilberger, <a href="https://doi.org/10.1006/jcta.1997.2846">A pentagonal number sieve</a>, J. Combin. Theory Ser. A 82 (1998), no. 2, 186-192. %H A054440 Eric Weisstein's World of Mathematics, <a href="https://mathworld.wolfram.com/PentagonalNumberTheorem.html">Pentagonal Number Theorem</a> %H A054440 Wikipedia, <a href="https://en.wikipedia.org/wiki/Pentagonal_number_theorem">Pentagonal number theorem</a> %F A054440 G.f.: Sum[p(n)^2*x^n]/Sum[p(n)*x^n], with p(n)=number of partitions of n. %F A054440 a(n) ~ sqrt(3) * exp(Pi*sqrt(2*n)) / (64 * 2^(1/4) * n^(7/4)). - _Vaclav Kotesovec_, May 20 2018 %F A054440 a(n) = [(x*y)^n] Product_{k>=1} (1 + x^k / (1 - x^k) + y^k / (1 - y^k)). - _Ilya Gutkovskiy_, Apr 24 2025 %e A054440 a(3)=4 because of the 4 pairs of partitions of 3: (3,21),(3,111),(21,3),(111,3). %p A054440 with(combinat): p1 := sum(numbpart(n)^2*x^n, n=0..500): it := p1*product((1-x^i), i=1..500): s := series(it, x, 500): for i from 0 to 100 do printf(`%d,`,coeff(s,x,i)) od: %t A054440 nmax = 50; CoefficientList[Series[Sum[PartitionsP[k]^2*x^k, {k, 0, nmax}]/Sum[PartitionsP[k]*x^k, {k, 0, nmax}], {x, 0, nmax}], x] (* _Vaclav Kotesovec_, Jul 04 2016 *) %o A054440 (Haskell) %o A054440 a054440 = sum . zipWith (*) a087960_list . map a001255 . a260672_row %o A054440 -- _Reinhard Zumkeller_, Nov 15 2015 %Y A054440 Cf. A000041, A001255, A001318, A087960, A260672, A260664, A260669, A304873, A304877. %Y A054440 Main diagonal of A284592. %K A054440 easy,nonn %O A054440 0,3 %A A054440 Herbert S. Wilf, May 13 2000 %E A054440 Corrected and extended by _James Sellers_, May 23 2000