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.

A282172 Expansion of (Sum_{k>=0} x^(k*(k+1)*(k+2)/6))^5.

Original entry on oeis.org

1, 5, 10, 10, 10, 21, 30, 20, 15, 30, 35, 30, 40, 40, 35, 60, 65, 25, 30, 60, 46, 50, 80, 50, 55, 120, 95, 20, 60, 90, 60, 80, 100, 40, 80, 145, 85, 30, 90, 85, 105, 155, 100, 40, 155, 170, 90, 80, 100, 90, 171, 145, 40, 60, 140, 110, 125, 130, 80, 140, 250, 170, 70, 110, 140, 160, 190, 140, 90, 180, 220, 170, 95, 70, 110, 215
Offset: 0

Views

Author

Ilya Gutkovskiy, Feb 07 2017

Keywords

Comments

Number of ways to write n as an ordered sum of 5 tetrahedral (or triangular pyramidal) numbers (A000292).
a(n) > 0 for all n ("Pollock's Conjecture").

Examples

			a(4) = 10 because we have:
[4, 0, 0, 0, 0]
[0, 4, 0, 0, 0]
[0, 0, 4, 0, 0]
[0, 0, 0, 4, 0]
[0, 0, 0, 0, 4]
[1, 1, 1, 1, 0]
[1, 1, 1, 0, 1]
[1, 1, 0, 1, 1]
[1, 0, 1, 1, 1]
[0, 1, 1, 1, 1]
		

Crossrefs

Programs

  • Mathematica
    nmax = 75; CoefficientList[Series[(Sum[x^(k (k + 1) (k + 2)/6), {k, 0, nmax}])^5, {x, 0, nmax}], x]

Formula

G.f.: (Sum_{k>=0} x^(k*(k+1)*(k+2)/6))^5.