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-10 of 11 results. Next

A128336 Numbers k such that (6^k + 5^k)/11 is prime.

Original entry on oeis.org

3, 5, 17, 397, 409, 643, 1783, 2617, 4583, 8783
Offset: 1

Views

Author

Alexander Adamchuk, Feb 27 2007

Keywords

Comments

All terms are primes.
No other terms less than 100000. - Robert Price, May 11 2012

Crossrefs

Programs

  • Mathematica
    k=6; Do[p=Prime[n]; f=(k^p+5^p)/(k+5); If[ PrimeQ[f], Print[p] ], {n,1,100}]
  • PARI
    forprime(p=3,1e4,if(ispseudoprime((6^p+5^p)/11),print1(p", "))) \\ Charles R Greathouse IV, Jul 16 2011

Extensions

a(7)-a(9) from Alexander Adamchuk, May 04 2010
One more term (8783) added (unknown discoverer) corresponding to a probable prime with 6834 digits by Jean-Louis Charton, Oct 06 2010

A128342 Numbers k such that (13^k + 5^k)/18 is prime.

Original entry on oeis.org

13, 19, 31, 359, 487, 757, 761, 1667, 2551, 3167, 6829
Offset: 1

Views

Author

Alexander Adamchuk, Feb 27 2007

Keywords

Comments

All terms are primes.
No other terms below 23600. - Max Alekseyev, Feb 01 2010
a(12) > 10^5. - Robert Price, Apr 30 2013

Crossrefs

Programs

  • Mathematica
    k=13; Do[p=Prime[n]; f=(k^p+5^p)/(k+5); If[ PrimeQ[f], Print[p] ], {n,1,100}]
  • PARI
    is(n)=isprime((13^n+5^n)/18) \\ Charles R Greathouse IV, Feb 17 2017

Extensions

Four more terms from Max Alekseyev, Feb 01 2010

A128341 Numbers k such that (12^k + 5^k)/17 is prime.

Original entry on oeis.org

3, 5, 13, 347, 977, 1091, 4861, 4967, 34679
Offset: 1

Views

Author

Alexander Adamchuk, Feb 27 2007

Keywords

Comments

All terms are primes.
a(10) > 10^5. - Robert Price, May 05 2013

Crossrefs

Programs

  • Mathematica
    k=12; Do[p=Prime[n]; f=(k^p+5^p)/(k+5); If[ PrimeQ[f], Print[p] ], {n,1,100}]
    Select[Range[1100],PrimeQ[(12^#+5^#)/17]&] (* Harvey P. Dale, Jul 24 2012 *)
  • PARI
    is(n)=isprime((12^n+5^n)/17) \\ Charles R Greathouse IV, Feb 17 2017

Extensions

Two more terms (a(7) and a(8)) from Harvey P. Dale, Jul 24 2012
a(9) from Robert Price, May 05 2013

A128339 Numbers k such that (9^k + 5^k)/14 is prime.

Original entry on oeis.org

3, 5, 13, 17, 43, 127, 229, 277, 6043, 11131, 11821
Offset: 1

Views

Author

Alexander Adamchuk, Feb 27 2007

Keywords

Comments

All terms are primes.
a(12) > 10^5. - Robert Price, Dec 26 2012

Crossrefs

Programs

  • Magma
    [n: n in [3..300] |IsPrime((9^n + 5^n) div 14)]; // Vincenzo Librandi, Nov 02 2018
  • Mathematica
    k=9; Do[p=Prime[n]; f=(k^p+5^p)/(k+5); If[ PrimeQ[f], Print[p] ], {n,1,100}]
  • PARI
    is(n)=isprime((9^n+5^n)/14) \\ Charles R Greathouse IV, Feb 17 2017
    

Extensions

3 more PRP terms from Sean A. Irvine, Oct 01 2009

A128340 Numbers k such that (11^k + 5^k)/16 is prime.

Original entry on oeis.org

7, 11, 181, 421, 2297, 2797, 4129, 4139, 7151, 29033
Offset: 1

Views

Author

Alexander Adamchuk, Feb 27 2007

Keywords

Comments

All terms are primes.
a(11) > 10^5. - Robert Price, Feb 09 2013

Crossrefs

Programs

  • Mathematica
    k=11; Do[p=Prime[n]; f=(k^p+5^p)/(k+5); If[ PrimeQ[f], Print[p] ], {n,1,100}]
  • PARI
    is(n)=isprime((11^n+5^n)/16) \\ Charles R Greathouse IV, Feb 17 2017

Extensions

a(5)-a(10) from Robert Price, Feb 09 2013

A128337 Numbers k such that (7^k + 5^k)/12 is prime.

Original entry on oeis.org

11, 31, 173, 271, 547, 1823, 2111, 5519, 7793, 22963, 41077, 49739
Offset: 1

Views

Author

Alexander Adamchuk, Feb 27 2007

Keywords

Comments

All terms are primes.
a(13) > 10^5. - Robert Price, Nov 20 2012

Crossrefs

Programs

  • Mathematica
    k=7; Do[p=Prime[n]; f=(k^p+5^p)/(k+5); If[ PrimeQ[f], Print[p] ], {n,1,100}]
  • PARI
    is(n)=isprime((7^n+5^n)/12) \\ Charles R Greathouse IV, Feb 17 2017

Extensions

a(6)-a(12) from Robert Price, Nov 20 2012

A128338 Numbers k such that (8^k + 5^k)/13 is prime.

Original entry on oeis.org

7, 19, 167, 173, 223, 281, 21647
Offset: 1

Views

Author

Alexander Adamchuk, Feb 27 2007

Keywords

Comments

All terms are primes.
a(8) > 10^5. - Robert Price, Jan 21 2013

Crossrefs

Programs

  • Mathematica
    k=8; Do[p=Prime[n]; f=(k^p+5^p)/(k+5); If[ PrimeQ[f], Print[p] ], {n,1,100}]
  • PARI
    is(n)=isprime((8^n+5^n)/13) \\ Charles R Greathouse IV, Feb 17 2017

Extensions

a(7) from Robert Price, Jan 21 2013

A227046 Numbers k such that (17^k + 5^k)/22 is prime.

Original entry on oeis.org

3, 29, 151, 2153, 5717, 9133, 9973, 79537
Offset: 1

Views

Author

Robert Price, Jun 29 2013

Keywords

Comments

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

Crossrefs

Programs

  • Mathematica
    k=17; Do[p=Prime[n]; f=(k^p+5^p)/(k+5); If[ PrimeQ[f], Print[p] ], {n, 1, 9592}]
  • PARI
    is(n)=ispseudoprime((17^n+5^n)/22) \\ Charles R Greathouse IV, Feb 17 2017

A221637 Numbers n such that (15^n + 14^n)/29 is prime.

Original entry on oeis.org

3, 127, 227, 1009, 1951, 5101, 14011
Offset: 1

Views

Author

Robert Price, May 28 2013

Keywords

Comments

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

Crossrefs

Programs

  • Mathematica
    Select[ Prime[ Range[1, 100000] ], PrimeQ[ (15^# + 14^#)/29 ]& ]
  • PARI
    is(n)=ispseudoprime((15^n+14^n)/29) \\ Charles R Greathouse IV, Feb 20 2017

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".
Showing 1-10 of 11 results. Next