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!)
A222707 Total number of parts of multiplicity 7 in all partitions of n. 2

%I #10 May 24 2018 04:23:37

%S 1,0,1,1,2,2,4,5,8,9,14,17,25,30,43,53,72,88,118,145,190,234,301,370,

%T 471,575,724,884,1102,1339,1657,2007,2465,2975,3630,4369,5301,6355,

%U 7672,9171,11018,13126,15706,18655,22231,26329,31260,36920,43688,51454,60693

%N Total number of parts of multiplicity 7 in all partitions of n.

%H Alois P. Heinz, <a href="/A222707/b222707.txt">Table of n, a(n) for n = 7..1000</a>

%F G.f.: (x^7/(1-x^7)-x^8/(1-x^8))/Product_{j>0}(1-x^j).

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

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

%p add((l->`if`(m=7, l+[0, l[1]], l))(b(n-p*m, p-1)), m=0..n/p)))

%p end:

%p a:= n-> b(n, n)[2]:

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

%t b[n_, p_] := b[n, p] = If[n == 0, {1, 0}, If[p < 1, {0, 0}, Sum[Function[l, If[m == 7, l + {0, l[[1]]}, l]][b[n - p*m, p - 1]], {m, 0, n/p}]]];

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

%t Table[a[n], {n, 7, 60}] (* _Jean-François Alcover_, Apr 30 2018, after _Alois P. Heinz_ *)

%Y Column k=7 of A197126.

%K nonn

%O 7,5

%A _Alois P. Heinz_, Feb 28 2013

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