A258801 Carmichael numbers divisible by 3.
561, 62745, 656601, 11921001, 26719701, 45318561, 174352641, 230996949, 662086041, 684106401, 689880801, 1534274841, 1848112761, 2176838049, 3022354401, 5860426881, 6025532241, 6097778961, 7281824001, 7397902401, 10031651841, 10054063041, 10585115841
Offset: 1
Keywords
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000 (calculated using data from Claude Goutier; terms 1..426, below 10^16, based on Richard Pinch data, from Giovanni Resta)
- Claude Goutier, Compressed text file carm10e22.gz containing all the Carmichael numbers up to 10^22.
- Richard G. E. Pinch, Tables relating to Carmichael numbers.
- Index entries for sequences related to Carmichael numbers.
Crossrefs
Programs
-
Maple
select(t -> t mod numtheory:-lambda(t) = 1, [seq(6*k+3,k=1..10^6)]); # Robert Israel, Jul 12 2015
-
Mathematica
Cases[Range[555,10^6,6],n_/;Mod[n,CarmichaelLambda[n]]==1]
-
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 is(n)=n%6==3 && Korselt(n) && n>9 \\ Charles R Greathouse IV, Jul 20 2015
Comments