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.

A368942 Burning number of the n-antiprism graph.

Original entry on oeis.org

2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 10, 10, 10, 10, 10, 10, 10, 10, 10
Offset: 1

Views

Author

Eric W. Weisstein, Jan 10 2024

Keywords

Comments

The n-antiprism graph is defined for n >= 3. The sequence has been extended to n=1 using the formula. - Andrew Howroyd, Jan 10 2024

Crossrefs

Programs

  • Mathematica
    Table[Floor[(Sqrt[16 n - 1] + 5)/4], {n, 50}]
    Floor[(Sqrt[16 Range[50] - 1] + 5)/4]
  • PARI
    a(n) = {1 + (sqrtint(16*n - 1) + 1)\4} \\ Andrew Howroyd, Jan 10 2024

Formula

a(n) = A204166(2*n) = A351846(2*n-1) + 1 = floor((sqrt(16*n - 1) + 1)/4) + 1. - Andrew Howroyd, Jan 10 2024

Extensions

a(1)-a(2) and terms a(34) and beyond from Andrew Howroyd, Jan 10 2024