OFFSET
1,1
COMMENTS
Conjecture: Any Carmichael number C divisible by 17 and 29 can be written as C = 952*n + 561; checked up to the Carmichael number 105823343809.
Note: the number 561 is the first Carmichael number and the number 952 comes from the following interesting relation: 952^2 = 1105^2 - 561^2 (where 1105 is the second Carmichael number).
The conjecture follows from Korselt's criterion. More is true: a(n) = 2465 mod 55216. - Charles R Greathouse IV, Oct 02 2012
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 1..10000
E. W. Weisstein, Carmichael Number
PROG
(PARI) Korselt(n)=my(f=factor(n)); for(i=1, #f[, 1], if(f[i, 2]>1||(n-1)%(f[i, 1]-1), return(0))); 1
list(lim)=my(v=List()); forstep(n=2465, lim, 55216, if(Korselt(n), listput(v, n))); Vec(v) \\ Charles R Greathouse IV, Jun 30 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
Marius Coman, Apr 27 2012
EXTENSIONS
Terms corrected by Charles R Greathouse IV, Oct 02 2012
STATUS
approved