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!)
A281947 Smallest prime p such that p^i - 1 is a totient (A002202) for all i = 1 to n, or 0 if no such p exists. 0
2, 3, 7, 7, 37, 37, 113, 113, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 2113, 2113, 2113, 2113, 2113, 2113, 3121, 3121, 3121, 3121 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
p - 1 = phi(p) is a totient for all primes p.
If A281909(n) is prime, then a(n) = A281909(n).
LINKS
EXAMPLE
a(3) = 7 because 7^2 - 1 = 48, 7^3 - 1 = 342 are both totient numbers (A002202) and 7 is the least prime number with this property.
PROG
(PARI) isok(p, n)=for (i=1, n, if (! istotient(p^i-1), return(0)); ); 1;
a(n) = {my(p=2); while (! isok(p, n), p = nextprime(p+1)); p; } \\ Michel Marcus, Feb 04 2017
CROSSREFS
Sequence in context: A083809 A092967 A056431 * A199466 A199966 A011027
KEYWORD
nonn,more
AUTHOR
Altug Alkan, Feb 03 2017
EXTENSIONS
a(19) from Michel Marcus, Feb 04 2017
a(20)-a(28) from Ray Chandler, Feb 08 2017
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 19 03:30 EDT 2024. Contains 371782 sequences. (Running on oeis4.)