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!)
A035449 Number of partitions of n into parts 8k+1 or 8k+3. 1
1, 1, 2, 2, 2, 3, 3, 3, 5, 5, 6, 8, 8, 9, 11, 11, 13, 16, 17, 20, 23, 25, 28, 31, 34, 38, 43, 48, 53, 59, 65, 70, 78, 86, 93, 105, 115, 125, 139, 150, 162, 179, 193, 211, 233, 251, 274, 298, 320, 348, 377, 407, 443, 480, 519, 561, 604, 651, 700, 755, 815, 876, 946 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
FORMULA
G.f.: Product_{k>=0} 1/((1-x^(8*k+1))*(1-x^(8*k+3)). - Robert Israel, Aug 29 2018
a(n) ~ exp(Pi*sqrt(n/6)) * Gamma(3/8) * Gamma(1/8) / (8 * Pi^(3/2) * sqrt(2*n)). - Vaclav Kotesovec, Aug 26 2015
MAPLE
N:= 100: # for a(1)..a(N)
P:= 1/mul((1-x^(8*k+1))*(1-x^(8*k+3)), k=0..floor((N-1)/8)):
S:= series(P, x, N+1):
seq(coeff(S, x, j), j=1..N); # Robert Israel, Aug 28 2018
MATHEMATICA
nmax = 100; Rest[CoefficientList[Series[Product[1/((1 - x^(8k+1))*(1 - x^(8k+3))), {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 + 3}];
Table[Count[IntegerPartitions@n, x_ /; SubsetQ[s, x]], {n, 1, nmax}] (* Robert Price, Aug 03 2020 *)
CROSSREFS
Cf. A035679.
Sequence in context: A328796 A247049 A029059 * A161555 A029058 A046026
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 24 00:30 EDT 2024. Contains 371917 sequences. (Running on oeis4.)