login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A054440 Number of ordered pairs of partitions of n with no common parts. 18
1, 0, 2, 4, 12, 16, 48, 60, 148, 220, 438, 618, 1302, 1740, 3216, 4788, 8170, 11512, 19862, 27570, 45448, 64600, 100808, 141724, 223080, 307512, 465736, 652518, 968180, 1334030, 1972164, 2691132, 3902432, 5347176, 7611484, 10358426, 14697028, 19790508, 27691500 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
Sylvie Corteel, Carla D. Savage, Herbert S. Wilf, Doron Zeilberger, A pentagonal number sieve, J. Combin. Theory Ser. A 82 (1998), no. 2, 186-192.
Eric Weisstein's World of Mathematics, Pentagonal Number Theorem
FORMULA
G.f.: Sum[p(n)^2*x^n]/Sum[p(n)*x^n], with p(n)=number of partitions of n.
a(n) ~ sqrt(3) * exp(Pi*sqrt(2*n)) / (64 * 2^(1/4) * n^(7/4)). - Vaclav Kotesovec, May 20 2018
EXAMPLE
a(3)=4 because of the 4 pairs of partitions of 3: (3,21),(3,111),(21,3),(111,3).
MAPLE
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:
MATHEMATICA
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 *)
PROG
(Haskell)
a054440 = sum . zipWith (*) a087960_list . map a001255 . a260672_row
-- Reinhard Zumkeller, Nov 15 2015
CROSSREFS
Main diagonal of A284592.
Sequence in context: A132314 A053636 A181135 * A308076 A303819 A074646
KEYWORD
easy,nonn
AUTHOR
Herbert S. Wilf, May 13 2000
EXTENSIONS
Corrected and extended by James A. Sellers, May 23 2000
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 18 18:58 EDT 2024. Contains 371781 sequences. (Running on oeis4.)