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.

Showing 1-2 of 2 results.

A091456 Least number k such that n * phi(k) < k, where phi is Euler's totient function.

Original entry on oeis.org

2, 6, 30, 210, 30030, 223092870, 13082761331670030, 3217644767340672907899084554130, 1492182350939279320058875736615841068547583863326864530410
Offset: 1

Views

Author

Robert G. Wilson v, Jan 10 2004

Keywords

Comments

By Mertens' theorem and the Prime Number Theorem log log a(n) ~ n / e^gamma. - Charles R Greathouse IV, Sep 07 2012

Crossrefs

Subsequence of A002110.
Cf. A000010, A005579, A054741, A073087, A091439 (n * phi(k) <= k).

Programs

  • PARI
    a(n) = {k = 1; while (n*eulerphi(k) >= k, k++); k;} \\ Michel Marcus, Sep 25 2013
    
  • PARI
    a(n)=my(k=1);forprime(p=2,,if(n*eulerphi(k)Charles R Greathouse IV, Sep 25 2013

Formula

a(n) = A002110(A005579(n)). - Amiram Eldar, Nov 30 2024

A164347 The n-th term is the minimum number x such that x/Totient(x) >= n.

Original entry on oeis.org

2, 2, 6, 30, 210, 30030, 223092870, 13082761331670030, 3217644767340672907899084554130
Offset: 1

Views

Author

Fred Schneider, Aug 13 2009

Keywords

Comments

These numbers are all primorials. Primorials necessarily must be the minimum terms in this sequence (given the nature of Euler's Totient function).
Essentially the same as A091456. - R. J. Mathar, Aug 17 2009

Examples

			2 => 2/totient(2) = 2 (so it is both the first and 2nd entry of the sequence).
30 => 30/totient(30) = 15/4 >= 3.
210 => 210/totient(210) = 210/48 >= 4.
		

Crossrefs

Each number n in this sequence is of the form: primorial(x). A164348, the related sequence, contains the x's.
Showing 1-2 of 2 results.