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.

A281155 Expansion of (Sum_{k>=2} x^(k^2))^3.

Original entry on oeis.org

0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 3, 0, 0, 1, 0, 6, 0, 0, 0, 3, 3, 0, 3, 0, 6, 0, 0, 3, 0, 3, 3, 6, 0, 0, 1, 6, 6, 0, 0, 0, 6, 0, 6, 6, 0, 3, 0, 6, 6, 0, 0, 6, 3, 3, 3, 6, 6, 0, 3, 0, 6, 1, 3, 12, 6, 0, 0, 6, 3, 6, 6, 0, 3, 0, 3, 15, 6, 0, 0, 6, 12, 0, 3, 3, 6, 6, 0, 12, 3, 0, 6, 6
Offset: 0

Views

Author

Ilya Gutkovskiy, Jan 16 2017

Keywords

Comments

Number of ways to write n as an ordered sum of 3 squares > 1.

Examples

			G.f. = x^12 + 3*x^17 + 3*x^22 + 3*x^24 + x^27 + 6*x^29 + 3*x^33 + 3*x^34 + 3*x^36 + ...
a(17) = 3 because we have [9, 4, 4], [4, 9, 4] and [4, 4, 9].
		

Crossrefs

Programs

  • Mathematica
    nmax = 105; CoefficientList[Series[Sum[x^k^2, {k, 2, nmax}]^3, {x, 0, nmax}], x]
    CoefficientList[Series[(-1 - 2 x + EllipticTheta[3, 0, x])^3/8, {x, 0, 105}], x]

Formula

G.f.: (Sum_{k>=2} x^(k^2))^3.
G.f.: (1/8)*(-1 - 2*x + theta_3(0,x))^3, where theta_3 is the 3rd Jacobi theta function.