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.

A020261 Strong pseudoprimes to base 35.

Original entry on oeis.org

9, 1261, 2701, 2871, 5083, 11041, 13051, 15051, 16441, 16589, 22681, 23959, 31201, 31621, 38081, 39091, 44749, 49601, 49771, 50737, 54223, 74023, 79381, 100081, 113527, 117157, 151061, 151313, 154201, 160147, 169801, 203841, 282133, 304057
Offset: 1

Views

Author

Keywords

Programs

  • Maple
    for n from 2 do
        if isStrongPsp(n,35) then # calls code in A001262 and A007814
            print(n) ;
        end if;
    end do: # R. J. Mathar, Jul 30 2024