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.

A219039 Numbers k such that 3^k - 16 is prime.

This page as a plain text file.
%I A219039 #25 Nov 10 2023 20:16:59
%S A219039 3,5,11,15,51,69,99,227,381,537,9135,9737,58437,105567,121779,123645
%N A219039 Numbers k such that 3^k - 16 is prime.
%C A219039 a(17) > 2*10^5. - _Robert Price_, Sep 29 2013
%e A219039 For k = 3, 3^3 - 16 = 11 and 11 is prime. Hence k = 3 is included in the sequence.
%t A219039 Do[If[PrimeQ[3^n - 16], Print[n]], {n, 1, 10000}]
%o A219039 (PARI) is(n)=isprime(3^n-16) \\ _Charles R Greathouse IV_, Feb 17 2017
%Y A219039 Cf. Sequences of numbers k such that 3^k + m is prime:
%Y A219039   (m = 2) A051783, (m = -2) A014224, (m = 4) A058958, (m = -4) A058959,
%Y A219039   (m = 8) A217136, (m = -8) A217135, (m = 10) A217137, (m = -10) A217347,
%Y A219039   (m = 14) A219035, (m = -14) A219038, (m = 16) A205647, (m = -16) this sequence, (m = 20) A219040, (m = -20) A219041.
%Y A219039   Note that if m is a multiple of 3, 3^k + m is also a multiple of 3 (for k greater than 0), and as such isn't prime.
%K A219039 nonn,more
%O A219039 1,1
%A A219039 _Nicolas M. Perrault_, Nov 10 2012
%E A219039 a(13)-a(16) from _Robert Price_, Sep 29 2013