OFFSET
1,2
COMMENTS
Main entry for this sequence is A033502.
n is a Carmichael number generator giving C(n) = (6n+1)(12n+1)(18n+1).
REFERENCES
Ivan Niven, Herbert S. Zuckerman and Hugh L. Montgomery, An Introduction to the Theory Of Numbers, Fifth Edition, Wiley NY 1991, page 83, problem #20.
R. K. Guy, Unsolved Problems in Number Theory, A13.
LINKS
Donovan Johnson, Table of n, a(n) for n = 1..10000
Eric Weisstein's World of Mathematics, Carmichael Number.
MATHEMATICA
Select[Range[2000], And@@PrimeQ[{6, 12, 18}#+1]&] (* Harvey P. Dale, May 26 2014 *)
PROG
(PARI) is(n)=isprime(6*n+1) && isprime(12*n+1) && isprime(18*n+1) \\ Charles R Greathouse IV, Jan 04 2022
CROSSREFS
KEYWORD
nonn
AUTHOR
EXTENSIONS
Better description from Robert G. Wilson v, Sep 27 2000
STATUS
approved