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.

A096449 Primes p such that the number of primes q, 5 <= q < p, congruent to 1 mod 3, is equal to the number of such primes congruent to 2 mod 3.

This page as a plain text file.
%I A096449 #14 Apr 19 2016 01:07:34
%S A096449 5,11,17,23,41,47,83,167,227,233,608981812919,608981812961,
%T A096449 608981813017,608981813569,608981813677,608981813833,608981813851,
%U A096449 608981813927,608981813939,608981813963,608981814043,608981814149,608981814251,608981814827
%N A096449 Primes p such that the number of primes q, 5 <= q < p, congruent to 1 mod 3, is equal to the number of such primes congruent to 2 mod 3.
%C A096449 First term prime(3) = 5 is placed on 0th row.
%C A096449 If prime(n-1) = +1 mod 3 is on k-th row then we put prime(n) on (k-1)-st row.
%C A096449 If prime(n-1) = -1 mod 3 is on k-th row then we put prime(n) on (k+1)-st row.
%C A096449 This process makes an array of prime numbers:
%C A096449 5, 11, 17, 23, 41, 47, 83, ... (this sequence)
%C A096449 7, 13, 19, 29, 37, 43, 53, 71, 79, 89, 101, .. (A096452).
%C A096449 31, 59, 67, 73, 97, ... (A096453)
%C A096449 61, ...
%F A096449 For n>1, a(n) = prime(A096629(n-1)+1) = A000040(A096629(n-1)+1). - _Max Alekseyev_, Sep 19 2009
%F A096449 a(n) = A151800(A098044(n)) = A007918(A098044(n)+1).
%t A096449 lst = {5}; p = 0; q = 0; r = 5; While[r < 10^9, If[ Mod[r, 3] == 2, p++, q++ ]; r = NextPrime@r; If[p == q, AppendTo[lst, r]; Print@r]]; lst (* _Robert G. Wilson v_, Sep 20 2009 *)
%Y A096449 Cf. A096448-A096455.
%K A096449 nonn
%O A096449 1,1
%A A096449 _Yasutoshi Kohmoto_, Aug 12 2004
%E A096449 More terms and better definition from _Joshua Zucker_, May 21 2006
%E A096449 Terms a(11) onward from _Max Alekseyev_, Feb 10 2011