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.

A271210 Artiads (A001583) congruent to 1 mod 50 and for which 5 is a quintic residue.

Original entry on oeis.org

13451, 15901, 19001, 19801, 21701, 22901, 28001, 38851, 50551, 64301, 65101, 66851, 78101, 89101, 94351, 95701, 96401, 117751, 124001, 126001, 127951, 136601, 138401, 150301, 162251, 164701, 167051, 178301, 178501, 181001, 183301, 185051, 185401, 185951, 186301
Offset: 1

Views

Author

Eric M. Schmidt, Apr 02 2016

Keywords

Comments

Hyperartiads (A270798) congruent to 1 mod 50.

Crossrefs

Programs

  • Sage
    def isa(n) : return n % 50 == 1 and is_prime(n) and 5.powermod((n-1)//5, n) == 1 and fibonacci((n - 1)//5) % n == 0