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

A065695
Numbers m such that N = (am+1)(bm+1)(cm+1) is a 3-Carmichael number (A087788), where a,b,c = 1,2,53.
9
6120, 11526, 104700, 108516, 115830, 122826, 297726, 298680, 320940, 338430, 339066, 367686, 374046, 387720, 448140, 531456, 534636, 538770, 587106, 618270, 709536, 746106, 762006, 857406, 863766, 897156, 963300, 1115940, 1150920
OFFSET
1,1
LINKS
FORMULA
am+1, bm+1, cm+1 are primes and am|(N-1), bm|(N-1), cm|(N-1).
MATHEMATICA
CarmichaelNbrQ[n_] := ! PrimeQ@ n && Mod[n, CarmichaelLambda@ n] == 1; Select[ Range@ 1000000, PrimeQ[# + 1] && PrimeQ[2# + 1] && PrimeQ[53# + 1] && CarmichaelNbrQ[(# + 1)(2# + 1)(53# + 1)] &] (* Robert G. Wilson v, Aug 23 2012 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Harvey Dubner (harvey(AT)dubner.com), Nov 14 2001
EXTENSIONS
More terms from Robert G. Wilson v, Aug 23 2012
STATUS
approved