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-3 of 3 results.

A213176 Numbers n such that (13^n + 4^n)/17 is prime.

Original entry on oeis.org

7, 11, 31, 59, 73, 137, 563, 34819, 48751, 73849
Offset: 1

Views

Author

Robert Price, May 03 2013

Keywords

Comments

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

Crossrefs

Programs

  • Mathematica
    Select[ Prime[ Range[1, 100000] ], PrimeQ[ (13^# + 4^#)/17 ]& ]
  • PARI
    is(n)=ispseudoprime((13^n+4^n)/17) \\ Charles R Greathouse IV, Jun 06 2017

A227049 Numbers k such that (15^k + 4^k)/19 is prime.

Original entry on oeis.org

3, 31, 157, 239, 1553, 5521, 25561
Offset: 1

Views

Author

Robert Price, Jun 29 2013

Keywords

Comments

All terms are primes.
a(8) > 10^5.

Crossrefs

Programs

  • Mathematica
    Select[ Prime[ Range[1, 100000] ], PrimeQ[ (15^# + 4^#)/19 ]& ]
  • PARI
    is(n)=ispseudoprime((15^n+4^n)/19) \\ Charles R Greathouse IV, Jun 06 2017

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, ", ")))
    
Showing 1-3 of 3 results.