Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).
%I #13 Aug 03 2014 14:01:10
%S 4,6,8,12,24,28,39,66,91,124,217,232,276,403,426,451,532,561,616,703,
%T 781,804,868,946,1128,1288,1541,1729,1891,2047,2701,2806,2821,2911,
%U 2926,3052,3126,3367,3592,3976,4069,4123,4207,4564,4636,4686,5321,5461,5551,5611
%N Pseudoprimes to base 25.
%C Composite numbers n such that 25^(n-1) == 1 (mod n).
%H T. D. Noe, <a href="/A020153/b020153.txt">Table of n, a(n) for n = 1..1000</a>
%H <a href="/index/Ps#pseudoprimes">Index entries for sequences related to pseudoprimes</a>
%t base = 25; 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_