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.

A108187 Numbers n such that 11*n - 5 is prime.

This page as a plain text file.
%I A108187 #14 Aug 20 2019 02:17:03
%S A108187 2,6,8,12,14,18,26,32,42,44,48,62,68,72,74,78,84,86,96,102,114,126,
%T A108187 132,144,146,152,158,162,176,182,188,194,204,216,218,222,224,228,236,
%U A108187 242,252,254,258,284,288,294,296,306,314,324,326,336,344,348,354,356,366
%N A108187 Numbers n such that 11*n - 5 is prime.
%H A108187 Robert Israel, <a href="/A108187/b108187.txt">Table of n, a(n) for n = 1..10000</a>
%e A108187 If n=2, then 11*n - 5 = 17 (prime).
%e A108187 If n=44, then 11*n - 5 = 479 (prime).
%p A108187 a:=proc(n) if isprime(11*n-5)=true then n else fi end:seq(a(n),n=0..500); # _Emeric Deutsch_, Jun 22 2005
%t A108187 Select[Range@ 366, PrimeQ[11 # - 5] &] (* _Michael De Vlieger_, Feb 20 2017 *)
%o A108187 (PARI) is(n)=isprime(11*n-5) \\ _Charles R Greathouse IV_, May 22 2017
%K A108187 nonn
%O A108187 1,1
%A A108187 _Parthasarathy Nambi_, Jun 14 2005
%E A108187 More terms from _Emeric Deutsch_, Jun 22 2005