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.

A338525 Numbers k such that (11^k + 6^k)/17 is prime.

Original entry on oeis.org

5, 7, 107, 383, 17359, 21929, 26393
Offset: 1

Views

Author

Tim Johannes Ohrtmann, Nov 01 2020

Keywords

Comments

All terms are prime.
The corresponding primes are 9931, 1162771, ...

Crossrefs

Programs

  • Magma
    [n: n in [1..10000] |IsPrime((11^n + 6^n)/17)]
  • Mathematica
    Select[Range[1, 10000], PrimeQ[(11^# + 6^#)/17] &]
  • PARI
    for(n=1, 10000, if(isprime((11^n + 6^n)/17), print1(n, ", ")))