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-2 of 2 results.

A105234 Central column of a Moebius-binomial triangle.

Original entry on oeis.org

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

Views

Author

Paul Barry, Apr 14 2005

Keywords

Comments

Central column of A105586. Partial sums are A105235.

Crossrefs

Programs

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

Formula

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

A105598 Partial sums of central numbers for a Moebius-binomial triangle.

Original entry on oeis.org

1, 2, 3, 4, 4, 5, 6, 7, 8, 9, 10, 11, 11, 12, 13, 14, 15, 16, 17, 18, 18, 19, 20, 21, 22, 23, 24, 24, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 39, 39, 40, 41, 42, 43, 44, 45, 45, 46, 47, 48, 49, 50, 51, 52, 52, 53, 54, 54, 55, 56, 57, 58, 58, 59, 60, 61, 62
Offset: 0

Views

Author

Paul Barry, Apr 15 2005

Keywords

Comments

Partial sums of A105597.

Programs

  • Mathematica
    Accumulate[Table[Binomial[Abs[MoebiusMu[x]],Abs[MoebiusMu[Floor[x/2]]]],{x,0,80}]] (* Harvey P. Dale, Mar 13 2014 *)

Formula

a(n)=sum{k=0..n, binomial(abs(mu(k)), abs(mu(floor(k/2))))}
Showing 1-2 of 2 results.