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”).

A064248
Numbers m such that N=(am+1)(bm+1)(cm+1) is a 3-Carmichael number (A087788), where a,b,c = 1,2,23.
1
6036, 13626, 43710, 46470, 46746, 51990, 52956, 55440, 58476, 60960, 77796, 82350, 86076, 95460, 99876, 114780, 121266, 168600, 176190, 195510, 201996, 208206, 255126, 258990, 261336, 268926, 270030, 270306
OFFSET
1,1
COMMENTS
am+1, bm+1, cm+1 are primes and am | (N-1), bm | (N-1), cm |(N-1).
REFERENCES
Harvey Dubner (harvey(AT)dubner.com), personal communication, Jun 27 2001.
LINKS
MATHEMATICA
CarmichaelNbrQ[n_] := ! PrimeQ@ n && Mod[n, CarmichaelLambda@ n] == 1; Select[ Range@ 280000, PrimeQ[# + 1] && PrimeQ[2# + 1] && PrimeQ[23# + 1] && CarmichaelNbrQ[(# + 1)(2# + 1)(23# + 1)] &] (* Robert G. Wilson v, Aug 23 2012 *)
CROSSREFS
Cf. A087788.
Sequence in context: A237864 A031821 A203352 * A202895 A157652 A264949
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Sep 23 2001
STATUS
approved