|
|
A241263
|
|
Successive break values in reaching a maximum break of 147 in snooker.
|
|
1
|
|
|
1, 8, 9, 16, 17, 24, 25, 32, 33, 40, 41, 48, 49, 56, 57, 64, 65, 72, 73, 80, 81, 88, 89, 96, 97, 104, 105, 112, 113, 120, 122, 125, 129, 134, 140, 147
(list;
graph;
refs;
listen;
history;
text;
internal format)
|
|
|
OFFSET
|
1,2
|
|
COMMENTS
|
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.
It is possible to score a break of 155 with a free ball.
|
|
LINKS
|
Table of n, a(n) for n=1..36.
BBC Sport, World's Fastest 147 (Apr 21 1997)
Wikipedia, Rules of snooker
World Snooker Association, Official Site
|
|
PROG
|
(JavaScript)
s=0;
for (i=0; i<15; i++) {
s+=1;
document.write(s+", ");
s+=7;
document.write(s+", ");
}
for (i=2; i<8; i++) {
s+=i;
document.write(s+", ");
}
|
|
CROSSREFS
|
Cf. A047393, A352422.
Sequence in context: A286476 A265732 A047393 * A307417 A037371 A236300
Adjacent sequences: A241260 A241261 A241262 * A241264 A241265 A241266
|
|
KEYWORD
|
nonn,fini,full
|
|
AUTHOR
|
Jon Perry, Apr 18 2014
|
|
STATUS
|
approved
|
|
|
|