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.

Showing 1-1 of 1 results.

A373011 Number of congruences of the 0-twisted Temperley-Lieb monoid of degree n.

Original entry on oeis.org

2, 2, 3, 3, 7, 4, 8, 5, 9, 6, 10, 7, 11, 8, 12, 9, 13, 10, 14, 11, 15, 12, 16, 13, 17, 14, 18, 15, 19, 16, 20, 17, 21, 18, 22, 19, 23, 20, 24, 21, 25, 22, 26, 23, 27, 24, 28, 25, 29, 26, 30, 27, 31, 28, 32, 29, 33, 30, 34, 31, 35, 32, 36, 33, 37, 34, 38, 35
Offset: 0

Views

Author

Matthias Fresacher, May 23 2024

Keywords

Crossrefs

Closely related to A368923.

Programs

  • Mathematica
    LinearRecurrence[{1, 1, -1}, {2, 2, 3, 3, 7, 4}, 100] (* Paolo Xausa, Aug 07 2024 *)
  • PARI
    a(n)=if(n%2, (n+3)/2, n>2, n/2+5, n/2+2) \\ Charles R Greathouse IV, Aug 07 2024

Formula

a(n) = (n + 3)/2 if n is odd.
a(n) = (n + 10)/2 if n is even and n >= 4.
a(n) = a(n-2) + 1 for n >= 5.
Showing 1-1 of 1 results.