login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 


Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A035452 Number of partitions of n into parts 8k+1 or 8k+6. 1
1, 1, 1, 1, 1, 2, 2, 2, 3, 3, 3, 4, 4, 5, 6, 6, 7, 9, 9, 10, 11, 12, 14, 16, 17, 19, 21, 23, 25, 28, 31, 34, 37, 41, 44, 49, 53, 57, 63, 69, 74, 82, 88, 95, 104, 112, 121, 133, 142, 154, 167, 179, 193, 209, 224, 243, 261, 280, 301, 324, 347, 373, 400, 430, 460, 494, 528
(list; graph; refs; listen; history; text; internal format)
OFFSET
1,6
LINKS
FORMULA
a(n) ~ exp(Pi*sqrt(n/6)) * Gamma(3/4) * Gamma(1/8) / (4 * 2^(15/16) * 3^(3/16) * Pi^(9/8) * n^(11/16)). - Vaclav Kotesovec, Aug 26 2015
MATHEMATICA
nmax = 100; Rest[CoefficientList[Series[Product[1/((1 - x^(8k+1))*(1 - x^(8k+6))), {k, 0, nmax}], {x, 0, nmax}], x]] (* Vaclav Kotesovec, Aug 26 2015 *)
nmax = 60; kmax = nmax/8;
s = Flatten[{Range[0, kmax]*8 + 1}~Join~{Range[0, kmax]*8 + 6}];
Table[Count[IntegerPartitions@n, x_ /; SubsetQ[s, x]], {n, 1, nmax}] (* Robert Price, Aug 03 2020 *)
CROSSREFS
Cf. A035683.
Sequence in context: A025771 A154403 A053265 * A199575 A120187 A029062
KEYWORD
nonn
AUTHOR
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | 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 September 18 10:38 EDT 2024. Contains 375999 sequences. (Running on oeis4.)