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.
%I A090084 #33 Feb 16 2025 08:32:51 %S A090084 10,70,190,1330,8170,9730,24130,28462,58030,98458,143830,144886, %T A090084 327370,856786,1580230,1620130,3536470,5274970,6082490,6376126, %U A090084 6792710,8066170,8610610,14076910,17728930,27275158,42447406,52970386,53497978,68925130 %N A090084 Even pseudoprimes to base 11. %H A090084 Amiram Eldar, <a href="/A090084/b090084.txt">Table of n, a(n) for n = 1..165</a> (terms below 10^11; terms 1..84 from Robert G. Wilson v) %H A090084 Eric Weisstein's World of Mathematics, <a href="https://mathworld.wolfram.com/FermatPseudoprime.html">Fermat Pseudoprime</a>. %H A090084 <a href="/index/Ps#pseudoprimes">Index entries for sequences related to pseudoprimes</a>. %t A090084 Do[ f=PowerMod[ 11, 2n-1, 2n ]; If[ f==1, Print[ 2n ] ],{n,2,800000} ] (* _Alexander Adamchuk_, May 26 2007 *) %t A090084 lst = {}; Do[ If[ PowerMod[11, 2n - 1, 2n] == 1, AppendTo[lst, 2n]], {n, 2, 2*10^9}]; lst (* _Robert G. Wilson v_, Jun 01 2007 *) %t A090084 Select[Range[4,68926000,2],PowerMod[11,#-1,#]==1&] (* _Harvey P. Dale_, Oct 16 2021 *) %o A090084 (PARI) is(k) = k > 2 && !(k % 2) && Mod(11, k)^(k-1) == 1; \\ _Amiram Eldar_, Sep 18 2024 %Y A090084 Cf. A020139. %Y A090084 Cf. A006935, A130433, A090082, A090083, A090085, A130434, A130435, A130436, A130438, A130439, A130440, A130441, A130442, A130443. %K A090084 nonn %O A090084 1,1 %A A090084 _Labos Elemer_, Nov 25 2003 %E A090084 More terms from _Alexander Adamchuk_, May 26 2007 %E A090084 Further terms from _Robert G. Wilson v_, Jun 01 2007