A064247 Values of m such that N=(am+1)(bm+1)(cm+1) is a 3-Carmichael number (A087788), where a,b,c = 1,2,21.
30, 198, 366, 576, 618, 828, 1626, 2466, 2550, 3390, 4860, 4986, 5658, 6036, 6120, 6708, 6960, 7506, 12966, 13218, 13680, 15318, 16746, 18048, 18678, 19476, 20946, 21030, 21786, 22668, 23130, 23676, 23760, 25608, 26406, 26700
Offset: 1
Keywords
References
- Harvey Dubner (harvey(AT)dubner.com), personal communication, Jun 27 2001.
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
Crossrefs
Cf. A087788.
Programs
-
Mathematica
CarmichaelNbrQ[n_] := ! PrimeQ@ n && Mod[n, CarmichaelLambda@ n] == 1; Select[ Range@ 30000, PrimeQ[# + 1] && PrimeQ[2# + 1] && PrimeQ[21# + 1] && CarmichaelNbrQ[(# + 1)(2# + 1)(21# + 1)] &] (* Robert G. Wilson v, Aug 23 2012 *)
Extensions
Offset corrected by Amiram Eldar, Oct 16 2019
Comments