A064253 Values of n such that N=(an+1)(bn+1)(cn+1) is a 3-Carmichael number (A087788), where a,b,c = 1,2,33.
576, 1170, 2556, 6120, 20706, 23676, 29220, 29286, 32586, 39450, 46380, 46446, 50076, 52386, 58920, 63210, 65256, 65850, 69876, 74100, 77796, 93240, 107826, 113370, 114030, 116340, 127296, 128220, 129606, 130530, 140826, 141156, 149340, 170196, 174090, 177126, 178446
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
carmQ[n_] := CompositeQ[n] && Divisible[n - 1, CarmichaelLambda[n]]; Select[Range[10^5], AllTrue[(v = {1, 2, 33}*# + 1), PrimeQ] && carmQ[Times @@ v] &] (* Amiram Eldar, Oct 17 2019 *)
Extensions
More terms from Amiram Eldar, Oct 17 2019
Comments