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.

Original entry on oeis.org

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
Offset: 1

Views

Author

Jon Perry, Apr 18 2014

Keywords

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.

References

  • Ronnie O'Sullivan, "Unbreakable", Seven Dials, 2022.

Crossrefs

Cf. A356948 (successive scores).

Programs

  • 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+", ");
    }

Extensions

O'Sullivan reference and links added by N. J. A. Sloane, Feb 12 2024