The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A091439 Least k such that k/phi(k) >= n, where phi is Euler's totient function. 6
1, 2, 6, 210, 30030, 223092870, 13082761331670030, 3217644767340672907899084554130, 1492182350939279320058875736615841068547583863326864530410 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
These are all primorial numbers (A002110).
It appears that the primorial index of a(n) is A256968(n-1) for n>=1. - Michel Marcus, Oct 07 2019
LINKS
Eric Weisstein's World of Mathematics, Totient Function
MATHEMATICA
Table[prod=1; i=0; While[prod<n, i++; prod=prod/(1-1/Prime[i])]; Times@@Prime[Range[i]], {n, 1, 9}]
PROG
(PARI) a(n) = my(p=1, i=0); while(p<n, i++; p = p/(1-1/prime(i))); prod(k=1, i, prime(k)); \\ Michel Marcus, Oct 07 2019
CROSSREFS
Cf. A002110, A091456 (n * phi(k) < k).
Sequence in context: A302344 A156517 A333944 * A285102 A285101 A361086
KEYWORD
easy,nonn
AUTHOR
T. D. Noe, Jan 09 2004
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 19 09:42 EDT 2024. Contains 372683 sequences. (Running on oeis4.)