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.

A055434 Number of points in Z^n of norm <= 10.

Original entry on oeis.org

1, 21, 317, 4169, 49689, 532509, 5260181, 48218513, 415055025, 3375505573, 26107328109, 193280122713, 1374386800585, 9405092131245, 62077194367429, 396122100447649, 2449318034512737, 14705097001902901, 85877415063465373
Offset: 0

Views

Author

Keywords

Crossrefs

Row n=10 of A302997.

Programs

  • Mathematica
    a[n_] := SeriesCoefficient[1/(1-x) Sum[x^(i^2), {i, -10, 10}]^n, {x, 0, 100}];
    a /@ Range[0, 18] (* Jean-François Alcover, Sep 29 2019, from A302997 *)