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!)
A343979 Composite numbers m such that lambda(m) = lambda(D_{m-1}), where lambda(n) is the Carmichael function of n (A002322) and D_k is the denominator (A027642) of Bernoulli number B_k. 1
5615659951, 36901698733, 55723044637, 776733036121, 2752403727511, 7725145165297, 14475486778537, 15723055492417, 22824071195485, 29325910221631, 54669159894469, 62086332981241, 125685944708905, 180225455689481, 298620660945331, 335333122310629, 426814989321721 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Squarefree composites m such that LCM_{prime p|m} (p-1) = LCM_{prime p, p-1|m-1} (p-1).
Carmichael numbers m such that LCM_{prime p|m} (p-1) = LCM_{prime p, p-1|m-1} (p-1), i.e., with A173614(m) = A346467(m).
Carmichael numbers m such that their index (m-1)/lambda(m) = A346468(m), cf. A174590.
Carl Pomerance noted that, for k = 40826, Chernick's Carmichael number (6k+1)*(12k+1)*(18k+1) = 88189878776579929 satisfies this condition.
Theorem: lambda(m) | lambda(D_{m-1}) if and only if m | D_{m-1}.
Composites m such that lambda(m) | lambda(D_{m-1}) are all Carmichael numbers, defined as composites m such that lambda(m) | m-1, while lambda(D_{m-1}) | m-1 for every m.
Note that if p is prime, then lambda(p) = lambda(D_{p-1}) = p-1.
LINKS
MATHEMATICA
c = Cases[Import["https://oeis.org/A002997/b002997.txt", "Table"], {_, _}][[;; , 2]]; q[d_] := If[PrimeQ[d + 1], d, 1]; Select[c, LCM @@ (FactorInteger[#][[;; , 1]] - 1) == LCM @@ (q /@ Divisors[# - 1]) &]
PROG
(PARI)
A002322(n) = lcm(znstar(n)[2]); \\ From A002322
A173614(n) = lcm(apply(p->p-1, factor(n)[, 1]));
A346467(n) = if(1==n, n, my(m=1); fordiv(n-1, d, if(isprime(1+d), m = lcm(m, d))); (m));
isA343979(n) = ((n>1) && !isprime(n) && (!((n-1)%A002322(n))) && A173614(n)==A346467(n)); \\ Antti Karttunen, Jul 22 2021
CROSSREFS
Sequence in context: A213254 A295458 A058416 * A210013 A322686 A322696
KEYWORD
nonn
AUTHOR
Amiram Eldar and Thomas Ordowski, May 06 2021
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 September 10 00:26 EDT 2024. Contains 375769 sequences. (Running on oeis4.)