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.

A294297 Integers with precisely five partitions into sums of four squares of nonnegative numbers.

Original entry on oeis.org

50, 52, 54, 58, 70, 73, 74, 75, 76, 84, 85, 86, 89, 91, 93, 101, 103, 109, 111, 113, 127, 131, 140, 142, 143, 151, 167, 191, 200, 208, 216, 232, 280, 296, 304, 336, 344, 560, 568, 800, 832, 864, 928, 1120, 1184, 1216, 1344, 1376, 2240, 2272, 3200, 3328, 3456
Offset: 1

Views

Author

Robert Price, Oct 27 2017

Keywords

Comments

A002635(a(n)) = 5.

Crossrefs

Programs

  • Mathematica
    f[n_] := Length@ PowersRepresentations[n, 4, 2]; Select[ Range@ 3500, f@# == 5 &] (* Robert G. Wilson v, Oct 27 2017 *)