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.

A375082 a(n) = binomial(A349958(n),A374959(n))/n.

Original entry on oeis.org

1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 2, 1, 1, 1, 2, 1, 1, 1, 15, 1, 5, 1, 3, 1, 1, 1, 4, 1, 1, 5, 4, 1, 1, 1, 102, 2, 3, 1, 2, 1, 5, 1, 10659, 1, 91, 1, 6, 3, 33, 1, 325, 1, 1, 3, 7, 1, 2, 1, 8, 2, 1, 11, 5, 1, 2, 1463, 1, 1, 11, 1, 9, 4, 51, 6, 1, 1, 7, 1
Offset: 1

Views

Author

Pontus von Brömssen, Jul 29 2024

Keywords

Crossrefs

Programs

  • Python
    from math import comb
    def A375082(n): return next(a for a, b in (divmod(comb(j,k),n) for j in range(n+1) for k in range(j+1)) if not b) # Chai Wah Wu, Jul 30 2024