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!)
A116365 Sum of the sizes of the tails below the Durfee squares of all partitions of n. 5

%I #20 Jan 03 2019 08:04:38

%S 0,1,3,6,11,20,33,56,86,136,200,301,429,621,868,1219,1669,2297,3091,

%T 4171,5542,7357,9648,12652,16402,21250,27298,35003,44556,56637,71515,

%U 90160,113046,141464,176189,219053,271149,335044,412447,506787,620597

%N Sum of the sizes of the tails below the Durfee squares of all partitions of n.

%C a(n) = Sum(k*A114087(n,k), k=0..n-1).

%D G. E. Andrews, The Theory of Partitions, Addison-Wesley, 1976 (pp. 27-28).

%D G. E. Andrews and K. Eriksson, Integer Partitions, Cambridge Univ. Press, 2004 (pp. 75-78).

%H Vaclav Kotesovec, <a href="/A116365/b116365.txt">Table of n, a(n) for n = 1..10000</a> (terms 1..1000 from Alois P. Heinz)

%F G.f.: [(d/dt){sum(q^(k^2)/product((1-q^j)(1-(tq)^j), j=1..k), k=1..infty)}]_{t=1}.

%F a(n) = (n*A000041(n)-A116503(n))/2. - _Vladeta Jovovic_, Feb 18 2006

%F a(n) ~ (1/(8*sqrt(3)) - sqrt(3) * (log(2))^2 / (4*Pi^2)) * exp(Pi*sqrt(2*n/3)). - _Vaclav Kotesovec_, Jan 03 2019

%e a(4) = 6 because the bottom tails of the five partitions of 4, namely [4], [3,1], [2,2], [2,1,1] and [1,1,1,1], are { }, [1], { }, [1,1] and [1,1,1], respectively, having total size 0+1+0+2+3=6.

%p g:=sum(z^(k^2)/product((1-z^j)*(1-(t*z)^j),j=1..k),k=1..10): dgdt1:=simplify(subs(t=1,diff(g,t))): dgdt1ser:=series(dgdt1,z=0,55): seq(coeff(dgdt1ser,z,n),n=1..48);

%p # second Maple program:

%p b:= proc(n, i) option remember;

%p `if`(n=0, 1, `if`(i<1, 0, b(n, i-1)+`if`(i>n, 0, b(n-i, i))))

%p end:

%p a:= n-> add(k*add(b(k, d) *b(n-d^2-k, d),

%p d=0..floor(sqrt(n))), k=0..n-1):

%p seq(a(n), n=1..40); # _Alois P. Heinz_, Apr 2012

%t b[n_, i_] := b[n, i] = If[n==0, 1, If[i<1, 0, b[n, i-1] + If[i>n, 0, b[n-i, i]]]]; a[n_] := Sum[k*Sum[b[k, d]*b[n-d^2-k, d], {d, 0, Floor[Sqrt[n]]}], {k, 0, n-1}]; Table[a[n], {n, 1, 40}] (* _Jean-François Alcover_, Mar 31 2015, after _Alois P. Heinz_ *) *)

%Y Cf. A115994, A115995, A114087, A114088, A114089.

%K nonn

%O 1,3

%A _Emeric Deutsch_, Feb 12 2006

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 24 18:17 EDT 2024. Contains 371962 sequences. (Running on oeis4.)