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.

A254519 Largest n-digit pseudoprime to base 3.

Original entry on oeis.org

91, 949, 8911, 97567, 997633, 9959413, 99971821, 999271891, 9999326731, 99997244929, 999989423051, 9999899578441, 99999695823301, 999999050050321, 9999997295187859, 99999997019370001
Offset: 2

Views

Author

Felix Fröhlich, Jan 31 2015

Keywords

Crossrefs

Programs

  • PARI
    for(n=2, 20, k=10^n; while(ispseudoprime(k) || Mod(3, k)^(k-1)!=1, k--); print1(k, ", "))