|
| |
|
|
A110885
|
|
Lucas-Carmichael numbers n that are not == 11 mod 12. There are 101 Lucas-Carmichael numbers out to 2*m+1, m=2*10^6 and all but the above 9 are 11 mod 12.
|
|
0
| | |
|
|
|
OFFSET
| 1,1
|
|
|
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
| Cf. A006972.
Sequence in context: A206536 A065767 A166915 * A140892 A115470 A061042
Adjacent sequences: A110882 A110883 A110884 * A110886 A110887 A110888
|
|
|
KEYWORD
| nonn
|
|
|
AUTHOR
| Walter A. Kehowski (wkehowski(AT)cox.net), Sep 19 2005
|
| |
|
|