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!)
A212920 Carmichael numbers divisible by 1729. 2

%I #39 Mar 28 2021 07:03:51

%S 1729,63973,126217,188461,748657,997633,101957401,509033161,705101761,

%T 1150270849,1854001513,2833846561,6218177329,7103660473,8039934721,

%U 9164559313,9439491061,10298458261,14530739041,17121334321,18649300033,23597511301,26602340401,41420147041

%N Carmichael numbers divisible by 1729.

%C Conjecture 1: If m*126 + n = 1729, m*126 > n, then there exists a series with infinitely many Carmichael terms of the form C mod m*234 = n.

%C (1) For m < 7, we have m*126 < n;

%C (2) For m = 7, the formula becomes C mod 882 = 847, which includes the Carmichael numbers 1729, 15841, 1033669, etc.;

%C (3) For m = 8, the formula becomes C mod 1008 = 721, which includes the Carmichael numbers 1729, 15841, 41041, 172081, 670033, 748657, 825265, 997633, etc.;

%C (4) For m = 9, the formula becomes C mod 1134 = 595, which includes the Carmichael numbers 1729, 1033669, etc.;

%C (5) For m = 10, the formula becomes C mod 1260 = 469, which includes the Carmichael numbers 1729, 1033669, etc.;

%C (6) For m = 11, the formula becomes C mod 1386 = 343, which includes the Carmichael numbers 1729, 1082809, etc.;

%C (7) For m = 12, the formula becomes C mod 1512 = 217, which includes the Carmichael numbers 1729, 41041, etc.;

%C (8) For m = 13, the formula becomes C mod 1638 = 91, which includes the Carmichael numbers 1729, 41041, 63973, 670033, 997633, etc.

%C Conjecture 2: If m*234 + n = 1729, m*234 > n, then there exists a series with infinite many Carmichael terms of the form C mod m*234 = n.

%C (1) For m < 4, we have m*234 < n;

%C (2) For m = 4, the formula becomes C mod 936 = 793, which includes the Carmichael numbers 1729, 41041, 46657, 126217, 748657, 4909177, 65037817, 193910977, 311388337, 633639097, etc.;

%C (3) For m = 5, the formula becomes C mod 1170 = 559, which includes the Carmichael numbers 1729, 1033669, 1082809, 7995169, 26921089, etc.;

%C (4) For m = 6, the formula becomes C mod 1404 = 325, which includes the Carmichael numbers 1729, 41041, 46657, 188461, 314821, etc.;

%C (5) For m = 7, the formula becomes C mod 1638 = 91, and the case is similar to one from conjecture 1.

%C Conjecture 3: If m*342 + n = 1729, m*342 > n, then there exists a series with infinitely many Carmichael terms of the form C mod m*342 = n.

%C (1) For m < 2, we have m*342 < n;

%C (2) For m = 3, the formula becomes C mod 1026 = 703, which includes the Carmichael numbers 1729, 8911, etc.;

%C (3) For m = 4, the formula becomes C mod 1368 = 361, which includes the Carmichael numbers: 1729, 126217, etc.;

%C (4) For m = 5, the formula becomes C mod 1710 = 19, which includes the Carmichael numbers 1729, 1773289, etc.

%C Conclusion: we can see that 126 = 18*7, 234 = 18*13, and 342 = 18*19, and that 7, 13, and 19 are the prime factors of 1729, so the three conjectures could be expressed all in one. Even more than that, taking randomly another Carmichael number, 8911 = 7*19*67, taking randomly m = 7 in the formula m*18*67, we obtain the formula C mod 8442 = 469, which, indeed, leads to a series of Carmichael numbers: 8911, 1773289, 8830801, etc., which means that the conjecture could be generalized:

%C Conjecture 4: For any prime factor d of a Carmichael number C1, there exists a series with infinitely many Carmichael terms C2 that satisfy C2 mod (m*18*d) = n, where m*18*d + n = C1, and m and n are natural numbers such that m*18*d < n.

%C Finally, if we have a Carmichael number divisible by 1729 (e.g., 63973; see the sequence above), we can see that the formula C mod 62244 = 1729 (it can be seen that 62244 + 1729 = 63973) also leads to a series of Carmichael numbers: 126217, etc.; this means that 1729 can be treated like a prime factor. This can probably be generalized to the Carmichael numbers that are divisible by other Carmichael numbers or probably even for a randomly chosen product of prime factors.

%H Amiram Eldar, <a href="/A212920/b212920.txt">Table of n, a(n) for n = 1..10000</a>

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/CarmichaelNumber.html">Carmichael Number</a>.

%t CarmichaelNbrQ[n_] := ! PrimeQ@ n && Mod[n, CarmichaelLambda@ n] == 1;

%t Select[1729 Range@ 40000000, CarmichaelNbrQ@# &] (* _Robert G. Wilson v_, Aug 23 2012 *)

%o (PARI) Korselt(n)=my(f=factor(n)); for(i=1, #f[, 1], if(f[i, 2]>1||(n-1)%(f[i, 1]-1), return(0))); 1

%o forstep(n=1729,1e12,62244,if(Korselt(n), print1(n", "))) \\ _Charles R Greathouse IV_, Dec 08 2014

%Y Cf. A002997, A001235, A207041.

%K nonn

%O 1,1

%A _Marius Coman_, May 31 2012

%E Edited by _Jon E. Schoenfield_, Dec 12 2013

%E 5 missing terms inserted by _Amiram Eldar_, Mar 28 2021

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 16 19:48 EDT 2024. Contains 371754 sequences. (Running on oeis4.)