cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A130436 Even pseudoprimes to base 17.

This page as a plain text file.
%I A130436 #28 Feb 16 2025 08:33:06
%S A130436 4,8,16,1228,4912,5662,11476,76798,168904,387676,938792,1003276,
%T A130436 1147576,1415044,1419856,1832836,2297296,3976624,5470126,6376126,
%U A130436 7309576,9649624,12423676,13193776,14026888,14652496,19136272,20570936,24604696
%N A130436 Even pseudoprimes to base 17.
%H A130436 Amiram Eldar, <a href="/A130436/b130436.txt">Table of n, a(n) for n = 1..400</a> (terms 1..119 from Robert G. Wilson v)
%H A130436 Eric Weisstein's World of Mathematics, <a href="https://mathworld.wolfram.com/FermatPseudoprime.html">Fermat Pseudoprime</a>.
%H A130436 <a href="/index/Ps#pseudoprimes">Index entries for sequences related to pseudoprimes</a>.
%t A130436 lst = {}; Do[ If[ PowerMod[17, 2n - 1, 2n] == 1, AppendTo[lst, 2n]], {n, 2, 2*10^9}]; lst (* _Robert G. Wilson v_, Jun 01 2007 *)
%o A130436 (PARI) is(k) = k > 2 && !(k % 2) &&  Mod(17, k)^(k-1) == 1; \\ _Amiram Eldar_, Sep 18 2024
%Y A130436 Cf. A020145, A006935, A130433, A090082, A090083, A090084, A090085, A130434, A130435, A130437, A130438, A130439, A130440, A130441, A130442, A130443.
%K A130436 nonn
%O A130436 1,1
%A A130436 _Alexander Adamchuk_, May 26 2007
%E A130436 a(13)-a(29) from _Robert G. Wilson v_, Jun 01 2007