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.

A345422 Row 5 of array in A345417.

Original entry on oeis.org

1, -1, 1, 2, 0, 6, -3, 7, -2, 8, -14, -10, 15, 4, -17, -24, -16, -11, -6, 13, 20, 36, -15, -8, -44, 46, -28, 39, 10, -41, -23, 12, 25, 38, -27, 55, -57, -74, 76, 63, -65, 33, -52, -35, 18, -18, 96, -81, 62, -104, 106, 87, 22, -114, -70, 24, 49, 74, 126, -51, 103, 80, 28, -113, 57
Offset: 1

Views

Author

N. J. A. Sloane, Jun 19 2021

Keywords

Crossrefs

Programs

  • Python
    from sympy.core.numbers import igcdex
    from sympy import prime
    def A345422(n): return igcdex(11, prime(n))[0] # Chai Wah Wu, Jul 01 2021