OFFSET
1,1
COMMENTS
Candidate moduli for Rabin cryptosystem using Williams padding to ensure sufficient redundancy that the decryption is unique.
REFERENCES
Steven D. Galbraith, Mathematics of Public Key Cryptography, Cambridge University Press, 2012, page 493.
LINKS
Andrew Howroyd, Table of n, a(n) for n = 1..1000
H. C. Williams, A Modification of the RSA public encryption procedure, IEEE Trans. Inf. Theory 26(6) (1980), 726-729.
MATHEMATICA
With[{upto = 1000},
With[{primes = Prime@Range@PrimePi@NextPrime[upto/3]},
With[{p = Pick[primes, Mod[primes, 8], 3], q = Pick[primes, Mod[primes, 8], 7]},
Select[Union[Flatten@Outer[Times, p, q]], # <= upto &]] ]] (* after Harvey P. Dale at A016105 *)
PROG
(PARI) ok(n)={n%8==5 && bigomega(n)==2 && factor(n)[1, 1] % 4 == 3} \\ Andrew Howroyd, Dec 23 2019
CROSSREFS
KEYWORD
nonn
AUTHOR
Morgan L. Owens, May 03 2016
EXTENSIONS
Terms a(36) and beyond from Andrew Howroyd, Dec 23 2019
STATUS
approved