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.

A243089 Pseudoprimes to base 7 that are not squarefree.

Original entry on oeis.org

25, 325, 1825, 4525, 4825, 10225, 12025, 16725, 20425, 30025, 35425, 58825, 177025, 216525, 265525, 352225, 526825, 611425, 675925, 710425, 717025, 746425, 772525, 784225, 834025, 877825, 1125825, 1126225, 1439425, 1491025, 1579225, 1935025, 1973425, 2176525
Offset: 1

Views

Author

Felix Fröhlich, Aug 18 2014

Keywords

Comments

Any term is divisible by the square of a base 7 Wieferich prime (A123693).
Intersection of A005938 and A013929. - Michel Marcus, Aug 21 2014

Crossrefs

Programs

  • PARI
    forcomposite(n=1, 1e9, if(Mod(7, n)^(n-1)==1, if(!issquarefree(n), print1(n, ", "))))