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!)
A207080 The smallest Carmichael number k such that phi(k) does not divide (k-1)^n, where phi is the Euler totient function. 2
561, 2821, 838201, 41471521, 45496270561, 776388344641, 344361421401361, 375097930710820681, 330019822807208371201, 4971170854788923506051 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Conjecture: phi(a(n)) divides (a(n)-1)^(n+1).
a(10) <= 9645020063586019926451. - Daniel Suteu, Dec 25 2020
LINKS
José María Grau and Antonio M. Oller-Marcén, On k-Lehmer numbers, Integers, 12 (2012), #A37; alternative link; arXiv preprint, arXiv:1012.2337 [math.NT], 2010-2012.
Nathan McNew, Radically weakening the Lehmer and Carmichael conditions, International Journal of Number Theory, Vol. 9, No. 5 (2013), pp. 1215-1224; arXiv preprint, arXiv:1210.2001 [math.NT], 2012.
PROG
(PARI) is_c(n) = { my(f); bittest(n, 0) && !for(i=1, #f=factor(n)~, (f[2, i]==1 && n%(f[1, i]-1)==1)||return) && #f>1; }
isok(k, n) = ((k-1)^n % eulerphi(k)) != 0;
a(n) = my(k=1); while (!(is_c(k) && isok(k, n)), k++); k; \\ Michel Marcus, Dec 25 2020
CROSSREFS
Cf. A000010, A002997 (Carmichael numbers), A173703.
Sequence in context: A293622 A322130 A354609 * A339875 A290945 A063400
KEYWORD
nonn,more,changed
AUTHOR
EXTENSIONS
a(7)-a(9) from Richard Pinch, Feb 18 2012
a(10) calculated using data from Claude Goutier and added by Amiram Eldar, Apr 20 2024
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 03:15 EDT 2024. Contains 371964 sequences. (Running on oeis4.)