OFFSET
1,1
COMMENTS
There are 9967 Lucas-Carmichael numbers less than 10^12, and all but 332 are congruent to 11 (mod 12).
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..2067 (terms below 10^15, calculated from Daniel Suteu's file at A006972; terms 1..333 from Robert G. Wilson v)
EXAMPLE
5719 = 7*19*43 = 7 mod 12.
MAPLE
with(numtheory); LC:=[]: for z from 1 to 1 do for m from 1 to 2000000 do n:=2*m+1; if not(isprime(n)) and issqrfree(n) then PF:=factorset(n); lcb:=true; for x in PF do if (n+1) mod (x+1) > 0 then lcb:=false fi od; if lcb then LC:=[op(LC), n]; fi; fi; #not od; #m od; #z select(proc(z) not(z mod 12 = 11) end, LC);
CROSSREFS
KEYWORD
nonn
AUTHOR
Walter Kehowski, Sep 19 2005
EXTENSIONS
a(10) onward from Robert G. Wilson v, Feb 12 2015
STATUS
approved
