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

A247957 Numbers k such that 33^k + 2 is prime.

Original entry on oeis.org

0, 2, 26, 60, 218, 248, 399, 1175, 1244, 2670, 9300, 45216, 144412
Offset: 1

Views

Author

Vincenzo Librandi, Sep 28 2014

Keywords

Comments

Some terms correspond to probable primes. Lifchitz link shows that Ray Chandler discovered 9300, and Lelio R Paula found that 45216 is in the sequence. - Jens Kruse Andersen, Sep 29 2014
Terms in the similar sequence, 53^k+2, begin with 0, 7, 14483 with the next term > 2*10^5. - Robert Price, Mar 28 2015
Confirmed that 45216 is a(12). - Robert Price, Apr 14 2015
a(14) > 2*10^5. - Robert Price, Apr 14 2015

Crossrefs

Cf. numbers n such that k^n+2 is prime: A051783 (k=3), A087885 (k=5), A090649 (k=9), A109076 (k=11), A138048 (k=15), A113480 (k=17), A138049 (k=21), A138050 (k=23), A138051 (k=27), A087886 (k=29), this sequence (k=33), A247958 (k=35), A247959 (k=39), A247960 (k=41), A247961 (k=45); (0, 113) for k=47; A247962 (k=51); A247963 (k=57), A113481 (k=59).

Programs

  • Magma
    [n: n in [0..350]| IsPrime( 33^n + 2 )];
    
  • Maple
    A247957:=n->`if`(isprime(33^n+2),n,NULL): seq(A247957(n), n=0..1000); # Wesley Ivan Hurt, Sep 28 2014
  • Mathematica
    Select[Range[0,1000], PrimeQ[33^# + 2] &]
  • PARI
    is(n)=ispseudoprime(33^n+2) \\ Charles R Greathouse IV, Feb 17 2017

Extensions

a(8)-a(11) from Jens Kruse Andersen, Sep 29 2014
a(12)-a(13) from Robert Price, Apr 14 2015
Showing 1-1 of 1 results.