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!)
A222708 Total number of parts of multiplicity 8 in all partitions of n. 2
1, 0, 1, 1, 2, 2, 4, 4, 8, 9, 13, 16, 24, 28, 40, 49, 67, 82, 110, 133, 176, 215, 276, 338, 432, 524, 661, 804, 1001, 1214, 1502, 1812, 2228, 2683, 3270, 3928, 4766, 5699, 6879, 8208, 9855, 11724, 14020, 16624, 19804, 23423, 27788, 32781, 38770, 45603, 53762 (list; graph; refs; listen; history; text; internal format)
OFFSET
8,5
LINKS
FORMULA
G.f.: (x^8/(1-x^8)-x^9/(1-x^9))/Product_{j>0}(1-x^j).
a(n) ~ exp(Pi*sqrt(2*n/3)) / (144*Pi*sqrt(2*n)). - Vaclav Kotesovec, May 24 2018
MAPLE
b:= proc(n, p) option remember; `if`(n=0, [1, 0], `if`(p<1, [0, 0],
add((l->`if`(m=8, l+[0, l[1]], l))(b(n-p*m, p-1)), m=0..n/p)))
end:
a:= n-> b(n, n)[2]:
seq(a(n), n=8..60);
MATHEMATICA
b[n_, p_] := b[n, p] = If[n == 0, {1, 0}, If[p < 1, {0, 0}, Sum[Function[l, If[m == 8, l + {0, l[[1]]}, l]][b[n - p*m, p - 1]], {m, 0, n/p}]]];
a[n_] := b[n, n][[2]];
Table[a[n], {n, 8, 60}] (* Jean-François Alcover, Apr 30 2018, after Alois P. Heinz *)
CROSSREFS
Column k=8 of A197126.
Sequence in context: A287136 A351788 A183565 * A324843 A306692 A356236
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Feb 28 2013
STATUS
approved

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 March 29 02:23 EDT 2024. Contains 371264 sequences. (Running on oeis4.)