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.

A264440 Row lengths of the irregular triangle A137510 (number of divisors d of n with 1 < d < n, or 0 if no such d exists).

Original entry on oeis.org

1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 1, 4, 1, 2, 2, 3, 1, 4, 1, 4, 2, 2, 1, 6, 1, 2, 2, 4, 1, 6, 1, 4, 2, 2, 2, 7, 1, 2, 2, 6, 1, 6, 1, 4, 4, 2, 1, 8, 1, 4, 2, 4, 1, 6, 2, 6, 2, 2, 1, 10, 1, 2, 4, 5, 2, 6, 1, 4, 2, 6, 1, 10, 1, 2, 4, 4, 2, 6, 1, 8, 3, 2, 1, 10, 2, 2
Offset: 1

Views

Author

Wolfdieter Lang, Jan 16 2016

Keywords

Comments

See A032741 for the number of divisors d of n with 1 <= d < n, n >= 1.
See A070824 for the number of the divisors d of n with 1 < d < n, n >= 1.

Crossrefs

Programs

Formula

a(1) = 1; a(n) = 1 if n is prime, otherwise a(n) = A070824(n).
a(1) = 1; a(n) = 1 if n is prime, otherwise a(n) = A032741(n) - 1.
a(n) = max(1, A000005(n)-2). - Robert Israel, Jan 20 2016