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

A064238
Values of m such that N = (am+1)(bm+1)(cm+1) is a 3-Carmichael number (A087788), where a,b,c = 1,2,3.
14
6, 36, 210, 270, 306, 330, 336, 600, 726, 1170, 1236, 1296, 1530, 1656, 2220, 2280, 2556, 3036, 3060, 3066, 4260, 4446, 4800, 4950, 5226, 5580, 5850, 6150, 6360, 6690, 6840, 6966, 7620, 7680, 7686, 7866, 8016, 8166, 8190, 8286, 8520, 8526, 8646, 8940, 9090
OFFSET
1,1
COMMENTS
am+1, bm+1, cm+1 are primes and am | (N-1), bm | (N-1), cm |(N-1).
All m's are multiples of 6 and m, 2m and 3m divide m(2m+1)(3m+1)-1 automatically.
REFERENCES
Harvey Dubner (harvey(AT)dubner.com), personal communication, Jun 27 2001.
LINKS
FORMULA
a(n) = 6 * A046025(n).
MAPLE
q:= n-> andmap(isprime, [6*j*n+1$j=1..3]):
map(x-> 6*x, select(q, [$1..2000]))[]; # Alois P. Heinz, Jun 25 2023
MATHEMATICA
CarmichaelNbrQ[n_] := ! PrimeQ@ n && Mod[n, CarmichaelLambda[n]] == 1; Select[ Range@ 9000, PrimeQ[# + 1] && PrimeQ[2# + 1] && PrimeQ[3# + 1] && CarmichaelNbrQ[(# + 1)(2 # + 1)(3 # + 1)] &] (* Robert G. Wilson v, Aug 23 2012 *)
CROSSREFS
Sequence in context: A377197 A006812 A111989 * A354229 A354231 A014336
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Sep 23 2001
EXTENSIONS
Offset corrected by Amiram Eldar, Oct 16 2019
STATUS
approved