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.
%I A261309 #5 Aug 22 2015 05:07:26 %S A261309 1,0,26,25,24,23,22,21,20,19,18,17,16,15,14,13,12,11,10,9,8,7,6,5,4,3, %T A261309 2,1,0,269,268,267,266,265,264,263,262,261,260,259,258,257,256,255, %U A261309 254,253,252,251,250,249,248,247,246,245,244,243,242,241,240,239,238,237,236,235,234,233,232,231 %N A261309 a(n+1) = abs(a(n) - gcd(a(n), 9n+8)), u(1) = 1. %C A261309 It is conjectured that for all n > 2, u(n) = 0 implies that u(n+1) = 9n+8 is prime, cf. A186261. (This is the sequence {u(n)} mentioned there.) %e A261309 a(2) = a(1) - gcd(a(1),9+8) = 1 - 1 = 0. %e A261309 a(3) = |a(2) - gcd(a(2),9*2+8)| = gcd(0,26) = 26. %e A261309 a(3+26) = a(29) = 0 and a(29+1) = gcd(0,9*29+8) = 269 is prime. %o A261309 (PARI) print1(a=1);for(n=1,99,print1(",",a=abs(a-gcd(a,9*n+8)))) %Y A261309 Cf. A261301 - A261310, A186253 - A186263, A106108. %K A261309 nonn %O A261309 1,3 %A A261309 _M. F. Hasler_, Aug 14 2015