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!)
A035697 Number of partitions of n into parts 8k+5 and 8k+6 with at least one part of each type. 3
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 2, 0, 1, 1, 1, 2, 2, 1, 4, 1, 3, 2, 3, 5, 5, 3, 7, 3, 7, 6, 7, 9, 10, 7, 13, 8, 14, 12, 15, 17, 19, 15, 23, 17, 27, 24, 28, 30, 34, 30, 41, 33, 48, 43, 51, 53, 59, 55, 70, 61, 83, 76, 89, 89, 100, 97, 118, 108, 138, 127, 149 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,19
LINKS
FORMULA
G.f.: (-1 + 1/Product_{k>=0} (1 - x^(8 k + 5)))*(-1 + 1/Product_{k>=0} (1 - x^(8 k + 6))). - Robert Price, Aug 16 2020
MATHEMATICA
nmax = 79; s1 = Range[0, nmax/8]*8 + 5; s2 = Range[0, nmax/8]*8 + 6;
Table[Count[IntegerPartitions[n, All, s1~Join~s2],
x_ /; ContainsAny[x, s1 ] && ContainsAny[x, s2 ]], {n, 1, nmax}] (* Robert Price, Aug 16 2020 *)
nmax = 79; l = Rest@CoefficientList[Series[(-1 + 1/Product[(1 - x^(8 k + 5)), {k, 0, nmax}])*(-1 + 1/Product[(1 - x^(8 k + 6)), {k, 0, nmax}]), {x, 0, nmax}], x] (* Robert Price, Aug 16 2020*)
CROSSREFS
Sequence in context: A051159 A331545 A349465 * A135549 A262666 A124737
KEYWORD
nonn
AUTHOR
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 April 25 06:49 EDT 2024. Contains 371964 sequences. (Running on oeis4.)