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.

Showing 1-1 of 1 results.

A376850 Numbers k such that 85^k - 2 is prime.

Original entry on oeis.org

1, 4, 10, 29, 44, 381, 565, 5478, 6423, 15484, 32773
Offset: 1

Views

Author

Michael S. Branicky, Oct 10 2024

Keywords

Comments

Dedicated to N. J. A. Sloane for his 85th birthday!

Crossrefs

Programs

  • Python
    from sympy import isprime
    def ok(n): return isprime(85**n - 2)
    print([k for k in range(600) if ok(k)])
Showing 1-1 of 1 results.