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.

A153350 Numbers n such that 7n+11 is not prime.

This page as a plain text file.
%I A153350 #13 Sep 08 2022 08:45:39
%S A153350 1,2,3,4,5,7,9,10,11,12,13,15,16,17,19,21,22,23,25,27,28,29,30,31,32,
%T A153350 33,34,35,37,39,40,41,42,43,44,45,46,47,49,50,51,52,53,55,56,57,58,59,
%U A153350 61,62,63,64,65,66,67,69,70,71,72,73,74,75,76,77,79,81,82,83,85,87,88,89
%N A153350 Numbers n such that 7n+11 is not prime.
%H A153350 Vincenzo Librandi, <a href="/A153350/b153350.txt">Table of n, a(n) for n = 1..1000</a>
%e A153350 Distribution of the even terms in the following triangular array:
%e A153350 *;
%e A153350 *,2;
%e A153350 *,*,*;
%e A153350 *,*,*,10;
%e A153350 *,*,*,*,*;
%e A153350 4,*,*,*,*,*;
%e A153350 *,*,*,*,22,*,*;
%e A153350 *,*,*,*,*,30,*,*;
%e A153350 *,12,*,*,*,*,*,*,50;
%e A153350 *,*,*,*,*,*,*,*,*,*;
%e A153350 *,*,*,28,*,*,*,*,*,*,74;
%e A153350 *,*,*,*,*,*,52,*,*,*,*,*;
%e A153350 10,*,*,*,*,*,*,64,*,*,*,*,*; etc.
%e A153350 where * marks the non-integer values of (4*h*k + 2*k + 2*h - 10)/7 with h >= k >= 1. - _Vincenzo Librandi_, Jan 17 2013
%t A153350 Select[Range[200], !PrimeQ[7 # + 11] &] (* _Vincenzo Librandi_, Jan 13 2013 *)
%o A153350 (PARI) isA153350(n)=!isprime(7*n+11)
%o A153350 (Magma) [n: n in [0..150] | not IsPrime(7*n+11)]; // _VIncenzo Librandi_, Jan 13 2013
%Y A153350 Cf. A101123.
%K A153350 nonn,easy
%O A153350 1,2
%A A153350 _Vincenzo Librandi_, Dec 24 2008
%E A153350 Corrected and edited by _Michael B. Porter_, Apr 20 2010