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.

A090084 Even pseudoprimes to base 11.

Original entry on oeis.org

10, 70, 190, 1330, 8170, 9730, 24130, 28462, 58030, 98458, 143830, 144886, 327370, 856786, 1580230, 1620130, 3536470, 5274970, 6082490, 6376126, 6792710, 8066170, 8610610, 14076910, 17728930, 27275158, 42447406, 52970386, 53497978, 68925130
Offset: 1

Views

Author

Labos Elemer, Nov 25 2003

Keywords

Crossrefs

Programs

  • Mathematica
    Do[ f=PowerMod[ 11, 2n-1, 2n ]; If[ f==1, Print[ 2n ] ],{n,2,800000} ] (* Alexander Adamchuk, May 26 2007 *)
    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 *)
    Select[Range[4,68926000,2],PowerMod[11,#-1,#]==1&] (* Harvey P. Dale, Oct 16 2021 *)
  • PARI
    is(k) = k > 2 && !(k % 2) &&  Mod(11, k)^(k-1) == 1; \\ Amiram Eldar, Sep 18 2024

Extensions

More terms from Alexander Adamchuk, May 26 2007
Further terms from Robert G. Wilson v, Jun 01 2007