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.

A273010 Numbers n such that (9^n - 7^n)/2 is prime.

Original entry on oeis.org

3, 5, 7, 4703, 30113, 835391
Offset: 1

Views

Author

Tim Johannes Ohrtmann, May 13 2016

Keywords

Comments

All terms are prime.
The corresponding primes: 193, 21121, 1979713, ...

Crossrefs

Programs

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

Extensions

a(6) from Jon Grantham, Jul 29 2023