OFFSET
1,1
COMMENTS
a(933) <= 266336887317945807999. - Daniel Suteu, Dec 01 2023
LINKS
Daniel Suteu, Table of n, a(n) for n = 1..932 (first 95 terms from Tim Johannes Ohrtmann, terms 96..154 from Robert G. Wilson v)
EXAMPLE
a(12) = 8855 because this is the least Lucas-Carmichael number which is divisible by A255602(12) = 35.
MATHEMATICA
LucasCarmichaelQ[n_] := Block[{fi = FactorInteger@ n}, ! PrimeQ@ n && Times @@ (Last@# & /@ fi) == 1 && Plus @@ Mod[n + 1, 1 + First@# & /@ fi] == 0]; LucasCarmichaelQ[1] = False; fQ[n_] := Block[{fi = FactorInteger@ n}, ffi = First@# & /@ fi; Times @@ (Last@# & /@ fi) == 1 && Min@ Flatten@ Table[Mod[1 + ffi, i], {i, ffi}] > 0]; fQ[1] = True; fQ[2] = False; lcdv = Select[ Range@ 3204, fQ]; f[n_] := Block[{k = lcdv[[n]]}, d = 2k; While[ !LucasCarmichaelQ@ k, k += d]; k]; Array[f, 95] (* Robert G. Wilson v, Feb 11 2015 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Tim Johannes Ohrtmann, Jan 05 2015
EXTENSIONS
a(96) from Charles R Greathouse IV, Feb 12 2015
STATUS
approved