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 13 results. Next

A216375 Numbers k such that 11^k + k^11 + 1 is prime.

Original entry on oeis.org

0, 1, 5, 941, 23071
Offset: 1

Views

Author

Vincenzo Librandi, Sep 06 2012

Keywords

Comments

a(6) > 10^5. - Robert Price, Jan 16 2013

Crossrefs

Programs

  • Mathematica
    Select[Range[0, 5000], PrimeQ[11^# + #^11 + 1] &]
  • PARI
    is(n)=isprime(11^n+n^11+1) \\ Charles R Greathouse IV, Feb 17 2017

Extensions

a(5) from Robert Price, Jan 16 2014

A215439 Numbers k such that 2^k + k^2 - 1 is prime.

Original entry on oeis.org

1, 2, 4, 10, 70, 134, 146, 190, 218, 292, 478, 7136, 15964, 19988, 100790, 111442, 181874, 202112
Offset: 1

Views

Author

Vincenzo Librandi, Sep 03 2012

Keywords

Comments

a(17) > 150000. - Giovanni Resta, Mar 19 2014
a(19) > 3*10^5. - Robert Price, Apr 30 2014

Crossrefs

Cf. A215434.

Programs

  • Magma
    [n: n in [0..1000] | IsPrime(2^n+n^2-1)]
    
  • Mathematica
    Select[Range[0, 9000], PrimeQ[2^# + #^2 - 1] &]
  • PARI
    is(n)=ispseudoprime(2^n+n^2-1) \\ Charles R Greathouse IV, May 22 2017

Extensions

a(13)-a(16) from Giovanni Resta, Mar 19 2014
a(17)-a(18) from Robert Price, Apr 30 2014

A215445 Numbers k such that 7^k + k^7 - 1 is prime.

Original entry on oeis.org

1, 11, 65, 133, 679, 1571, 27517, 51631
Offset: 1

Views

Author

Vincenzo Librandi, Sep 06 2012

Keywords

Comments

a(9) > 10^5. - Robert Price, Feb 23 2014

Crossrefs

Programs

  • Mathematica
    Select[Range[0, 5000], PrimeQ[7^# + #^7 - 1] &]
  • PARI
    is(n)=ispseudoprime(7^n+n^7-1) \\ Charles R Greathouse IV, Jun 06 2017

Extensions

a(7)-a(8) from Robert Price, Feb 23 2014

A216423 Numbers k such that 4^k + k^4 + 1 is prime.

Original entry on oeis.org

0, 6, 12, 3804, 8346, 15528, 147036
Offset: 1

Views

Author

Vincenzo Librandi, Sep 07 2012

Keywords

Comments

a(8) > 2*10^5. - Robert Price, Apr 29 2014
a(1)-a(3) are trivially prime. a(4)-a(7) are probable primes. - Robert Price, May 07 2014

Crossrefs

Programs

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

Extensions

a(5)-a(7) from Robert Price, Apr 29 2014

A216420 Numbers k such that 13^k + k^13 - 1 is prime.

Original entry on oeis.org

1, 5, 85, 155, 383, 6223
Offset: 1

Views

Author

Vincenzo Librandi, Sep 07 2012

Keywords

Comments

a(7) > 2*10^5 if it exists. - Robert Price, Jul 07 2014

Crossrefs

Programs

  • Magma
    [n: n in [0..1000] | IsPrime(13^n+n^13-1)];
    
  • Mathematica
    Select[Range[0, 5000], PrimeQ[13^# + #^13 - 1] &]
  • PARI
    is(n)=ispseudoprime(13^n+n^13-1) \\ Charles R Greathouse IV, Jun 13 2017

Extensions

a(6) from Robert Price, May 24 2014

A216421 Numbers k such that 13^k + k^13 + 1 is prime.

Original entry on oeis.org

0, 9, 4371, 7985, 14711
Offset: 1

Views

Author

Vincenzo Librandi, Sep 07 2012

Keywords

Comments

a(6) > 10^5. - Robert Price, Feb 23 2014

Crossrefs

Programs

  • Mathematica
    Select[Range[0, 5000], PrimeQ[13^# + #^13 + 1] &]
  • PARI
    is(n)=ispseudoprime(13^n+n^13+1) \\ Charles R Greathouse IV, Jun 13 2017

Extensions

a(4)-a(5) from Robert Price, Feb 23 2014

A216422 Numbers k such that 19^k + k^19 - 1 is prime.

Original entry on oeis.org

1, 17, 145, 427, 4327, 14195
Offset: 1

Views

Author

Vincenzo Librandi, Sep 07 2012

Keywords

Comments

a(7) > 10^5. - Robert Price, Mar 25 2014

Crossrefs

Programs

  • Mathematica
    Select[Range[0, 5000], PrimeQ[19^# + #^19 - 1] &]
  • PARI
    is(n)=ispseudoprime(19^n+n^19-1) \\ Charles R Greathouse IV, Jun 13 2017

Extensions

a(6) from Robert Price, Mar 25 2014

A216424 Numbers k such that 4^k + k^4 - 1 is prime.

Original entry on oeis.org

2, 16, 74, 164, 518, 796, 8756, 12598
Offset: 1

Views

Author

Vincenzo Librandi, Sep 07 2012

Keywords

Comments

a(9) > 10^5. - Robert Price, Feb 04 2014

Crossrefs

Programs

  • Magma
    [n: n in [0..800] | IsPrime(4^n+n^4-1)];
    
  • Mathematica
    Select[Range[0, 5000], PrimeQ[4^# + #^4 - 1] &]
  • PARI
    is(n)=ispseudoprime(4^n+n^4-1) \\ Charles R Greathouse IV, Jun 13 2017

Extensions

a(7)-a(8) from Robert Price, Feb 04 2014

A216425 Numbers k such that 6^k + k^6 - 1 is prime.

Original entry on oeis.org

12, 24, 72, 13404, 179964
Offset: 1

Views

Author

Vincenzo Librandi, Sep 07 2012

Keywords

Comments

a(6) > 2*10^5. - Robert Price, Apr 14 2014
a(1)-a(5) are multiples of 12. - Robert Price, Apr 14 2014

Crossrefs

Programs

  • Magma
    [n: n in [0..1000] | IsPrime(6^n+n^6-1)];
    
  • Mathematica
    Select[Range[0, 10000], PrimeQ[6^# + #^6 - 1] &]
  • PARI
    is(n)=ispseudoprime(6^n+n^6-1) \\ Charles R Greathouse IV, Jun 13 2017

Extensions

a(4)-a(5) from Robert Price, Apr 14 2014

A216591 Numbers k such that 8^k + k^8 - 1 is prime.

Original entry on oeis.org

10, 38, 428, 824, 3902, 4712, 5596, 29572
Offset: 1

Views

Author

Vincenzo Librandi, Sep 09 2012

Keywords

Comments

a(9) > 10^5. Robert Price, Feb 25 2014

Crossrefs

Programs

  • Mathematica
    Select[Range[0, 4000],PrimeQ[8^# + #^8 - 1] &]
  • PARI
    is(n)=ispseudoprime(8^n+n^8-1) \\ Charles R Greathouse IV, Jun 13 2017

Extensions

a(6)-a(8) from Robert Price, Feb 25 2014
Showing 1-10 of 13 results. Next