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.

A057913 Numbers k such that 3*2^k + 5 is prime.

This page as a plain text file.
%I A057913 #28 Sep 08 2024 05:26:56
%S A057913 1,2,3,4,5,6,7,8,14,16,19,22,24,27,29,32,38,54,57,60,76,94,132,139,
%T A057913 175,187,208,230,379,384,632,1040,1188,1359,1553,1734,1768,1925,2492,
%U A057913 3272,3537,3949,4647,5869,6473,7036,8550,9459,9784,15440,15507,15637,16400,42045
%N A057913 Numbers k such that 3*2^k + 5 is prime.
%C A057913 a(79) > 10^6 per Grantham and Granville link, Section 6. - _Michael S. Branicky_, Sep 07 2024
%H A057913 Jon Grantham, <a href="/A057913/b057913.txt">Table of n, a(n) for n = 1..78</a>
%H A057913 Jon Grantham and Andrew Granville, <a href="https://arxiv.org/abs/2307.07894">Fibonacci primes, primes of the form 2^n-k and beyond</a>, arXiv:2307.07894 [math.NT], 2023.
%t A057913 Do[ If[ PrimeQ[ 3*2^n + 5 ], Print[ n ] ], {n, 1, 3000} ]
%o A057913 (PARI) {for(n=0, 10^6, if(isprime(k=5+3*2^n), print1(n, ", ")))} /* _Joerg Arndt_, Apr 13 2012 */
%Y A057913 Cf. A057912 (3*2^k - 5 is prime).
%K A057913 nonn
%O A057913 1,2
%A A057913 _Robert G. Wilson v_, Nov 16 2000
%E A057913 a(54) from _Jinyuan Wang_, Feb 02 2020