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.

A105597 Central numbers in a Moebius-binomial triangle.

Original entry on oeis.org

1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1
Offset: 0

Views

Author

Paul Barry, Apr 14 2005

Keywords

Comments

Central numbers in A105595.
There seems to be a typo in above comment, maybe A105594 was intended? - Antti Karttunen, Aug 27 2017
Partial sums are A105598.

Programs

  • Mathematica
    a[n_]:= Binomial[Abs[MoebiusMu[n]],Abs[MoebiusMu[Floor[n/2]]]];Table[a[n],{n,0,100}] (* James C. McMahon, Jan 23 2024 *)
  • PARI
    A105597(n) = if(n<2,1,binomial(abs(moebius(n)), abs(moebius(n\2)))); \\ Antti Karttunen, Aug 27 2017

Formula

a(n) = binomial(abs(mu(n)), abs(mu(floor(n/2)))).