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.

A099722 From a 2-dimensional walk involving primes.

This page as a plain text file.
%I A099722 #16 Jun 03 2020 10:22:07
%S A099722 11,17,23,41,47,67,83,103,157,257,277,3407,3517,3547
%N A099722 From a 2-dimensional walk involving primes.
%C A099722 Start with 7 in the center cell. Rules: Write prime(n-1) in a cell and,
%C A099722 if Prime(n-1) == 1 mod 5, then move to upper cell, append prime(n) to the cell.
%C A099722 if Prime(n-1) == 2 mod 5, then move to right cell, append prime(n) to the cell.
%C A099722 if Prime(n-1) == 3 mod 5, then move to lower cell, append prime(n) to the cell.
%C A099722 if Prime(n-1) == 4 mod 5, then move to left cell, append prime(n) to the cell.
%C A099722 Sequence gives sequence of primes appearing in the cell to the right of center cell.
%C A099722 There are no more terms below 10^10. But two-dimensional random walks are recurrent, so this sequence is heuristically infinite. - _Charles R Greathouse IV_, Oct 18 2011
%C A099722 No more terms up to 10^12. - _Charles R Greathouse IV_, May 04 2020
%C A099722 No more terms up to 10^13. The associated position after 9999999999971 is (-3312, -57946). - _Charles R Greathouse IV_, May 29 2020
%e A099722 .................. 13 ...... 13 ......... 13 .............. 13 .................
%e A099722 7 -> 7 : 11 -> 7 : 11 -> 7 : 11,17 -> 7 : 11,17 : 19 -> 7 : 11,17,23 : 19 -> ...
%o A099722 (PARI) upto(lim)=my(x=-1,y=0,p=7);forprime(q=11,lim,if(p%5>2,if(p%5==3,y--,x--),if(p%5==1,y++,x++));if(!x&&!y,print1(q", "));p=q) \\ _Charles R Greathouse IV_, Oct 18 2011
%Y A099722 Cf. A096447.
%K A099722 nonn,more
%O A099722 1,1
%A A099722 _Yasutoshi Kohmoto_, Nov 06 2004
%E A099722 a(8)-a(14) from _Sean A. Irvine_, Oct 18 2011