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!)
A071387 Smallest number k for which the set of solutions to phi(x) = k has 2n-1 entries. 3
0, 2, 8, 32, 40, 48, 396, 704, 72, 216, 144, 1056, 360, 384, 1320, 240, 9000, 7128, 480, 1296, 15936, 3072, 864, 7344, 720, 4992, 2016, 6000, 4752, 3024, 9984, 1920, 7560, 22848, 29160, 3360, 13248, 27720, 9072, 9360, 4032, 4800, 16896, 3840, 9504, 23520, 5040 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
Max Alekseyev, PARI/GP Scripts for Miscellaneous Math Problems (see invphi.gp there).
FORMULA
a(n) = Min({x; Card(InvPhi(x)) = 2n-1}); a(1)=0 because of Carmichael conjecture.
EXAMPLE
For n = 7: 2n-1 = 13, a(7) = Min(InvPhi(13)) = Min({396,400,420,552,560,660}) = 396.
PROG
(PARI) a(n) = {if (n==1, return (0)); my(k=1); while(#invphi(k) != 2*n-1, k++); k; } \\ Michel Marcus, May 13 2020
CROSSREFS
Sequence in context: A279692 A332444 A323145 * A330782 A200063 A238984
KEYWORD
nonn
AUTHOR
Labos Elemer, May 23 2002
EXTENSIONS
a(12)-a(47) from Donovan Johnson, Jul 27 2011
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 April 25 10:22 EDT 2024. Contains 371967 sequences. (Running on oeis4.)