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.

A005580 a(n) = smallest number k such that Product_{i=2..k+1} prime(i)/(prime(i)-1) > n.

Original entry on oeis.org

0, 1, 3, 8, 21, 54, 141, 372, 995, 2697, 7397, 20502, 57347, 161658, 458788, 1309626, 3757383, 10828011, 31326513, 90945528
Offset: 0

Views

Author

Keywords

Comments

Laatsch (1986) proved that a(n) gives the smallest number of distinct prime factors in odd numbers having an abundancy index > n.
The abundancy index of a number k is sigma(k)/k. - T. D. Noe, May 08 2006

References

  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

Crossrefs

Cf. A005579.

Programs

  • Mathematica
    prod=1; k=1; Table[While[prod<=n, k++; prod=prod*Prime[k]/(Prime[k]-1)]; k-1, {n,0,12}] (* T. D. Noe, May 08 2006 *)

Formula

For n > 0, a(n) = A005579(2n)-1. - T. D. Noe, May 08 2006

Extensions

Edited by T. D. Noe, May 08 2006
a(14)-a(19) from the data at A005579 added by Amiram Eldar, Mar 21 2019
Edited and a(0)-a(1) prepended by Max Alekseyev, Jan 25 2025