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.

A303485 a(n) = [x^(n^3)] (1/(1 - x))*(Sum_{k>=1} x^(k^3))^n.

Original entry on oeis.org

1, 1, 1, 8, 66, 512, 5269, 57459, 711742, 9610222, 139735699, 2183555015, 36543300668, 649320343729, 12174674648730, 240360451018461, 4975239937954534, 107600744797471150, 2426579187889852885, 56901290353169050995, 1384258146777832889697
Offset: 0

Views

Author

Ilya Gutkovskiy, Apr 24 2018

Keywords

Comments

Number of positive solutions to (x_1)^3 + (x_2)^3 + ... + (x_n)^3 <= n^3.

Crossrefs

Programs

  • Mathematica
    Join[{1}, Table[SeriesCoefficient[1/(1 - x) Sum[x^k^3, {k, 1, n}]^n, {x, 0, n^3}], {n, 20}]]