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

%I #10 May 29 2018 09:19:24

%S 1,0,1,1,2,2,4,6,9,10,16,20,29,36,53,66,91,112,152,190,251,315,409,

%T 510,655,809,1029,1271,1602,1967,2457,3009,3729,4543,5595,6801,8321,

%U 10069,12258,14783,17906,21511,25947,31073,37315,44542,53285,63415,75587,89687

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

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

%F G.f.: (x^7/(1-x^7)^2-x^8/(1-x^8)^2)/Product_{i>=1}(1-x^i).

%F a(n) ~ 15 * sqrt(3) * exp(Pi*sqrt(2*n/3)) / (6272 * Pi^2). - _Vaclav Kotesovec_, May 29 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]*p], 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 && p == 0, {1, 0}, If[p == 0, Array[0&, n+2], Sum[Function[l, ReplacePart[l, m+2 -> p*l[[1]] + l[[m+2]]]][Join[b[n-p*m, p-1], Array[0&, p*m]]], {m, 0, n/p}]]]; a[n_] := b[n, n][[9]]; Table[a[n], {n, 7, 60}] (* _Jean-François Alcover_, Jan 24 2014, after _Alois P. Heinz_ *)

%Y Column k=7 of A222730.

%K nonn

%O 7,5

%A _Alois P. Heinz_, Mar 03 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 25 07:53 EDT 2024. Contains 371964 sequences. (Running on oeis4.)