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.

A350674 Irregular table read by rows; the n-th row contains, in weakly decreasing order, the positive squares summing to n as obtained by the greedy algorithm.

Original entry on oeis.org

1, 1, 1, 1, 1, 1, 4, 4, 1, 4, 1, 1, 4, 1, 1, 1, 4, 4, 9, 9, 1, 9, 1, 1, 9, 1, 1, 1, 9, 4, 9, 4, 1, 9, 4, 1, 1, 16, 16, 1, 16, 1, 1, 16, 1, 1, 1, 16, 4, 16, 4, 1, 16, 4, 1, 1, 16, 4, 1, 1, 1, 16, 4, 4, 25, 25, 1, 25, 1, 1, 25, 1, 1, 1, 25, 4, 25, 4, 1, 25, 4, 1, 1
Offset: 1

Views

Author

Rémy Sigrist, Jan 10 2022

Keywords

Comments

The n-th row has A053610(n) terms.

Examples

			The first rows are:
     1:    [1]
     2:    [1, 1]
     3:    [1, 1, 1]
     4:    [4]
     5:    [4, 1]
     6:    [4, 1, 1]
     7:    [4, 1, 1, 1]
     8:    [4, 4]
     9:    [9]
    10:    [9, 1]
    11:    [9, 1, 1]
    12:    [9, 1, 1, 1]
    13:    [9, 4]
    14:    [9, 4, 1]
    15:    [9, 4, 1, 1]
    16:    [16]
		

Crossrefs

Programs

  • PARI
    row(n,e=2) = { my (g=[], r); while (n, r=sqrtnint(n,e); n-=r^e; g=concat(g,[r^e])); g }

Formula

T(n, 1) = A048760(n).
T(n, A053610(n)) = A350698(n).