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.

A224984 Numbers n such that (14^n + 13^n)/27 is prime.

Original entry on oeis.org

7, 13, 311, 1637, 4363, 10433, 41669, 45631
Offset: 1

Views

Author

Robert Price, Apr 22 2013

Keywords

Comments

All terms are prime.
a(9) > 10^5.

Crossrefs

Programs

  • Mathematica
    Select[ Prime[ Range[1, 100000] ], PrimeQ[ (14^# + 13^#)/27 ]& ]
  • PARI
    forprime(p=3,10^6, if(ispseudoprime((14^p + 13^p)/27), print1(p,", ") ) ); \\ Joerg Arndt, Jul 29 2013

Extensions

Removed incorrect first term of "2".