OFFSET
1,1
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..1000
Mauro Fiorentini, Carmichael gemelli (numeri di) (in Italian).
Romeo Meštrović, Generalizations of Carmichael numbers I, arXiv:1305.1867 [math.NT], 2013.
MATHEMATICA
npwcQ[n_] := Length[(p = FactorInteger[n][[;; , 1]])] > 1 && AllTrue[p, Divisible[n - 1, # - 1] &]; (* A087442 *)
seq[nmax_] := Module[{carmichaels = Select[Range[1, nmax, 2], CompositeQ[#] && Divisible[# - 1, CarmichaelLambda[#]] &], s = {}, c1, c2}, Do[c1 = carmichaels[[k]] + 2; c2 = carmichaels[[k + 1]] - 2; While[c1 < c2, If[npwcQ[c1], Break[]]; c1 += 2]; If[c1 == c2, AppendTo[s, carmichaels[[k+1]]]], {k, 1, Length[carmichaels] - 1}]; s]; seq[10^6]
CROSSREFS
KEYWORD
nonn
AUTHOR
Amiram Eldar, Aug 17 2023
STATUS
approved