cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A280456 Expansion of Product_{k>=0} (1 + x^(6*k+1)).

Original entry on oeis.org

1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 2, 1, 0, 0, 0, 1, 2, 1, 0, 0, 0, 1, 3, 2, 0, 0, 0, 1, 3, 3, 1, 0, 0, 1, 4, 4, 1, 0, 0, 1, 4, 5, 2, 0, 0, 1, 5, 7, 3, 0, 0, 1, 5, 8, 5, 1, 0, 1, 6, 10, 6, 1, 0, 1, 6, 12, 9, 2, 0, 1, 7, 14, 11, 3, 0, 1, 7, 16, 15, 5, 0, 1, 8, 19, 18, 7, 1, 1, 8, 21, 23, 10, 1, 1, 9, 24
Offset: 0

Views

Author

Ilya Gutkovskiy, Jan 03 2017

Keywords

Comments

Number of partitions of n into distinct parts congruent to 1 mod 6.
Convolution of A281244 and A280456 is A098884. - Vaclav Kotesovec, Jan 18 2017

Examples

			a(32) = 3 because we have [31, 1], [25, 7] and [19, 13].
		

Crossrefs

Programs

  • Mathematica
    nmax = 105; CoefficientList[Series[Product[(1 + x^(6 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, 6] == 1, Do[poly[[j + 1]] += poly[[j - k + 1]], {j, nmax, k, -1}]; ], {k, 2, nmax}]; poly (* Vaclav Kotesovec, Jan 18 2017 *)

Formula

G.f.: Product_{k>=0} (1 + x^(6*k+1)).
a(n) ~ exp(Pi*sqrt(n)/(3*sqrt(2)))/(2*2^(5/12)*sqrt(3)*n^(3/4)) * (1 + (Pi/(144*sqrt(2)) - 9/(4*sqrt(2)*Pi)) / sqrt(n)). - Ilya Gutkovskiy, Jan 03 2017, extended by Vaclav Kotesovec, Jan 18 2017