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.

A139455 Numbers n such that primorial(n)/2 + 1024 is prime.

This page as a plain text file.
%I A139455 #9 Jul 02 2017 21:56:11
%S A139455 3,4,5,7,11,14,15,22,30,32,37,53,83,123,156,212,215,314,331,417,555,
%T A139455 930,3809,3945,15738
%N A139455 Numbers n such that primorial(n)/2 + 1024 is prime.
%C A139455 a(26) > 25000. - _Robert Price_, Jul 02 2017
%t A139455 k = 1/2; a = {}; Do[k = k*Prime[n]; If[PrimeQ[k + 1024], Print[n]; AppendTo[a, n]], {n, 325}]; a
%o A139455 (PARI) isok(n) = isprime(1024+prod(k=2, n, prime(k))); \\ _Michel Marcus_, Jul 02 2017
%Y A139455 Cf. A067026, A067027, A139439-A139457, A103514.
%K A139455 nonn
%O A139455 1,1
%A A139455 _Artur Jasinski_, Apr 21 2008
%E A139455 a(18)-a(22) from _Ray Chandler_, Jun 16 2013
%E A139455 a(23)-a(25) from _Robert Price_, Jul 02 2017