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.

A085383 Triangle read by rows, 1 <= k <= n: T(n,k) = floor(n/k)*ceiling(n/k).

Original entry on oeis.org

1, 4, 1, 9, 2, 1, 16, 4, 2, 1, 25, 6, 2, 2, 1, 36, 9, 4, 2, 2, 1, 49, 12, 6, 2, 2, 2, 1, 64, 16, 6, 4, 2, 2, 2, 1, 81, 20, 9, 6, 2, 2, 2, 2, 1, 100, 25, 12, 6, 4, 2, 2, 2, 2, 1, 121, 30, 12, 6, 6, 2, 2, 2, 2, 2, 1, 144, 36, 16, 9, 6, 4, 2, 2, 2, 2, 2, 1, 169, 42, 20, 12, 6, 6, 2, 2, 2, 2, 2, 2
Offset: 1

Views

Author

Reinhard Zumkeller, Aug 12 2003

Keywords

Comments

T(n,1) = A000290(n);
T(n,2) = A002620(n) for n > 1;
T(n,n) = 1.

Crossrefs

Programs

  • Mathematica
    Table[Floor[n/k]Ceiling[n/k],{n,20},{k,n}]//Flatten (* Harvey P. Dale, Jan 01 2023 *)