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.

Previous Showing 11-16 of 16 results.

A272829 Numbers n such that 8^n-7^(n+1) is prime.

Original entry on oeis.org

27, 43, 61, 105, 835, 2313, 5907, 32455, 33657
Offset: 1

Views

Author

Robert Price, May 07 2016

Keywords

Comments

a(10) > 10^5. - Robert Price, May 04 2016

Crossrefs

Programs

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

A273524 Numbers n such that 7^n-6^(n-1) is prime.

Original entry on oeis.org

2, 3, 5, 6, 7, 11, 17, 18, 54, 509, 529, 2526, 3042, 3421, 4485, 13127, 17602, 23825, 27381
Offset: 1

Views

Author

Robert Price, May 23 2016

Keywords

Comments

a(20) > 10^5.

Crossrefs

Programs

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

A273937 Numbers n such that 7^n - 6^(n+1) is prime.

Original entry on oeis.org

49, 90, 206, 314, 375, 578, 949, 2883, 2959, 3133, 3409, 6174, 6185, 16461, 22313, 24462, 30249, 45317, 58169, 60309, 79202
Offset: 1

Views

Author

Robert Price, Jun 04 2016

Keywords

Comments

a(22) > 10^5. - Robert Price, May 04 2016

Crossrefs

Cf. A093765.

Programs

  • Mathematica
    Select[Range[12, 100000], PrimeQ[7^# - 6^(# + 1)] &]
  • PARI
    is(n)=ispseudoprime(7^n-6^(n+1)) \\ Charles R Greathouse IV, Jun 08 2016

A274135 Numbers n such that 6^n + 5^(n+1) is prime.

Original entry on oeis.org

1, 4, 6, 9, 12, 15, 18, 21, 34, 36, 75, 102, 231, 256, 309, 513, 748, 3789, 12378, 36378
Offset: 1

Views

Author

Robert Price, Jun 10 2016

Keywords

Comments

a(21) > 10^5.

Crossrefs

Cf. A093765.

Programs

A274215 Numbers n such that 8^n + 7^(n+1) is prime.

Original entry on oeis.org

4, 6, 46, 58, 184, 336, 29274, 98928
Offset: 1

Views

Author

Robert Price, Jun 13 2016

Keywords

Comments

a(9) > 10^5.

Crossrefs

Cf. A093765.

Programs

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

A274239 Numbers n such that 9^n + 8^(n+1) is prime.

Original entry on oeis.org

1, 2, 5, 20, 53, 161, 380, 500, 530, 698, 832, 833, 6353, 25433, 53921, 73538
Offset: 1

Views

Author

Robert Price, Jun 15 2016

Keywords

Comments

a(17) > 10^5.

Crossrefs

Cf. A093765.

Programs

  • Magma
    [n: n in [0..500] | IsPrime(9^n+8^(n+1))]; // Vincenzo Librandi, Jul 12 2016
    
  • Mathematica
    Select[Range[0,100000], PrimeQ[9^# + 8^(# + 1)] &]
  • PARI
    is(n)=ispseudoprime(9^n+8^(n+1)) \\ Charles R Greathouse IV, Jun 13 2017
Previous Showing 11-16 of 16 results.