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.

Showing 1-2 of 2 results.

A092661 Number of consecutive prime runs of 9 primes congruent to 3 mod 4 below 10^n.

Original entry on oeis.org

0, 0, 0, 0, 1, 8, 77, 897, 8949, 90276, 894951
Offset: 1

Views

Author

Enoch Haga, Mar 02 2004

Keywords

Examples

			a(7)=77 because 77 sets of 9 primes occur below 10^7, each run interrupted by a prime congruent to 1 mod 4.
		

Crossrefs

Cf. A162866. [From Rick L. Shepherd, Jul 15 2009]

Formula

Generate the prime sequence with primes labeled 1 mod 4 or 3 mod 4. Add count of primes to sequence if just 9 primes occur before interruption by a prime congruent to 1 mod 4

Extensions

a(9) from Rick L. Shepherd, Jul 15 2009
a(10) from Sean A. Irvine, Oct 25 2011
a(11) from Chai Wah Wu, Mar 18 2018

A162865 Initial prime of exactly nine consecutive primes congruent to 1 modulo 4.

Original entry on oeis.org

11593, 206953, 315257, 541097, 906541, 992393, 1124993, 1410361, 1595081, 1781569, 1872049, 2043329, 2090353, 2312749, 2381657, 2481509, 2497289, 2718389, 2758109, 2772409, 2976397, 3863473, 3868849, 4027957, 4042673, 4375141, 4464841, 4547581, 4606153
Offset: 1

Views

Author

Rick L. Shepherd, Jul 15 2009

Keywords

Comments

The table provides all 8919 [=A092660(9)] terms less than 10^9.
If 10 or more consecutive primes are all congruent to 1 modulo 4, none of them is a member of this sequence. - Harvey P. Dale, Oct 23 2011

Crossrefs

Programs

  • Mathematica
    m9Q[l_]:=Module[{ms=Mod[l,4]},First[ms]!=1&&Last[ms]!=1&&Union[Take[ ms,{2,10}]]=={1}]; Transpose[Select[Partition[ Prime[Range[ 290000]], 11,1],m9Q]][[2]] (* Harvey P. Dale, Oct 23 2011 *)
Showing 1-2 of 2 results.