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!)
A280454 Expansion of Product_{k>=0} (1 + x^(5*k+1)). 17
1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 1, 2, 1, 0, 0, 1, 2, 1, 0, 0, 1, 3, 2, 0, 0, 1, 3, 3, 1, 0, 1, 4, 4, 1, 0, 1, 4, 5, 2, 0, 1, 5, 7, 3, 0, 1, 5, 8, 5, 1, 1, 6, 10, 6, 1, 1, 6, 12, 9, 2, 1, 7, 14, 11, 3, 1, 7, 16, 15, 5, 1, 8, 19, 18, 7, 2, 8, 21, 23, 10, 2, 9, 24, 27, 13, 3, 9, 27, 34, 18, 4, 10, 30, 39, 23, 6, 10 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,18
COMMENTS
Number of partitions of n into distinct parts congruent to 1 mod 5.
Convolution of A281243 and A280454 is A203776. - Vaclav Kotesovec, Jan 18 2017
LINKS
FORMULA
G.f.: Product_{k>=0} (1 + x^(5*k+1)).
a(n) ~ exp(Pi*sqrt(n)/sqrt(15))/(2*2^(1/5)*15^(1/4)*n^(3/4)) * (1 + (Pi/(240*sqrt(15)) - 3*sqrt(15)/(8*Pi)) / sqrt(n)). - Ilya Gutkovskiy, Jan 03 2017, extended by Vaclav Kotesovec, Jan 24 2017
EXAMPLE
a(27) = 3 because we have [26, 1], [21, 6] and [11, 16].
MATHEMATICA
nmax = 102; CoefficientList[Series[Product[(1 + x^(5 k + 1)), {k, 0, nmax}], {x, 0, nmax}], x]
nmax = 200; poly = ConstantArray[0, nmax + 1]; poly[[1]] = 1; poly[[2]] = 1; Do[If[Mod[k, 5] == 1, Do[poly[[j + 1]] += poly[[j - k + 1]], {j, nmax, k, -1}]; ], {k, 2, nmax}]; poly (* Vaclav Kotesovec, Jan 18 2017 *)
CROSSREFS
Sequence in context: A284317 A281243 A284314 * A124645 A029409 A335391
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Jan 03 2017
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 July 5 19:07 EDT 2024. Contains 374028 sequences. (Running on oeis4.)