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.

A271264 Septic artiads (A270800) congruent to 1 mod 98 and for which 7 is a 7th power residue.

Original entry on oeis.org

876611, 1163653, 1471079, 1608769, 2367289, 2368759, 2538103, 2564857, 2621501, 2693629, 2774381, 3120713, 3495269, 3498797, 3636781, 3974881, 4240853, 4376681, 4571309, 4654217, 4702433, 4867171, 5047883, 5066993, 5629121, 5644213, 5760343, 5779649, 6262397
Offset: 1

Views

Author

Eric M. Schmidt, Apr 03 2016

Keywords

Comments

Septic hyperartiads (A270801) congruent to 1 mod 98.

Crossrefs

Programs

  • Sage
    def isa(n) :
        if not (n % 98 == 1 and is_prime(n)) : return False
        R. = PolynomialRing(GF(n))
        return 7.powermod((n-1)//7, n) == 1 and all(r[0]^((n-1)//7) == 1 for r in (t^3 + t^2 - 2*t - 1).roots())