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!)
A186730 Number of n-element subsets that can be chosen from {1,2,...,2*n^2} having element sum n^3. 2

%I #16 Dec 05 2020 09:42:12

%S 1,1,3,36,785,26404,1235580,74394425,5503963083,484133307457,

%T 49427802479445,5750543362215131,751453252349649771,

%U 109016775078856564392,17391089152542558703435,3026419470005398093836960,570632810506646981058828349,115900277419940965862120360831

%N Number of n-element subsets that can be chosen from {1,2,...,2*n^2} having element sum n^3.

%C a(n) is the number of partitions of n^3 into n distinct parts <= 2*n^2.

%e a(0) = 1: {}.

%e a(1) = 1: {1}.

%e a(2) = 3: {1,7}, {2,6}, {3,5}.

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

%p `if`(i<t or n<t*(t+1)/2 or n>t*(2*i-t+1)/2, 0,

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

%p end:

%p a:= n-> b(n^3, 2*n^2, n):

%p seq(a(n), n=0..12);

%t $RecursionLimit = 2000;

%t b[n_, i_, t_] := b[n, i, t] = If[i<t || n<t (t+1)/2 || n>t (2i-t+1)/2, 0, If[n==0, 1, b[n, i-1, t] + If[n<i, 0, b[n-i, i-1, t-1]]]];

%t a[n_] := b[n^3, 2n^2, n];

%t a /@ Range[0, 17] (* _Jean-François Alcover_, Dec 05 2020, after _Alois P. Heinz_ *)

%Y Column k=2 of A185282.

%Y Cf. A202261, A204459.

%K nonn

%O 0,3

%A _Alois P. Heinz_, Jan 21 2012

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 25 10:22 EDT 2024. Contains 371967 sequences. (Running on oeis4.)