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.

A273598 Numbers k such that (11^k - 6^k)/5 is prime.

Original entry on oeis.org

2, 3, 11, 163, 191, 269, 1381, 1493, 38453
Offset: 1

Views

Author

Tim Johannes Ohrtmann, May 26 2016

Keywords

Comments

All terms are prime.
The corresponding primes: 17, 223, 56989774711, ...

Crossrefs

Programs

  • Mathematica
    Select[Range[1, 10000], PrimeQ[(11^# - 6^#)/5] &]
  • PARI
    for(n=1, 10000, if(isprime((11^n - 6^n)/5), print1(n, ", ")))

Extensions

a(9) from Michael S. Branicky, Nov 10 2024