A101188 Values of k for which (7*k+1)*(8*k+1)*(11*k+1) is a Carmichael number.
18, 216, 24966, 228246, 299790, 403806, 413046, 446310, 514686, 760470, 948966, 1019190, 1087566, 1355526, 1374006, 1471950, 1582830, 1715886, 2159406, 2266590, 2334966, 2589990, 2833926, 3652590, 3661830, 3720966, 3874350
Offset: 1
Keywords
Examples
a(1) = 18 corresponds to a 4-factor Carmichael number: 3664585 = 127 *(5*29) * 199.
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
- Gérard P. Michon, Generic Carmichael Numbers.
Programs
-
Mathematica
CarmichaelNbrQ[n_] := ! PrimeQ[n] && Mod[n, CarmichaelLambda[n]] == 1; Select[ Range[4000000], CarmichaelNbrQ[(7# + 1)(8# + 1)(11# + 1)] &] (* Robert G. Wilson v, Aug 24 2012 *)
Comments