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!)
A318646 The least Chernick's "universal form" Carmichael number with n prime factors. 4

%I #30 Jul 08 2019 01:56:54

%S 1729,63973,26641259752490421121,1457836374916028334162241,

%T 24541683183872873851606952966798288052977151461406721,

%U 53487697914261966820654105730041031613370337776541835775672321,58571442634534443082821160508299574798027946748324125518533225605795841

%N The least Chernick's "universal form" Carmichael number with n prime factors.

%C Chernick proved that U(k, m) = (6m + 1)*(12m + 1)*Product_{i = 1..k-2} (9*(2^i)m + 1), for k >= 3 and m >= 1 is a Carmichael number, if all the factors are primes and, for k >= 4, 2^(k-4) divides m. He called U(k, m) "universal forms". This sequence gives a(k) = U(k, m) with the least value of m. The least values of m for k = 3, 4, ... are 1, 1, 380, 380, 780320, 950560, 950560, 3208386195840, 31023586121600, ...

%H Amiram Eldar, <a href="/A318646/b318646.txt">Table of n, a(n) for n = 3..11</a>

%H Jack Chernick, <a href="https://doi.org/10.1090/S0002-9904-1939-06953-X">On Fermat's simple theorem</a>, Bulletin of the American Mathematical Society, Vol. 45, No. 4 (1939), pp. 269-274.

%H Daniel Suteu, <a href="/A318646/a318646.cpp.txt">C++ program</a>

%H Samuel S. Wagstaff, Jr., <a href="http://www.math.okayama-u.ac.jp/mjou/mjou1-46/mjou_pdf/mjou_22/mjou_22_033.pdf">Large Carmichael numbers</a>, Mathematical Journal of Okayama University, Vol. 22, (1980), pp. 33-41.

%e For k=3, m = 1, a(3) = U(3, 1) = (6*1 + 1)*(12*1 + 1)*(18*1 + 1) = 1729.

%e For k=4, m = 1, a(4) = U(4, 1) = (6*1 + 1)*(12*1 + 1)*(18*1 + 1)*(36*1 + 1) = 63973.

%e For k=5, m = 380, a(5) = U(5, 1) = (6*380 + 1)*(12*380 + 1)*(18*380 + 1)*(36*380 + 1)*(72*380 + 1) = 26641259752490421121.

%t fc[k_] := If[k < 4, 1, 2^(k - 4)]; a={};Do[v = Join[{6, 12}, 2^Range[k-2]*9];

%t w = fc[k]; x = v*w; m = 1; While[! AllTrue[x*m + 1, PrimeQ], m++]; c=Times @@ (x*m + 1);AppendTo[a,c], {k, 3, 9}]; a

%Y Cf. A002997, A033502 (3 prime factors), A206024 (4 prime factors), A206349 (5 prime factors), A126797.

%K nonn

%O 3,1

%A _Amiram Eldar_, Aug 31 2018

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 08:27 EDT 2024. Contains 371964 sequences. (Running on oeis4.)