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!)
A100405 Number of partitions of n where every part appears more than two times. 19

%I #23 Aug 20 2019 18:11:28

%S 1,0,0,1,1,1,2,1,2,3,3,3,7,5,6,11,10,10,17,15,20,26,25,29,44,41,47,63,

%T 67,72,99,97,114,143,148,168,216,216,248,306,328,358,443,462,527,629,

%U 665,739,898,936,1055,1238,1330,1465,1727,1837,2055,2366,2543,2808,3274

%N Number of partitions of n where every part appears more than two times.

%H Alois P. Heinz, <a href="/A100405/b100405.txt">Table of n, a(n) for n = 0..10000</a> (terms n = 1..5000 from Vaclav Kotesovec)

%F G.f.: Product_{k>0} (1+x^(3*k)/(1-x^k)). More generally, g.f. for number of partitions of n where every part appears more than m times is Product_{k>0} (1+x^((m+1)*k)/(1-x^k)).

%F a(n) ~ sqrt(Pi^2 + 6*c) * exp(sqrt((2*Pi^2/3 + 4*c)*n)) / (4*sqrt(3)*Pi*n), where c = Integral_{0..infinity} log(1 - exp(-x) + exp(-3*x)) dx = -0.77271248407593487127235205445116662610863126869049971822566... . - _Vaclav Kotesovec_, Jan 05 2016

%e a(6)=2 because we have [2,2,2] and [1,1,1,1,1,1].

%p G:=product((1+x^(3*k)/(1-x^k)),k=1..30): Gser:=series(G,x=0,80): seq(coeff(Gser,x,n),n=0..70); # _Emeric Deutsch_, Aug 06 2005

%p # second Maple program:

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

%p add(b(n-i*j, i-1), j=[0, $3..iquo(n, i)])))

%p end:

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

%p seq(a(n), n=0..70); # _Alois P. Heinz_, Aug 20 2019

%t nmax = 100; Rest[CoefficientList[Series[Product[1 + x^(3*k)/(1-x^k), {k, 1, nmax}], {x, 0, nmax}], x]] (* _Vaclav Kotesovec_, Nov 28 2015 *)

%Y Cf. A007690, A160974-A160990.

%Y Cf. A266647, A266648, A266649, A266650.

%K easy,nonn

%O 0,7

%A _Vladeta Jovovic_, Jan 11 2005

%E More terms from _Emeric Deutsch_, Aug 06 2005

%E a(0)=1 prepended by _Alois P. Heinz_, Aug 20 2019

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 01:35 EDT 2024. Contains 371964 sequences. (Running on oeis4.)