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.

A236365 Primes whose binary and octal representation are also prime when read in decimal.

This page as a plain text file.
%I A236365 #12 May 30 2018 13:39:23
%S A236365 3,5,89,179,199,367,383,443,523,659,947,1097,1163,1289,1483,1753,2351,
%T A236365 2423,2903,3041,3217,3299,3631,4729,4951,5119,5347,5879,6007,6131,
%U A236365 6491,6911,7547,7577,7649,8167,8849,9241,9511,9817,9929,10303,10831,11251,11527
%N A236365 Primes whose binary and octal representation are also prime when read in decimal.
%H A236365 K. D. Bajpai, <a href="/A236365/b236365.txt">Table of n, a(n) for n = 1..1008</a>
%e A236365 89 is prime and appears in the sequence:  89 in binary = 1011001 and in octal = 131, which are also prime when read in decimal.
%p A236365 KD := proc() local a,b,d; a:=ithprime(n);  b:=convert(a, binary); d:=convert(a,octal); if isprime(b) and isprime(d) then RETURN (a) ;fi;  end: seq(KD(), n=1..50);
%t A236365 t = {}; n = 1; While[Length[t] < 50, n = NextPrime[n]; If[PrimeQ[FromDigits[IntegerDigits[n, 8]]] && PrimeQ[FromDigits[IntegerDigits[n, 2]]], AppendTo[t, n]]]; t (* _T. D. Noe_, Jan 26 2014 *)
%t A236365  Select[Prime[Range[1400]],AllTrue[FromDigits/@{IntegerDigits[ #,2],IntegerDigits[ #,8]},PrimeQ]&](* The program uses the AllTrue function from Mathematica version 10 *) (* _Harvey P. Dale_, May 30 2018 *)
%Y A236365 Cf. A000040 (prime numbers), A065720 (primes: binary representation is also prime).
%K A236365 nonn,base
%O A236365 1,1
%A A236365 _K. D. Bajpai_, Jan 23 2014