OFFSET
1,1
COMMENTS
an+1, bn+1, cn+1 are primes and an | (N-1), bn | (N-1), cn |(N-1).
REFERENCES
Harvey Dubner (harvey(AT)dubner.com), personal communication, Jun 27 2001.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
MATHEMATICA
carmQ[n_] := CompositeQ[n] && Divisible[n - 1, CarmichaelLambda[n]]; Select[Range[10^5], AllTrue[(v = {1, 2, 35}*# + 1), PrimeQ] && carmQ[Times @@ v] &] (* Amiram Eldar, Oct 17 2019 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Sep 23 2001
EXTENSIONS
More terms from Amiram Eldar, Oct 17 2019
STATUS
approved