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.

A076197 Numbers k such that k!! + 2^10 is prime.

This page as a plain text file.
%I A076197 #35 Nov 26 2024 19:34:01
%S A076197 5,7,21,33,153,167,171,391,789,1323,2645,8655,10153,39967,45369,47599
%N A076197 Numbers k such that k!! + 2^10 is prime.
%C A076197 a(17) > 50000. - _Robert Price_, Feb 24 2015
%H A076197 Henri & Renaud Lifchitz, <a href="http://www.primenumbers.net/prptop/searchform.php?form=n%212%2B2%5E10&amp;action=Search">PRP Records.</a>
%H A076197 OpenPFGW Project, <a href="http://www.primeform.net/openpfgw/">Primality Tester</a>
%t A076197 lst={};Do[If[PrimeQ[n!!+2^10], (*Print[n];*)AppendTo[lst, n]], {n, 6!}];lst (* _Vladimir Joseph Stephan Orlovsky_, Aug 26 2008 *)
%o A076197 (Python)
%o A076197 from gmpy2 import is_prime
%o A076197 A076197_list, g, h = [], 1, 1024
%o A076197 for i in range(3,10**5,2):
%o A076197     g *= i
%o A076197     if is_prime(g+h):
%o A076197         A076197_list.append(i) # _Chai Wah Wu_, May 31 2015
%Y A076197 Cf. A006882.
%Y A076197 Numbers k such that k!! + 2^s is prime: A080778 (s=0), A076185 (s=1), A076186 (s=2), A076188 (s=3), A076189 (s=4), A076190 (s=5), A076193 (s=6), A076194 (s=7), A076195 (s=8), A076196 (s=9).
%K A076197 nonn,more
%O A076197 1,1
%A A076197 _Zak Seidov_, Nov 02 2002
%E A076197 Edited and extended (n<4096) by _Hugo Pfoertner_, Jun 19 2003
%E A076197 8655 from Herman Jamke (hermanjamke(AT)fastmail.fm), Jan 03 2008
%E A076197 a(13) from _Robert Price_, Mar 10 2013
%E A076197 a(14)-a(16) from _Robert Price_, Feb 24 2015