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

A217354 Numbers n such that 8^n + 3 is prime.

Original entry on oeis.org

1, 2, 4, 5, 6, 10, 28, 76, 130, 370, 568, 713, 789, 790, 1334, 1354, 1849, 2913, 5729, 5740, 5978, 6908, 10618, 11918, 12748, 13449, 40850, 68654, 78442, 121040, 159948, 228526
Offset: 1

Views

Author

Vincenzo Librandi, Oct 02 2012

Keywords

Comments

3*A217354 is a subsequence of A057732. - Bruno Berselli, Oct 02 2012

Crossrefs

Programs

  • Mathematica
    Select[Range[5000], PrimeQ[8^# + 3] &]
  • PARI
    is(n)=ispseudoprime(8^n+3) \\ Charles R Greathouse IV, Feb 17 2017

Extensions

a(19)-a(32) are obtained from A057732; by Bruno Berselli, Oct 02 2012

A217380 Numbers k such that 8^k - 7 is prime.

Original entry on oeis.org

13, 661, 773, 833, 4273, 40613, 302913
Offset: 1

Views

Author

Vincenzo Librandi, Oct 02 2012

Keywords

Comments

All terms are equal to 1/3 of the multiples of 3 in A059609.
Naturally these numbers are odd since (9-1)^(2n)-7 is divisible by 3. - Bruno Berselli, Oct 04 2012

Crossrefs

Programs

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

Extensions

a(7) using A059609 from Michael S. Branicky, Sep 15 2024
Showing 1-2 of 2 results.