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.

A241263 Successive break values in reaching a maximum break of 147 in snooker.

This page as a plain text file.
%I A241263 #38 Feb 12 2024 10:50:09
%S A241263 1,8,9,16,17,24,25,32,33,40,41,48,49,56,57,64,65,72,73,80,81,88,89,96,
%T A241263 97,104,105,112,113,120,122,125,129,134,140,147
%N A241263 Successive break values in reaching a maximum break of 147 in snooker.
%C A241263 In Snooker there are 15 reds (1pt each), a yellow (2pts), green (3pts), brown (4pts), blue (5pts), pink (6pts) and a black ball (7pts). After potting each red with a color (a black in this case), each color must be potted in order.
%C A241263 It is possible to score a break of 155 with a free ball.
%D A241263 Ronnie O'Sullivan, "Unbreakable", Seven Dials, 2022.
%H A241263 BBC Sport, <a href="https://www.youtube.com/watch?v=btmB-p_0QFg">World's Fastest 147</a> (Apr 21 1997) [Broken link]
%H A241263 Rommie O'Sullivan, <a href="https://www.youtube.com/watch?v=FYqSATdr62Q">Fastest 147 break in history</a>, Youtube Video. (During the 1997 World Championship; time 5 minutes and 8 seconds!)
%H A241263 Wikipedia, <a href="https://en.wikipedia.org/wiki/Rules_of_snooker">Rules of snooker</a>
%H A241263 Wikipedia, <a href="https://en.wikipedia.org/wiki/Ronnie_O%27Sullivan">Ronnie O'Sullivan</a>
%H A241263 World Snooker Association, <a href="http://www.worldsnooker.com/">Official Site</a>
%o A241263 (JavaScript)
%o A241263 s=0;
%o A241263 for (i=0;i<15;i++) {
%o A241263 s+=1;
%o A241263 document.write(s+", ");
%o A241263 s+=7;
%o A241263 document.write(s+", ");
%o A241263 }
%o A241263 for (i=2;i<8;i++) {
%o A241263 s+=i;
%o A241263 document.write(s+", ");
%o A241263 }
%Y A241263 Cf. A356948 (successive scores).
%Y A241263 Cf. A047393, A352422.
%K A241263 nonn,easy,fini,full
%O A241263 1,2
%A A241263 _Jon Perry_, Apr 18 2014
%E A241263 O'Sullivan reference and links added by _N. J. A. Sloane_, Feb 12 2024