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!)
A320697 Number of partitions of n with up to ten distinct kinds of 1. 2

%I #10 Apr 24 2021 20:44:41

%S 1,10,46,131,267,439,654,956,1394,2002,2817,3897,5320,7179,9587,12687,

%T 16652,21687,28048,36051,46066,58534,73998,93113,116649,145513,180793,

%U 223800,276077,339417,415942,508179,619090,752128,911336,1101444,1327973,1597358

%N Number of partitions of n with up to ten distinct kinds of 1.

%H Alois P. Heinz, <a href="/A320697/b320697.txt">Table of n, a(n) for n = 0..10000</a>

%F a(n) ~ Pi * 2^(15/2) * exp(Pi*sqrt(2*n/3)) / (3 * n^(3/2)). - _Vaclav Kotesovec_, Oct 24 2018

%F G.f.: (1 + x)^10 * Product_{k>=2} 1 / (1 - x^k). - _Ilya Gutkovskiy_, Apr 24 2021

%p b:= proc(n, i) option remember; `if`(n=0 or i=1,

%p binomial(10, n), `if`(i>n, 0, b(n-i, i))+b(n, i-1))

%p end:

%p a:= n-> b(n$2):

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

%Y Column k=10 of A292622.

%K nonn

%O 0,2

%A _Alois P. Heinz_, Oct 19 2018

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