login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 


Pseudoprimes to base 13.
3

%I #22 Aug 22 2017 09:37:00

%S 4,6,12,21,85,105,231,244,276,357,427,561,1099,1785,1891,2465,2806,

%T 3605,5028,5149,5185,5565,6601,7107,8841,8911,9577,9637,10308,10585,

%U 11305,12403,12621,13019,13345,13461,13685,14491,14981,15051,15505,15841,17803

%N Pseudoprimes to base 13.

%C According to _Karsten Meyer_, May 16 2006, 4, 6 and 12 should be excluded, following the strict definition in Crandall and Pomerance.

%C Composite numbers n such that 13^(n-1) == 1 (mod n).

%D R. Crandall and C. Pomerance, "Prime Numbers - A Computational Perspective", Second Edition, Springer Verlag 2005, ISBN 0-387-25282-7 Page 132 (Theorem 3.4.2. and Algorithm 3.4.3)

%H R. J. Mathar and T. D. Noe, <a href="/A020141/b020141.txt">Table of n, a(n) for n = 1..1000</a> (R. J. Mathar to 788 terms)

%H <a href="/index/Ps#pseudoprimes">Index entries for sequences related to pseudoprimes</a>

%H F. Richman, <a href="http://math.fau.edu/Richman/carm.htm">Primality testing with Fermat's little theorem</a>

%t base = 13; t = {}; n = 1; While[Length[t] < 100, n++; If[! PrimeQ[n] && PowerMod[base, n-1, n] == 1, AppendTo[t, n]]]; t (* _T. D. Noe_, Feb 21 2012 *)

%Y Cf. A001567 (pseudoprimes to base 2).

%K nonn

%O 1,1

%A _David W. Wilson_

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified September 24 14:15 EDT 2024. Contains 376200 sequences. (Running on oeis4.)