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!)
A355667 Least number phi(k) such that n * phi(k) < k, where phi is Euler's totient function. 0
1, 2, 8, 48, 5760, 36495360, 1854081073152000, 400440702414394285778534400000, 165062110921422523175104166476600499887194872217600000000 (list; graph; refs; listen; history; text; internal format)
OFFSET

1,2

COMMENTS

a(n) is the Euler totient of A091456(n). Useful for calculating a simple upper bound of the inverse phi function.

LINKS

Table of n, a(n) for n=1..9.

FORMULA

a(n) = A000010(A091456(n)).

a(n) = A000010(A091439(n+1)).

EXAMPLE

If we know n=276, then all numbers k with phi(k)=n will satisfy k < 5*n since m=a(5) is the first number in the sequence with n < m.

MATHEMATICA

a[n_] := Module[{k = 1, p = 1, e}, While[k <= n*(e = EulerPhi[k]), p = NextPrime[p]; k *= p]; e]; Array[a, 9] (* Amiram Eldar, Jul 13 2022 *)

PROG

(PARI) a(n)=my(k=1); forprime(p=2, , if(n*eulerphi(k)<k, return(eulerphi(k)), k*=p)

(CoCoA 5) define a(n) k := 1; p := 1; while k <= n*EulerTotient(k) do p := NextPrime(p); k := k*p; endwhile; return EulerTotient(k); enddefine;

CROSSREFS

Totients of A091456 or A091439.

Sequence in context: A356658 A279239 A279109 * A183070 A032116 A088181

Adjacent sequences: A355664 A355665 A355666 * A355668 A355669 A355670

KEYWORD

nonn

AUTHOR

Nico Mexis, Jul 13 2022

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 March 25 19:21 EDT 2023. Contains 361528 sequences. (Running on oeis4.)