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.

A055782 Primes q of the form q = 10p + 3, where p is also prime.

This page as a plain text file.
%I A055782 #23 Jul 14 2017 22:22:38
%S A055782 23,53,73,113,173,193,233,293,313,373,433,593,613,673,733,1013,1033,
%T A055782 1093,1373,1493,1733,1913,1933,1973,1993,2113,2273,2293,2333,2393,
%U A055782 2633,2693,2713,2833,3313,3373,3533,3593,3673,3733,3793,3833,4013,4093,4493
%N A055782 Primes q of the form q = 10p + 3, where p is also prime.
%C A055782 These primes correspond to resulting primes for A232210, when A232210(n)=1. - _Vladimir Shevelev_, Oct 16 2014
%H A055782 Michael De Vlieger, <a href="/A055782/b055782.txt">Table of n, a(n) for n = 1..10000</a>
%F A055782 a(n) = 10*A023238(n) + 3. - _R. J. Mathar_, Sep 21 2009
%e A055782 5413 = 541*10 + 3, 3 appended to 541.
%t A055782 Select[Prime@ Range@ 630, PrimeQ[(# - 3)/10] &] (* _Michael De Vlieger_, Jul 14 2017 *)
%o A055782 (PARI) lista(nn) = {forprime(p=2, nn, if (isprime(q=10*p+3), print1(q, ", ")););} \\ _Michel Marcus_, Oct 20 2014
%Y A055782 Cf. A005384, A005385, A023238. Apart from first term, same as A057667.
%K A055782 nonn,easy
%O A055782 1,1
%A A055782 _Labos Elemer_, Jul 13 2000