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.

A339388 a(n) is the number of k in the range 1..n-1 such that a(k)*a(n-k) <= a(n-1).

Original entry on oeis.org

0, 1, 2, 3, 4, 5, 4, 2, 2, 4, 6, 8, 10, 8, 4, 3, 2, 2, 4, 6, 8, 10, 10, 12, 10, 6, 4, 2, 2, 4, 6, 8, 14, 17, 20, 17, 14, 10, 6, 2, 2, 4, 6, 10, 16, 20, 26, 24, 20, 14, 10, 2, 2, 4, 6, 11, 16, 21, 26, 27, 24, 20, 14, 6, 2, 2, 4, 8, 16, 22, 28, 34, 36, 34, 20
Offset: 1

Views

Author

Rémy Sigrist, Dec 02 2020

Keywords

Crossrefs

Programs

  • PARI
    { for (n=1, #a=vector(75), print1 (a[n] = sum(k=1, n-1, a[k]*a[n-k]<=a[n-1]) ", ")) }