The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A204465 Number of n-element subsets that can be chosen from {1,2,...,9*n} having element sum n*(9*n+1)/2. 1

%I #11 Dec 07 2020 02:08:12

%S 1,1,9,85,1143,17053,276373,4721127,83916031,1537408202,28851490163,

%T 552095787772,10736758952835,211657839534446,4221164530621965,

%U 85031286025167082,1727896040082882283,35382865902724442331,729502230296220422918,15132164184348997874504

%N Number of n-element subsets that can be chosen from {1,2,...,9*n} having element sum n*(9*n+1)/2.

%C a(n) is the number of partitions of n*(9*n+1)/2 into n distinct parts <=9*n.

%e a(2) = 9 because there are 9 2-element subsets that can be chosen from {1,2,...,18} having element sum 19: {1,18}, {2,17}, {3,16}, {4,15}, {5,14}, {6,13}, {7,12}, {8,11}, {9,10}.

%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*(9*n+1)/2, 9*n, n):

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

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

%t b[n_, i_, t_] := b[n, i, t] = b[n, i-1, t] + If[n<i, 0, b[n-i, i-1, t-1]];

%t a[n_] := b[n(9n+1)/2, 9n, n];

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

%Y Row n=9 of A204459.

%K nonn

%O 0,3

%A _Alois P. Heinz_, Jan 18 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 June 7 14:59 EDT 2024. Contains 373202 sequences. (Running on oeis4.)