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!)
A179822 Maximally refined partitions into distinct parts (of any natural number) with largest part n. 10

%I #11 Apr 13 2021 19:21:19

%S 1,1,2,3,5,7,12,16,26,37,58,79,128,171,271,376,576,783,1239,1654,2567,

%T 3505,5382,7245,11247,15036,23187,31370,47672,64146,98887,131784,

%U 201340,271350,412828,551744,843285,1125417,1715207,2299452,3479341,4654468,7090529

%N Maximally refined partitions into distinct parts (of any natural number) with largest part n.

%C For the definition, see sequence A179009. This sequence counts the same objects using a different statistic, the largest part rather than the sum of the parts.

%C a(n) is the number of subsets of {1..n-1} containing the sum of any two distinct elements whose sum is <= n. This differs from A326080 in that the set may not contain n itself. These sets are the complements of the set of parts in the first definition. - _Andrew Howroyd_, Apr 13 2021

%e The partitions counted by n=4 are:

%e 4+1, 4+2+1, 4+3+1, 4+3+2, 4+3+2+1.

%e The partitions counted by n=5 are:

%e 5+2+1, 5+3+1, 5+3+2+1, 5+4+2+1, 5+4+3+1, 5+4+3+2, 5+4+3+2+1.

%o (PARI)

%o a(n)={

%o my(ok(k,b)=for(i=1, (k-1)\2, if(bittest(b,i) && bittest(b,k-i), return(0))); 1);

%o my(recurse(k,b)=if(k==n, ok(k,b), self()(k+1, bitor(b,1<<k)) + if(ok(k,b), self()(k+1, b))));

%o if(n<1, n==0, recurse(1, 0))

%o } \\ _Andrew Howroyd_, Apr 13 2021

%Y Cf. A179009, A179817, A326080.

%K nonn

%O 0,3

%A _Moshe Shmuel Newman_, Jan 10 2011

%E a(19)-a(42) from _Andrew Howroyd_, Apr 13 2021

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 September 16 02:10 EDT 2024. Contains 375959 sequences. (Running on oeis4.)