A252944 Fermat pseudoprimes that are not Carmichael numbers and have only composite XOR couples as defined in A182108.
23377, 31417, 49981, 74665, 220729, 435671, 679729, 769757, 852481, 915981, 1016801, 1023121, 1128121, 1397419, 2008597, 2987167, 3073357, 4014361
Offset: 1
Programs
-
Magma
function IsClardynum(X, i) if i eq 1 then return true; else xornum:=2^i - 2; xorcouple:=BitwiseXor(X, xornum); if (IsPrime(xorcouple)) then return false; else return IsClardynum(X, i-1); end if; end if; end function; for n:= 3 to 1052503 by 2 do if (IsOne(2^(n-1) mod n) and not IsPrime(n) and not n mod CarmichaelLambda(n) eq 1 and IsClardynum(n,Ilog2(n))) then n; end if; end for;
Comments