login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A064254
Values of n such that N=(an+1)(bn+1)(cn+1) is a 3-Carmichael number (A087788), where a,b,c = 1,2,35.
1
576, 1626, 2466, 4356, 4566, 7296, 11496, 15276, 16746, 18636, 20106, 20946, 24096, 28926, 38376, 44256, 57486, 74286, 78696, 95916, 98226, 99906, 100746, 101376, 122166, 127206, 128046, 128676, 136656, 141906, 149256, 152406, 153456, 158076, 172146, 179496, 180546
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
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
Cf. A087788.
Sequence in context: A250789 A137484 A189990 * A281242 A067225 A325475
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Sep 23 2001
EXTENSIONS
More terms from Amiram Eldar, Oct 17 2019
STATUS
approved